diff --git a/Scripts/canonicalize_games.py b/Scripts/canonicalize_games.py new file mode 100644 index 0000000..4baecc1 --- /dev/null +++ b/Scripts/canonicalize_games.py @@ -0,0 +1,462 @@ +#!/usr/bin/env python3 +""" +Game Canonicalization for SportsTime +==================================== +Stage 3 of the canonicalization pipeline. + +Resolves team and stadium references in games, generates canonical game IDs. + +Usage: + python canonicalize_games.py --games data/games.json --teams data/teams_canonical.json \ + --aliases data/stadium_aliases.json --output data/ +""" + +import argparse +import json +from collections import defaultdict +from dataclasses import dataclass, asdict +from pathlib import Path +from typing import Optional + + +# ============================================================================= +# DATA CLASSES +# ============================================================================= + +@dataclass +class CanonicalGame: + """A canonicalized game with stable ID and resolved references.""" + canonical_id: str + sport: str + season: str + date: str # YYYY-MM-DD + time: Optional[str] + home_team_canonical_id: str + away_team_canonical_id: str + stadium_canonical_id: str + is_playoff: bool = False + broadcast: Optional[str] = None + + +@dataclass +class ResolutionWarning: + """Warning about a resolution issue.""" + game_key: str + issue: str + details: str + + +# ============================================================================= +# TEAM ABBREVIATION ALIASES +# Maps alternative abbreviations to canonical team IDs +# ============================================================================= + +TEAM_ABBREV_ALIASES = { + # NBA + ('NBA', 'PHX'): 'team_nba_pho', # Phoenix + ('NBA', 'BKN'): 'team_nba_brk', # Brooklyn + ('NBA', 'CHA'): 'team_nba_cho', # Charlotte (older abbrev) + ('NBA', 'NOP'): 'team_nba_nop', # New Orleans + ('NBA', 'NO'): 'team_nba_nop', # New Orleans alt + ('NBA', 'NY'): 'team_nba_nyk', # New York + ('NBA', 'SA'): 'team_nba_sas', # San Antonio + ('NBA', 'GS'): 'team_nba_gsw', # Golden State + ('NBA', 'UTAH'): 'team_nba_uta', # Utah + + # MLB + ('MLB', 'AZ'): 'team_mlb_ari', # Arizona + ('MLB', 'CWS'): 'team_mlb_chw', # Chicago White Sox + ('MLB', 'KC'): 'team_mlb_kcr', # Kansas City + ('MLB', 'SD'): 'team_mlb_sdp', # San Diego + ('MLB', 'SF'): 'team_mlb_sfg', # San Francisco + ('MLB', 'TB'): 'team_mlb_tbr', # Tampa Bay + ('MLB', 'WSH'): 'team_mlb_wsn', # Washington + ('MLB', 'WAS'): 'team_mlb_wsn', # Washington alt + ('MLB', 'LA'): 'team_mlb_lad', # Los Angeles Dodgers + ('MLB', 'ATH'): 'team_mlb_oak', # Oakland Athletics + + # NHL + ('NHL', 'ARI'): 'team_nhl_ari', # Arizona/Utah + ('NHL', 'UTA'): 'team_nhl_ari', # Utah Hockey Club (uses ARI code) + ('NHL', 'VGS'): 'team_nhl_vgk', # Vegas + ('NHL', 'TB'): 'team_nhl_tbl', # Tampa Bay Lightning + ('NHL', 'NJ'): 'team_nhl_njd', # New Jersey + ('NHL', 'SJ'): 'team_nhl_sjs', # San Jose + ('NHL', 'LA'): 'team_nhl_lak', # Los Angeles Kings + ('NHL', 'MON'): 'team_nhl_mtl', # Montreal +} + + +# ============================================================================= +# ID GENERATION +# ============================================================================= + +def normalize_season(sport: str, season: str) -> str: + """ + Normalize season format for ID generation. + + NBA/NHL: "2025-26" -> "202526" + MLB: "2026" -> "2026" + """ + return season.replace('-', '') + + +def generate_canonical_game_id( + sport: str, + season: str, + date: str, # YYYY-MM-DD + away_abbrev: str, + home_abbrev: str, + sequence: int = 1 +) -> str: + """ + Generate deterministic canonical ID for game. + + Format: game_{sport}_{season}_{date}_{away}_{home}[_{sequence}] + Example: game_nba_202526_20251021_hou_okc + game_mlb_2026_20260615_bos_nyy_2 (doubleheader game 2) + """ + normalized_season = normalize_season(sport, season) + date_compact = date.replace('-', '') # YYYYMMDD + + base_id = f"game_{sport.lower()}_{normalized_season}_{date_compact}_{away_abbrev.lower()}_{home_abbrev.lower()}" + + if sequence > 1: + return f"{base_id}_{sequence}" + return base_id + + +# ============================================================================= +# RESOLUTION +# ============================================================================= + +def build_alias_lookup(stadium_aliases: list[dict]) -> dict[str, str]: + """ + Build lookup from alias name to canonical stadium ID. + + Returns: {alias_name_lower: canonical_stadium_id} + """ + lookup = {} + for alias in stadium_aliases: + alias_name = alias.get('alias_name', '').lower().strip() + canonical_id = alias.get('stadium_canonical_id', '') + if alias_name and canonical_id: + lookup[alias_name] = canonical_id + return lookup + + +def resolve_team( + abbrev: str, + sport: str, + teams_by_abbrev: dict[tuple[str, str], dict], + teams_by_id: dict[str, dict] +) -> Optional[dict]: + """ + Resolve team abbreviation to canonical team. + + 1. Try direct match by (sport, abbrev) + 2. Try alias lookup + 3. Return None if not found + """ + key = (sport, abbrev.upper()) + + # Direct match + if key in teams_by_abbrev: + return teams_by_abbrev[key] + + # Alias match + if key in TEAM_ABBREV_ALIASES: + canonical_id = TEAM_ABBREV_ALIASES[key] + if canonical_id in teams_by_id: + return teams_by_id[canonical_id] + + return None + + +def resolve_stadium_from_venue( + venue: str, + home_team: dict, + sport: str, + alias_lookup: dict[str, str], + stadiums_by_id: dict[str, dict] +) -> str: + """ + Resolve stadium canonical ID from venue name. + + Strategy: + 1. ALWAYS prefer home team's stadium (most reliable, sport-correct) + 2. Try sport-scoped alias match (only if home team has no stadium) + 3. Fall back to unknown stadium slug + + For multi-sport venues (MSG, Crypto.com Arena, etc.), home team's + stadium_canonical_id is authoritative because it's already sport-scoped. + + Args: + venue: Venue name from game data + home_team: Resolved home team dict + sport: Sport code (NBA, MLB, NHL) + alias_lookup: {alias_name_lower: canonical_stadium_id} + stadiums_by_id: {canonical_id: stadium_dict} + + Returns: + canonical_stadium_id + """ + # Strategy 1: Home team's stadium is most reliable (sport-scoped) + if home_team: + team_stadium = home_team.get('stadium_canonical_id', '') + if team_stadium: + return team_stadium + + # Strategy 2: Sport-scoped alias match (fallback for neutral sites) + venue_lower = venue.lower().strip() + sport_prefix = f"stadium_{sport.lower()}_" + + if venue_lower in alias_lookup: + matched_id = alias_lookup[venue_lower] + # Only use alias if it's for the correct sport + if matched_id.startswith(sport_prefix): + return matched_id + + # Strategy 3: Partial match with sport check + for alias, canonical_id in alias_lookup.items(): + if len(alias) > 3 and (alias in venue_lower or venue_lower in alias): + if canonical_id.startswith(sport_prefix): + return canonical_id + + # Unknown stadium + slug = venue_lower[:30].replace(' ', '_').replace('.', '') + return f"stadium_unknown_{slug}" + + +# ============================================================================= +# CANONICALIZATION +# ============================================================================= + +def canonicalize_games( + raw_games: list[dict], + canonical_teams: list[dict], + stadium_aliases: list[dict], + verbose: bool = False +) -> tuple[list[CanonicalGame], list[ResolutionWarning]]: + """ + Stage 3: Canonicalize games. + + 1. Resolve team abbreviations to canonical IDs + 2. Resolve venues to stadium canonical IDs + 3. Generate canonical game IDs (handling doubleheaders) + + Args: + raw_games: List of raw game dicts + canonical_teams: List of canonical team dicts + stadium_aliases: List of stadium alias dicts + verbose: Print detailed progress + + Returns: + (canonical_games, warnings) + """ + games = [] + warnings = [] + + # Build lookups + teams_by_abbrev = {} # (sport, abbrev) -> team dict + teams_by_id = {} # canonical_id -> team dict + + for team in canonical_teams: + abbrev = team['abbreviation'].upper() + sport = team['sport'] + teams_by_abbrev[(sport, abbrev)] = team + teams_by_id[team['canonical_id']] = team + + alias_lookup = build_alias_lookup(stadium_aliases) + stadiums_by_id = {} # Would be populated from stadiums_canonical.json if needed + + # Track games for doubleheader detection + game_counts = defaultdict(int) # (date, away_id, home_id) -> count + + resolved_count = 0 + unresolved_teams = 0 + unresolved_stadiums = 0 + + for raw in raw_games: + sport = raw.get('sport', '').upper() + season = raw.get('season', '') + date = raw.get('date', '') + home_abbrev = raw.get('home_team_abbrev', '').upper() + away_abbrev = raw.get('away_team_abbrev', '').upper() + venue = raw.get('venue', '') + + game_key = f"{date}_{away_abbrev}_{home_abbrev}" + + # Resolve teams + home_team = resolve_team(home_abbrev, sport, teams_by_abbrev, teams_by_id) + away_team = resolve_team(away_abbrev, sport, teams_by_abbrev, teams_by_id) + + if not home_team: + warnings.append(ResolutionWarning( + game_key=game_key, + issue='Unknown home team', + details=f"Could not resolve home team '{home_abbrev}' for sport {sport}" + )) + unresolved_teams += 1 + if verbose: + print(f" WARNING: {game_key} - unknown home team {home_abbrev}") + continue + + if not away_team: + warnings.append(ResolutionWarning( + game_key=game_key, + issue='Unknown away team', + details=f"Could not resolve away team '{away_abbrev}' for sport {sport}" + )) + unresolved_teams += 1 + if verbose: + print(f" WARNING: {game_key} - unknown away team {away_abbrev}") + continue + + # Resolve stadium + stadium_canonical_id = resolve_stadium_from_venue( + venue, home_team, sport, alias_lookup, stadiums_by_id + ) + + if stadium_canonical_id.startswith('stadium_unknown'): + warnings.append(ResolutionWarning( + game_key=game_key, + issue='Unknown stadium', + details=f"Could not resolve venue '{venue}', using home team stadium" + )) + unresolved_stadiums += 1 + # Fall back to home team stadium + stadium_canonical_id = home_team.get('stadium_canonical_id', stadium_canonical_id) + + # Handle doubleheaders + matchup_key = (date, away_team['canonical_id'], home_team['canonical_id']) + game_counts[matchup_key] += 1 + sequence = game_counts[matchup_key] + + # Generate canonical ID + canonical_id = generate_canonical_game_id( + sport, season, date, + away_team['abbreviation'], home_team['abbreviation'], + sequence + ) + + game = CanonicalGame( + canonical_id=canonical_id, + sport=sport, + season=season, + date=date, + time=raw.get('time'), + home_team_canonical_id=home_team['canonical_id'], + away_team_canonical_id=away_team['canonical_id'], + stadium_canonical_id=stadium_canonical_id, + is_playoff=raw.get('is_playoff', False), + broadcast=raw.get('broadcast') + ) + games.append(game) + resolved_count += 1 + + if verbose: + print(f"\n Resolved: {resolved_count} games") + print(f" Unresolved teams: {unresolved_teams}") + print(f" Unknown stadiums (used home team): {unresolved_stadiums}") + + return games, warnings + + +# ============================================================================= +# MAIN +# ============================================================================= + +def main(): + parser = argparse.ArgumentParser( + description='Canonicalize game data' + ) + parser.add_argument( + '--games', type=str, default='./data/games.json', + help='Input raw games JSON file' + ) + parser.add_argument( + '--teams', type=str, default='./data/teams_canonical.json', + help='Input canonical teams JSON file' + ) + parser.add_argument( + '--aliases', type=str, default='./data/stadium_aliases.json', + help='Input stadium aliases JSON file' + ) + parser.add_argument( + '--output', type=str, default='./data', + help='Output directory for canonical files' + ) + parser.add_argument( + '--verbose', '-v', action='store_true', + help='Verbose output' + ) + + args = parser.parse_args() + games_path = Path(args.games) + teams_path = Path(args.teams) + aliases_path = Path(args.aliases) + output_dir = Path(args.output) + output_dir.mkdir(parents=True, exist_ok=True) + + # Load input files + print(f"Loading raw games from {games_path}...") + with open(games_path) as f: + raw_games = json.load(f) + print(f" Loaded {len(raw_games)} raw games") + + print(f"Loading canonical teams from {teams_path}...") + with open(teams_path) as f: + canonical_teams = json.load(f) + print(f" Loaded {len(canonical_teams)} canonical teams") + + print(f"Loading stadium aliases from {aliases_path}...") + with open(aliases_path) as f: + stadium_aliases = json.load(f) + print(f" Loaded {len(stadium_aliases)} stadium aliases") + + # Canonicalize games + print("\nCanonicalizing games...") + canonical_games, warnings = canonicalize_games( + raw_games, canonical_teams, stadium_aliases, verbose=args.verbose + ) + print(f" Created {len(canonical_games)} canonical games") + + if warnings: + print(f"\n Warnings: {len(warnings)}") + # Group by issue type + by_issue = defaultdict(list) + for w in warnings: + by_issue[w.issue].append(w) + for issue, issue_warnings in by_issue.items(): + print(f" - {issue}: {len(issue_warnings)}") + + # Export + games_path = output_dir / 'games_canonical.json' + warnings_path = output_dir / 'game_resolution_warnings.json' + + with open(games_path, 'w') as f: + json.dump([asdict(g) for g in canonical_games], f, indent=2) + print(f"\nExported games to {games_path}") + + if warnings: + with open(warnings_path, 'w') as f: + json.dump([asdict(w) for w in warnings], f, indent=2) + print(f"Exported warnings to {warnings_path}") + + # Summary by sport + print("\nSummary by sport:") + by_sport = {} + for g in canonical_games: + by_sport[g.sport] = by_sport.get(g.sport, 0) + 1 + for sport, count in sorted(by_sport.items()): + print(f" {sport}: {count} games") + + # Check for doubleheaders + doubleheaders = sum(1 for g in canonical_games if '_2' in g.canonical_id or '_3' in g.canonical_id) + if doubleheaders: + print(f"\n Doubleheader games detected: {doubleheaders}") + + +if __name__ == '__main__': + main() diff --git a/Scripts/canonicalize_stadiums.py b/Scripts/canonicalize_stadiums.py new file mode 100644 index 0000000..b415ebd --- /dev/null +++ b/Scripts/canonicalize_stadiums.py @@ -0,0 +1,393 @@ +#!/usr/bin/env python3 +""" +Stadium Canonicalization for SportsTime +======================================== +Stage 1 of the canonicalization pipeline. + +Normalizes stadium data and generates deterministic canonical IDs. +Creates stadium name aliases for fuzzy matching during game resolution. + +Usage: + python canonicalize_stadiums.py --input data/stadiums.json --output data/ +""" + +import argparse +import json +import re +from dataclasses import dataclass, asdict, field +from pathlib import Path +from typing import Optional + + +# ============================================================================= +# DATA CLASSES +# ============================================================================= + +@dataclass +class CanonicalStadium: + """A canonicalized stadium with stable ID.""" + canonical_id: str + name: str + city: str + state: str + latitude: float + longitude: float + capacity: int + sport: str + primary_team_abbrevs: list = field(default_factory=list) + year_opened: Optional[int] = None + + +@dataclass +class StadiumAlias: + """Maps an alias name to a canonical stadium ID.""" + alias_name: str # Normalized (lowercase) + stadium_canonical_id: str + valid_from: Optional[str] = None + valid_until: Optional[str] = None + + +# ============================================================================= +# HISTORICAL STADIUM ALIASES +# Known name changes for stadiums (sponsorship changes, renames) +# ============================================================================= + +HISTORICAL_STADIUM_ALIASES = { + # MLB + 'stadium_mlb_minute_maid_park': [ + {'alias_name': 'daikin park', 'valid_from': '2025-01-01'}, + {'alias_name': 'enron field', 'valid_from': '2000-04-01', 'valid_until': '2002-02-28'}, + {'alias_name': 'astros field', 'valid_from': '2002-03-01', 'valid_until': '2002-06-04'}, + ], + 'stadium_mlb_guaranteed_rate_field': [ + {'alias_name': 'rate field', 'valid_from': '2024-01-01'}, + {'alias_name': 'us cellular field', 'valid_from': '2003-01-01', 'valid_until': '2016-08-24'}, + {'alias_name': 'comiskey park ii', 'valid_from': '1991-04-01', 'valid_until': '2002-12-31'}, + {'alias_name': 'new comiskey park', 'valid_from': '1991-04-01', 'valid_until': '2002-12-31'}, + ], + 'stadium_mlb_truist_park': [ + {'alias_name': 'suntrust park', 'valid_from': '2017-04-01', 'valid_until': '2020-01-13'}, + ], + 'stadium_mlb_progressive_field': [ + {'alias_name': 'jacobs field', 'valid_from': '1994-04-01', 'valid_until': '2008-01-10'}, + {'alias_name': 'the jake', 'valid_from': '1994-04-01', 'valid_until': '2008-01-10'}, + ], + 'stadium_mlb_american_family_field': [ + {'alias_name': 'miller park', 'valid_from': '2001-04-01', 'valid_until': '2020-12-31'}, + ], + 'stadium_mlb_rogers_centre': [ + {'alias_name': 'skydome', 'valid_from': '1989-06-01', 'valid_until': '2005-02-01'}, + ], + 'stadium_mlb_loandepot_park': [ + {'alias_name': 'marlins park', 'valid_from': '2012-04-01', 'valid_until': '2021-03-31'}, + ], + 'stadium_mlb_t_mobile_park': [ + {'alias_name': 'safeco field', 'valid_from': '1999-07-01', 'valid_until': '2018-12-31'}, + ], + 'stadium_mlb_oracle_park': [ + {'alias_name': 'att park', 'valid_from': '2006-01-01', 'valid_until': '2019-01-08'}, + {'alias_name': 'sbc park', 'valid_from': '2004-01-01', 'valid_until': '2005-12-31'}, + {'alias_name': 'pac bell park', 'valid_from': '2000-04-01', 'valid_until': '2003-12-31'}, + ], + 'stadium_mlb_globe_life_field': [ + {'alias_name': 'choctaw stadium', 'valid_from': '2020-01-01'}, # Globe Life Field opened 2020 + ], + + # NBA + 'stadium_nba_state_farm_arena': [ + {'alias_name': 'philips arena', 'valid_from': '1999-09-01', 'valid_until': '2018-06-25'}, + ], + 'stadium_nba_crypto_com_arena': [ + {'alias_name': 'staples center', 'valid_from': '1999-10-01', 'valid_until': '2021-12-24'}, + ], + 'stadium_nba_kaseya_center': [ + {'alias_name': 'ftx arena', 'valid_from': '2021-06-01', 'valid_until': '2023-03-31'}, + {'alias_name': 'american airlines arena', 'valid_from': '1999-12-01', 'valid_until': '2021-05-31'}, + ], + 'stadium_nba_gainbridge_fieldhouse': [ + {'alias_name': 'bankers life fieldhouse', 'valid_from': '2011-01-01', 'valid_until': '2021-12-31'}, + {'alias_name': 'conseco fieldhouse', 'valid_from': '1999-11-01', 'valid_until': '2010-12-31'}, + ], + 'stadium_nba_rocket_mortgage_fieldhouse': [ + {'alias_name': 'quicken loans arena', 'valid_from': '2005-08-01', 'valid_until': '2019-08-08'}, + {'alias_name': 'gund arena', 'valid_from': '1994-10-01', 'valid_until': '2005-07-31'}, + ], + 'stadium_nba_kia_center': [ + {'alias_name': 'amway center', 'valid_from': '2010-10-01', 'valid_until': '2023-07-12'}, + ], + 'stadium_nba_frost_bank_center': [ + {'alias_name': 'att center', 'valid_from': '2002-10-01', 'valid_until': '2023-10-01'}, + ], + 'stadium_nba_intuit_dome': [ + # New arena opened 2024, Clippers moved from Crypto.com Arena + ], + 'stadium_nba_delta_center': [ + {'alias_name': 'vivint arena', 'valid_from': '2020-12-01', 'valid_until': '2023-07-01'}, + {'alias_name': 'vivint smart home arena', 'valid_from': '2015-11-01', 'valid_until': '2020-11-30'}, + {'alias_name': 'energysolutions arena', 'valid_from': '2006-11-01', 'valid_until': '2015-10-31'}, + ], + + # NHL + 'stadium_nhl_amerant_bank_arena': [ + {'alias_name': 'fla live arena', 'valid_from': '2021-10-01', 'valid_until': '2024-05-31'}, + {'alias_name': 'bb&t center', 'valid_from': '2012-06-01', 'valid_until': '2021-09-30'}, + {'alias_name': 'bankatlantic center', 'valid_from': '2005-10-01', 'valid_until': '2012-05-31'}, + ], + 'stadium_nhl_climate_pledge_arena': [ + {'alias_name': 'keyarena', 'valid_from': '1995-01-01', 'valid_until': '2018-10-01'}, + {'alias_name': 'seattle center coliseum', 'valid_from': '1962-01-01', 'valid_until': '1994-12-31'}, + ], +} + + +# ============================================================================= +# SLUG GENERATION +# ============================================================================= + +def normalize_stadium_name(name: str) -> str: + """ + Normalize stadium name for slug generation. + + - Lowercase + - Remove parentheticals like "(IV)" + - Remove special characters except spaces + - Collapse multiple spaces + """ + normalized = name.lower() + # Remove parentheticals + normalized = re.sub(r'\s*\([^)]*\)', '', normalized) + # Remove special characters except spaces and alphanumeric + normalized = re.sub(r'[^a-z0-9\s]', '', normalized) + # Replace multiple spaces with single space + normalized = re.sub(r'\s+', ' ', normalized).strip() + return normalized + + +def generate_stadium_slug(name: str) -> str: + """ + Generate URL-safe slug from stadium name. + + Examples: + "State Farm Arena" -> "state_farm_arena" + "TD Garden" -> "td_garden" + "Crypto.com Arena" -> "crypto_com_arena" + """ + normalized = normalize_stadium_name(name) + # Replace spaces with underscores + slug = normalized.replace(' ', '_') + # Truncate to 50 chars + return slug[:50] + + +def generate_canonical_stadium_id(sport: str, name: str) -> str: + """ + Generate deterministic canonical ID for stadium. + + Format: stadium_{sport}_{slug} + Example: stadium_nba_state_farm_arena + """ + slug = generate_stadium_slug(name) + return f"stadium_{sport.lower()}_{slug}" + + +# ============================================================================= +# CANONICALIZATION +# ============================================================================= + +def canonicalize_stadiums( + raw_stadiums: list[dict], + verbose: bool = False +) -> tuple[list[CanonicalStadium], list[StadiumAlias]]: + """ + Stage 1: Canonicalize stadiums. + + 1. Normalize names and cities + 2. Deduplicate by (sport, normalized_name, city) + 3. Generate canonical IDs + 4. Create name aliases + + Args: + raw_stadiums: List of raw stadium dicts from scraper + verbose: Print detailed progress + + Returns: + (canonical_stadiums, aliases) + """ + canonical_stadiums = [] + aliases = [] + seen_keys = {} # (sport, normalized_name, city) -> canonical_id + + for raw in raw_stadiums: + sport = raw.get('sport', '').upper() + name = raw.get('name', '') + city = raw.get('city', '') + + if not sport or not name: + if verbose: + print(f" Skipping invalid stadium: {raw}") + continue + + # Generate canonical ID + canonical_id = generate_canonical_stadium_id(sport, name) + + # Deduplication key (same stadium in same city for same sport) + normalized_name = normalize_stadium_name(name) + dedup_key = (sport, normalized_name, city.lower()) + + if dedup_key in seen_keys: + existing_canonical_id = seen_keys[dedup_key] + # Add as alias if the display name differs + alias_name = name.lower().strip() + if alias_name != normalized_name: + aliases.append(StadiumAlias( + alias_name=alias_name, + stadium_canonical_id=existing_canonical_id + )) + if verbose: + print(f" Duplicate: {name} -> {existing_canonical_id}") + continue + + seen_keys[dedup_key] = canonical_id + + # Create canonical stadium + canonical = CanonicalStadium( + canonical_id=canonical_id, + name=name, + city=city, + state=raw.get('state', ''), + latitude=raw.get('latitude', 0.0), + longitude=raw.get('longitude', 0.0), + capacity=raw.get('capacity', 0), + sport=sport, + primary_team_abbrevs=raw.get('team_abbrevs', []), + year_opened=raw.get('year_opened') + ) + canonical_stadiums.append(canonical) + + # Add primary name as alias (normalized) + aliases.append(StadiumAlias( + alias_name=name.lower().strip(), + stadium_canonical_id=canonical_id + )) + + # Also add normalized version if different + if normalized_name != name.lower().strip(): + aliases.append(StadiumAlias( + alias_name=normalized_name, + stadium_canonical_id=canonical_id + )) + + if verbose: + print(f" {canonical_id}: {name} ({city})") + + return canonical_stadiums, aliases + + +def add_historical_aliases( + aliases: list[StadiumAlias], + canonical_ids: set[str] +) -> list[StadiumAlias]: + """ + Add historical stadium name aliases. + + Only adds aliases for stadiums that exist in canonical_ids. + """ + for canonical_id, historical in HISTORICAL_STADIUM_ALIASES.items(): + if canonical_id not in canonical_ids: + continue + + for hist in historical: + aliases.append(StadiumAlias( + alias_name=hist['alias_name'], + stadium_canonical_id=canonical_id, + valid_from=hist.get('valid_from'), + valid_until=hist.get('valid_until') + )) + + return aliases + + +def deduplicate_aliases(aliases: list[StadiumAlias]) -> list[StadiumAlias]: + """Remove duplicate aliases (same alias_name -> same canonical_id).""" + seen = set() + deduped = [] + + for alias in aliases: + key = (alias.alias_name, alias.stadium_canonical_id) + if key not in seen: + seen.add(key) + deduped.append(alias) + + return deduped + + +# ============================================================================= +# MAIN +# ============================================================================= + +def main(): + parser = argparse.ArgumentParser( + description='Canonicalize stadium data' + ) + parser.add_argument( + '--input', type=str, default='./data/stadiums.json', + help='Input raw stadiums JSON file' + ) + parser.add_argument( + '--output', type=str, default='./data', + help='Output directory for canonical files' + ) + parser.add_argument( + '--verbose', '-v', action='store_true', + help='Verbose output' + ) + + args = parser.parse_args() + input_path = Path(args.input) + output_dir = Path(args.output) + output_dir.mkdir(parents=True, exist_ok=True) + + # Load raw stadiums + print(f"Loading raw stadiums from {input_path}...") + with open(input_path) as f: + raw_stadiums = json.load(f) + print(f" Loaded {len(raw_stadiums)} raw stadiums") + + # Canonicalize + print("\nCanonicalizing stadiums...") + canonical_stadiums, aliases = canonicalize_stadiums( + raw_stadiums, verbose=args.verbose + ) + print(f" Created {len(canonical_stadiums)} canonical stadiums") + + # Add historical aliases + canonical_ids = {s.canonical_id for s in canonical_stadiums} + aliases = add_historical_aliases(aliases, canonical_ids) + + # Deduplicate aliases + aliases = deduplicate_aliases(aliases) + print(f" Created {len(aliases)} stadium aliases") + + # Export + stadiums_path = output_dir / 'stadiums_canonical.json' + aliases_path = output_dir / 'stadium_aliases.json' + + with open(stadiums_path, 'w') as f: + json.dump([asdict(s) for s in canonical_stadiums], f, indent=2) + print(f"\nExported stadiums to {stadiums_path}") + + with open(aliases_path, 'w') as f: + json.dump([asdict(a) for a in aliases], f, indent=2) + print(f"Exported aliases to {aliases_path}") + + # Summary by sport + print("\nSummary by sport:") + by_sport = {} + for s in canonical_stadiums: + by_sport[s.sport] = by_sport.get(s.sport, 0) + 1 + for sport, count in sorted(by_sport.items()): + print(f" {sport}: {count} stadiums") + + +if __name__ == '__main__': + main() diff --git a/Scripts/canonicalize_teams.py b/Scripts/canonicalize_teams.py new file mode 100644 index 0000000..6d6bf2f --- /dev/null +++ b/Scripts/canonicalize_teams.py @@ -0,0 +1,487 @@ +#!/usr/bin/env python3 +""" +Team Canonicalization for SportsTime +==================================== +Stage 2 of the canonicalization pipeline. + +Generates canonical team IDs and fuzzy matches teams to stadiums. + +Usage: + python canonicalize_teams.py --stadiums data/stadiums_canonical.json --output data/ +""" + +import argparse +import json +from dataclasses import dataclass, asdict, field +from difflib import SequenceMatcher +from pathlib import Path +from typing import Optional + +# Import team mappings from scraper +from scrape_schedules import NBA_TEAMS, MLB_TEAMS, NHL_TEAMS + + +# ============================================================================= +# DATA CLASSES +# ============================================================================= + +@dataclass +class CanonicalTeam: + """A canonicalized team with stable ID.""" + canonical_id: str + name: str + abbreviation: str + sport: str + city: str + stadium_canonical_id: str + conference_id: Optional[str] = None + division_id: Optional[str] = None + primary_color: Optional[str] = None + secondary_color: Optional[str] = None + + +@dataclass +class MatchWarning: + """Warning about a low-confidence match.""" + team_canonical_id: str + team_name: str + arena_name: str + matched_stadium: Optional[str] + issue: str + confidence: float + + +# ============================================================================= +# LEAGUE STRUCTURE +# Maps team abbreviation -> (conference_id, division_id) +# ============================================================================= + +NBA_DIVISIONS = { + # Eastern Conference - Atlantic + 'BOS': ('nba_eastern', 'nba_atlantic'), + 'BRK': ('nba_eastern', 'nba_atlantic'), + 'NYK': ('nba_eastern', 'nba_atlantic'), + 'PHI': ('nba_eastern', 'nba_atlantic'), + 'TOR': ('nba_eastern', 'nba_atlantic'), + # Eastern Conference - Central + 'CHI': ('nba_eastern', 'nba_central'), + 'CLE': ('nba_eastern', 'nba_central'), + 'DET': ('nba_eastern', 'nba_central'), + 'IND': ('nba_eastern', 'nba_central'), + 'MIL': ('nba_eastern', 'nba_central'), + # Eastern Conference - Southeast + 'ATL': ('nba_eastern', 'nba_southeast'), + 'CHO': ('nba_eastern', 'nba_southeast'), + 'MIA': ('nba_eastern', 'nba_southeast'), + 'ORL': ('nba_eastern', 'nba_southeast'), + 'WAS': ('nba_eastern', 'nba_southeast'), + # Western Conference - Northwest + 'DEN': ('nba_western', 'nba_northwest'), + 'MIN': ('nba_western', 'nba_northwest'), + 'OKC': ('nba_western', 'nba_northwest'), + 'POR': ('nba_western', 'nba_northwest'), + 'UTA': ('nba_western', 'nba_northwest'), + # Western Conference - Pacific + 'GSW': ('nba_western', 'nba_pacific'), + 'LAC': ('nba_western', 'nba_pacific'), + 'LAL': ('nba_western', 'nba_pacific'), + 'PHO': ('nba_western', 'nba_pacific'), + 'SAC': ('nba_western', 'nba_pacific'), + # Western Conference - Southwest + 'DAL': ('nba_western', 'nba_southwest'), + 'HOU': ('nba_western', 'nba_southwest'), + 'MEM': ('nba_western', 'nba_southwest'), + 'NOP': ('nba_western', 'nba_southwest'), + 'SAS': ('nba_western', 'nba_southwest'), +} + +MLB_DIVISIONS = { + # American League - East + 'NYY': ('mlb_al', 'mlb_al_east'), + 'BOS': ('mlb_al', 'mlb_al_east'), + 'TOR': ('mlb_al', 'mlb_al_east'), + 'BAL': ('mlb_al', 'mlb_al_east'), + 'TBR': ('mlb_al', 'mlb_al_east'), + # American League - Central + 'CLE': ('mlb_al', 'mlb_al_central'), + 'DET': ('mlb_al', 'mlb_al_central'), + 'MIN': ('mlb_al', 'mlb_al_central'), + 'CHW': ('mlb_al', 'mlb_al_central'), + 'KCR': ('mlb_al', 'mlb_al_central'), + # American League - West + 'HOU': ('mlb_al', 'mlb_al_west'), + 'SEA': ('mlb_al', 'mlb_al_west'), + 'TEX': ('mlb_al', 'mlb_al_west'), + 'LAA': ('mlb_al', 'mlb_al_west'), + 'OAK': ('mlb_al', 'mlb_al_west'), + # National League - East + 'ATL': ('mlb_nl', 'mlb_nl_east'), + 'PHI': ('mlb_nl', 'mlb_nl_east'), + 'NYM': ('mlb_nl', 'mlb_nl_east'), + 'MIA': ('mlb_nl', 'mlb_nl_east'), + 'WSN': ('mlb_nl', 'mlb_nl_east'), + # National League - Central + 'MIL': ('mlb_nl', 'mlb_nl_central'), + 'CHC': ('mlb_nl', 'mlb_nl_central'), + 'STL': ('mlb_nl', 'mlb_nl_central'), + 'PIT': ('mlb_nl', 'mlb_nl_central'), + 'CIN': ('mlb_nl', 'mlb_nl_central'), + # National League - West + 'LAD': ('mlb_nl', 'mlb_nl_west'), + 'ARI': ('mlb_nl', 'mlb_nl_west'), + 'SDP': ('mlb_nl', 'mlb_nl_west'), + 'SFG': ('mlb_nl', 'mlb_nl_west'), + 'COL': ('mlb_nl', 'mlb_nl_west'), +} + +NHL_DIVISIONS = { + # Eastern Conference - Atlantic + 'BOS': ('nhl_eastern', 'nhl_atlantic'), + 'BUF': ('nhl_eastern', 'nhl_atlantic'), + 'DET': ('nhl_eastern', 'nhl_atlantic'), + 'FLA': ('nhl_eastern', 'nhl_atlantic'), + 'MTL': ('nhl_eastern', 'nhl_atlantic'), + 'OTT': ('nhl_eastern', 'nhl_atlantic'), + 'TBL': ('nhl_eastern', 'nhl_atlantic'), + 'TOR': ('nhl_eastern', 'nhl_atlantic'), + # Eastern Conference - Metropolitan + 'CAR': ('nhl_eastern', 'nhl_metropolitan'), + 'CBJ': ('nhl_eastern', 'nhl_metropolitan'), + 'NJD': ('nhl_eastern', 'nhl_metropolitan'), + 'NYI': ('nhl_eastern', 'nhl_metropolitan'), + 'NYR': ('nhl_eastern', 'nhl_metropolitan'), + 'PHI': ('nhl_eastern', 'nhl_metropolitan'), + 'PIT': ('nhl_eastern', 'nhl_metropolitan'), + 'WSH': ('nhl_eastern', 'nhl_metropolitan'), + # Western Conference - Central + 'ARI': ('nhl_western', 'nhl_central'), # Utah Hockey Club + 'CHI': ('nhl_western', 'nhl_central'), + 'COL': ('nhl_western', 'nhl_central'), + 'DAL': ('nhl_western', 'nhl_central'), + 'MIN': ('nhl_western', 'nhl_central'), + 'NSH': ('nhl_western', 'nhl_central'), + 'STL': ('nhl_western', 'nhl_central'), + 'WPG': ('nhl_western', 'nhl_central'), + # Western Conference - Pacific + 'ANA': ('nhl_western', 'nhl_pacific'), + 'CGY': ('nhl_western', 'nhl_pacific'), + 'EDM': ('nhl_western', 'nhl_pacific'), + 'LAK': ('nhl_western', 'nhl_pacific'), + 'SEA': ('nhl_western', 'nhl_pacific'), + 'SJS': ('nhl_western', 'nhl_pacific'), + 'VAN': ('nhl_western', 'nhl_pacific'), + 'VGK': ('nhl_western', 'nhl_pacific'), +} + + +# ============================================================================= +# FUZZY MATCHING +# ============================================================================= + +def normalize_for_matching(text: str) -> str: + """Normalize text for fuzzy matching.""" + import re + text = text.lower().strip() + # Remove common suffixes/prefixes + text = re.sub(r'\s*(arena|center|stadium|field|park|centre)\s*', ' ', text) + # Remove special characters + text = re.sub(r'[^a-z0-9\s]', '', text) + # Collapse spaces + text = re.sub(r'\s+', ' ', text).strip() + return text + + +def fuzzy_match_stadium( + team_arena_name: str, + team_city: str, + sport: str, + stadiums: list[dict], + confidence_threshold: float = 0.6 +) -> tuple[Optional[str], float]: + """ + Fuzzy match team's arena to a canonical stadium. + + Matching strategy: + - 70% weight: Name similarity (SequenceMatcher) + - 30% weight: City match (exact=1.0, partial=0.5) + + Args: + team_arena_name: The arena name from team mapping + team_city: The team's city + sport: Sport code (NBA, MLB, NHL) + stadiums: List of canonical stadium dicts + confidence_threshold: Minimum confidence for a match + + Returns: + (canonical_stadium_id, confidence_score) + """ + best_match = None + best_score = 0.0 + + # Normalize arena name + arena_normalized = normalize_for_matching(team_arena_name) + city_lower = team_city.lower() + + # Filter to same sport + sport_stadiums = [s for s in stadiums if s['sport'] == sport] + + for stadium in sport_stadiums: + stadium_name_normalized = normalize_for_matching(stadium['name']) + + # Score 1: Name similarity + name_score = SequenceMatcher( + None, + arena_normalized, + stadium_name_normalized + ).ratio() + + # Also check full names (unnormalized) + full_name_score = SequenceMatcher( + None, + team_arena_name.lower(), + stadium['name'].lower() + ).ratio() + + # Take the better score + name_score = max(name_score, full_name_score) + + # Score 2: City match + city_score = 0.0 + stadium_city_lower = stadium['city'].lower() + + if city_lower == stadium_city_lower: + city_score = 1.0 + elif city_lower in stadium_city_lower or stadium_city_lower in city_lower: + city_score = 0.5 + # Check for nearby cities (e.g., "San Francisco" team but "Oakland" arena) + nearby_cities = { + 'san francisco': ['oakland', 'san jose'], + 'new york': ['brooklyn', 'queens', 'elmont', 'newark'], + 'los angeles': ['inglewood', 'anaheim'], + 'miami': ['sunrise', 'fort lauderdale'], + 'dallas': ['arlington', 'fort worth'], + 'washington': ['landover', 'capital heights'], + 'minneapolis': ['st paul', 'st. paul'], + 'detroit': ['auburn hills', 'pontiac'], + } + for main_city, nearby in nearby_cities.items(): + if city_lower == main_city and stadium_city_lower in nearby: + city_score = 0.7 + elif stadium_city_lower == main_city and city_lower in nearby: + city_score = 0.7 + + # Combined score (weighted) + combined = (name_score * 0.7) + (city_score * 0.3) + + if combined > best_score: + best_score = combined + best_match = stadium['canonical_id'] + + if best_score >= confidence_threshold: + return best_match, best_score + + return None, best_score + + +# ============================================================================= +# CANONICALIZATION +# ============================================================================= + +def generate_canonical_team_id(sport: str, abbrev: str) -> str: + """ + Generate deterministic canonical ID for team. + + Format: team_{sport}_{abbrev} + Example: team_nba_atl + """ + return f"team_{sport.lower()}_{abbrev.lower()}" + + +def canonicalize_teams( + team_mappings: dict[str, dict], + sport: str, + canonical_stadiums: list[dict], + verbose: bool = False +) -> tuple[list[CanonicalTeam], list[MatchWarning]]: + """ + Stage 2: Canonicalize teams. + + 1. Generate canonical IDs from abbreviations + 2. Fuzzy match to stadiums + 3. Log low-confidence matches for review + + Args: + team_mappings: Team data dict (e.g., NBA_TEAMS) + sport: Sport code + canonical_stadiums: List of canonical stadium dicts + verbose: Print detailed progress + + Returns: + (canonical_teams, warnings) + """ + teams = [] + warnings = [] + + # Determine arena key based on sport + arena_key = 'arena' if sport in ['NBA', 'NHL'] else 'stadium' + + # Get division structure + division_map = { + 'NBA': NBA_DIVISIONS, + 'MLB': MLB_DIVISIONS, + 'NHL': NHL_DIVISIONS, + }.get(sport, {}) + + for abbrev, info in team_mappings.items(): + canonical_id = generate_canonical_team_id(sport, abbrev) + arena_name = info.get(arena_key, '') + city = info.get('city', '') + team_name = info.get('name', '') + + # Fuzzy match stadium + stadium_canonical_id, confidence = fuzzy_match_stadium( + arena_name, city, sport, canonical_stadiums + ) + + if stadium_canonical_id is None: + warnings.append(MatchWarning( + team_canonical_id=canonical_id, + team_name=team_name, + arena_name=arena_name, + matched_stadium=None, + issue='No stadium match found', + confidence=confidence + )) + # Create placeholder ID + stadium_canonical_id = f"stadium_unknown_{sport.lower()}_{abbrev.lower()}" + if verbose: + print(f" WARNING: {canonical_id} - no stadium match for '{arena_name}'") + + elif confidence < 0.8: + warnings.append(MatchWarning( + team_canonical_id=canonical_id, + team_name=team_name, + arena_name=arena_name, + matched_stadium=stadium_canonical_id, + issue='Low confidence stadium match', + confidence=confidence + )) + if verbose: + print(f" WARNING: {canonical_id} - low confidence ({confidence:.2f}) match to {stadium_canonical_id}") + + # Get conference/division + conf_id, div_id = division_map.get(abbrev, (None, None)) + + team = CanonicalTeam( + canonical_id=canonical_id, + name=team_name, + abbreviation=abbrev, + sport=sport, + city=city, + stadium_canonical_id=stadium_canonical_id, + conference_id=conf_id, + division_id=div_id + ) + teams.append(team) + + if verbose and confidence >= 0.8: + print(f" {canonical_id}: {team_name} -> {stadium_canonical_id} ({confidence:.2f})") + + return teams, warnings + + +def canonicalize_all_teams( + canonical_stadiums: list[dict], + verbose: bool = False +) -> tuple[list[CanonicalTeam], list[MatchWarning]]: + """Canonicalize teams for all sports.""" + all_teams = [] + all_warnings = [] + + sport_mappings = [ + ('NBA', NBA_TEAMS), + ('MLB', MLB_TEAMS), + ('NHL', NHL_TEAMS), + ] + + for sport, team_map in sport_mappings: + if verbose: + print(f"\n{sport}:") + + teams, warnings = canonicalize_teams( + team_map, sport, canonical_stadiums, verbose + ) + all_teams.extend(teams) + all_warnings.extend(warnings) + + return all_teams, all_warnings + + +# ============================================================================= +# MAIN +# ============================================================================= + +def main(): + parser = argparse.ArgumentParser( + description='Canonicalize team data' + ) + parser.add_argument( + '--stadiums', type=str, default='./data/stadiums_canonical.json', + help='Input canonical stadiums JSON file' + ) + parser.add_argument( + '--output', type=str, default='./data', + help='Output directory for canonical files' + ) + parser.add_argument( + '--verbose', '-v', action='store_true', + help='Verbose output' + ) + + args = parser.parse_args() + stadiums_path = Path(args.stadiums) + output_dir = Path(args.output) + output_dir.mkdir(parents=True, exist_ok=True) + + # Load canonical stadiums + print(f"Loading canonical stadiums from {stadiums_path}...") + with open(stadiums_path) as f: + canonical_stadiums = json.load(f) + print(f" Loaded {len(canonical_stadiums)} canonical stadiums") + + # Canonicalize teams + print("\nCanonicalizing teams...") + canonical_teams, warnings = canonicalize_all_teams( + canonical_stadiums, verbose=args.verbose + ) + print(f" Created {len(canonical_teams)} canonical teams") + + if warnings: + print(f"\n Warnings: {len(warnings)}") + for w in warnings: + print(f" - {w.team_canonical_id}: {w.issue} (confidence: {w.confidence:.2f})") + + # Export + teams_path = output_dir / 'teams_canonical.json' + warnings_path = output_dir / 'team_matching_warnings.json' + + with open(teams_path, 'w') as f: + json.dump([asdict(t) for t in canonical_teams], f, indent=2) + print(f"\nExported teams to {teams_path}") + + if warnings: + with open(warnings_path, 'w') as f: + json.dump([asdict(w) for w in warnings], f, indent=2) + print(f"Exported warnings to {warnings_path}") + + # Summary by sport + print("\nSummary by sport:") + by_sport = {} + for t in canonical_teams: + by_sport[t.sport] = by_sport.get(t.sport, 0) + 1 + for sport, count in sorted(by_sport.items()): + print(f" {sport}: {count} teams") + + +if __name__ == '__main__': + main() diff --git a/Scripts/cloudkit_import.py b/Scripts/cloudkit_import.py index 5108f3a..1dfabd4 100755 --- a/Scripts/cloudkit_import.py +++ b/Scripts/cloudkit_import.py @@ -2,7 +2,15 @@ """ CloudKit Import Script ====================== -Imports JSON data into CloudKit. Run separately from pipeline. +Imports canonical JSON data into CloudKit. Run after canonicalization pipeline. + +Expected input files (from canonicalization pipeline): + - stadiums_canonical.json + - teams_canonical.json + - games_canonical.json + - stadium_aliases.json + - league_structure.json + - team_aliases.json Setup: 1. CloudKit Dashboard > Tokens & Keys > Server-to-Server Keys @@ -309,12 +317,35 @@ def main(): print(f"Environment: {args.env}\n") data_dir = Path(args.data_dir) - stadiums = json.load(open(data_dir / 'stadiums.json')) - games = json.load(open(data_dir / 'games.json')) if (data_dir / 'games.json').exists() else [] + + # Load canonical format files (from canonicalization pipeline) + # Fall back to legacy format for backward compatibility + if (data_dir / 'stadiums_canonical.json').exists(): + stadiums = json.load(open(data_dir / 'stadiums_canonical.json')) + use_canonical = True + else: + stadiums = json.load(open(data_dir / 'stadiums.json')) + use_canonical = False + + if (data_dir / 'teams_canonical.json').exists(): + teams = json.load(open(data_dir / 'teams_canonical.json')) + else: + teams = [] # Legacy: extracted from stadiums + + if (data_dir / 'games_canonical.json').exists(): + games = json.load(open(data_dir / 'games_canonical.json')) + elif (data_dir / 'games.json').exists(): + games = json.load(open(data_dir / 'games.json')) + else: + games = [] + league_structure = json.load(open(data_dir / 'league_structure.json')) if (data_dir / 'league_structure.json').exists() else [] team_aliases = json.load(open(data_dir / 'team_aliases.json')) if (data_dir / 'team_aliases.json').exists() else [] stadium_aliases = json.load(open(data_dir / 'stadium_aliases.json')) if (data_dir / 'stadium_aliases.json').exists() else [] - print(f"Loaded {len(stadiums)} stadiums, {len(games)} games, {len(league_structure)} league structures, {len(team_aliases)} team aliases, {len(stadium_aliases)} stadium aliases\n") + + print(f"Using {'canonical' if use_canonical else 'legacy'} format") + print(f"Loaded {len(stadiums)} stadiums, {len(teams)} teams, {len(games)} games") + print(f"Loaded {len(league_structure)} league structures, {len(team_aliases)} team aliases, {len(stadium_aliases)} stadium aliases\n") ck = None if not args.dry_run: @@ -353,72 +384,135 @@ def main(): import_team_aliases = args.team_aliases_only or args.canonical_only or (not args.stadiums_only and not args.games_only and not args.league_structure_only and not args.stadium_aliases_only) import_stadium_aliases = args.stadium_aliases_only or args.canonical_only or (not args.stadiums_only and not args.games_only and not args.league_structure_only and not args.team_aliases_only) - # Build stadium UUID lookup (stadium string ID -> UUID) - stadium_uuid_map = {s['id']: deterministic_uuid(s['id']) for s in stadiums} + # Build stadium ID lookup + # Canonical format uses canonical_id, legacy uses id + def get_stadium_id(s): + return s.get('canonical_id', s.get('id', '')) - # Import stadiums & teams + def get_team_id(t): + return t.get('canonical_id', '') + + stadium_id_map = {get_stadium_id(s): deterministic_uuid(get_stadium_id(s)) for s in stadiums} + + # Import stadiums if import_stadiums: print("--- Stadiums ---") - recs = [{ - 'recordType': 'Stadium', 'recordName': stadium_uuid_map[s['id']], - 'fields': { - 'stadiumId': {'value': stadium_uuid_map[s['id']]}, 'name': {'value': s['name']}, - 'city': {'value': s['city']}, 'state': {'value': s.get('state', '')}, - 'sport': {'value': s['sport']}, 'source': {'value': s.get('source', '')}, - 'teamAbbrevs': {'value': s.get('team_abbrevs', [])}, - **({'location': {'value': {'latitude': s['latitude'], 'longitude': s['longitude']}}} - if s.get('latitude') else {}), - **({'capacity': {'value': s['capacity']}} if s.get('capacity') else {}), + recs = [] + for s in stadiums: + stadium_id = get_stadium_id(s) + record_name = deterministic_uuid(stadium_id) + # Canonical format uses primary_team_abbrevs, legacy uses team_abbrevs + team_abbrevs = s.get('primary_team_abbrevs', s.get('team_abbrevs', [])) + + fields = { + 'stadiumId': {'value': record_name}, + 'canonicalId': {'value': stadium_id}, # Store canonical_id as string + 'name': {'value': s['name']}, + 'city': {'value': s['city']}, + 'state': {'value': s.get('state', '')}, + 'sport': {'value': s['sport']}, + 'source': {'value': s.get('source', 'canonical')}, + 'teamAbbrevs': {'value': team_abbrevs}, } - } for s in stadiums] + if s.get('latitude'): + fields['location'] = {'value': {'latitude': s['latitude'], 'longitude': s['longitude']}} + if s.get('capacity'): + fields['capacity'] = {'value': s['capacity']} + + recs.append({'recordType': 'Stadium', 'recordName': record_name, 'fields': fields}) stats['stadiums'] = import_data(ck, recs, 'stadiums', args.dry_run, args.verbose) + # Import teams (canonical format has dedicated teams file) + if import_teams: print("--- Teams ---") - teams = {} - for s in stadiums: - for abbr in s.get('team_abbrevs', []): - team_key = f"{s['sport']}_{abbr}" # Match Swift: "{sport.rawValue}_{abbrev}" - if team_key not in teams: - teams[team_key] = {'abbr': abbr, 'city': s['city'], 'sport': s['sport']} - team_uuid = deterministic_uuid(team_key) - team_map[(s['sport'], abbr)] = team_uuid + if teams: + # Canonical format: use teams_canonical.json + recs = [] + for t in teams: + team_id = get_team_id(t) + record_name = deterministic_uuid(team_id) + team_map[(t['sport'], t['abbreviation'])] = record_name - recs = [{ - 'recordType': 'Team', 'recordName': deterministic_uuid(team_key), - 'fields': { - 'teamId': {'value': deterministic_uuid(team_key)}, - 'abbreviation': {'value': info['abbr']}, - 'name': {'value': info['abbr']}, - 'city': {'value': info['city']}, - 'sport': {'value': info['sport']}, - } - } for team_key, info in teams.items()] - stats['teams'] = import_data(ck, recs, 'teams', args.dry_run, args.verbose) + fields = { + 'teamId': {'value': record_name}, + 'canonicalId': {'value': team_id}, # Store canonical_id as string + 'abbreviation': {'value': t['abbreviation']}, + 'name': {'value': t['name']}, + 'city': {'value': t['city']}, + 'sport': {'value': t['sport']}, + 'stadiumCanonicalId': {'value': t.get('stadium_canonical_id', '')}, + } + if t.get('conference_id'): + fields['conferenceId'] = {'value': t['conference_id']} + if t.get('division_id'): + fields['divisionId'] = {'value': t['division_id']} + + recs.append({'recordType': 'Team', 'recordName': record_name, 'fields': fields}) + stats['teams'] = import_data(ck, recs, 'teams', args.dry_run, args.verbose) + else: + # Legacy format: extract teams from stadiums + teams_dict = {} + for s in stadiums: + team_abbrevs = s.get('primary_team_abbrevs', s.get('team_abbrevs', [])) + for abbr in team_abbrevs: + team_key = f"{s['sport']}_{abbr}" + if team_key not in teams_dict: + teams_dict[team_key] = {'abbr': abbr, 'city': s['city'], 'sport': s['sport']} + team_uuid = deterministic_uuid(team_key) + team_map[(s['sport'], abbr)] = team_uuid + + recs = [{ + 'recordType': 'Team', 'recordName': deterministic_uuid(team_key), + 'fields': { + 'teamId': {'value': deterministic_uuid(team_key)}, + 'canonicalId': {'value': team_key}, + 'abbreviation': {'value': info['abbr']}, + 'name': {'value': info['abbr']}, + 'city': {'value': info['city']}, + 'sport': {'value': info['sport']}, + } + } for team_key, info in teams_dict.items()] + stats['teams'] = import_data(ck, recs, 'teams', args.dry_run, args.verbose) # Import games if import_games and games: + # Detect canonical game format (has canonical_id field) + use_canonical_games = games and 'canonical_id' in games[0] + # Rebuild team_map if only importing games (--games-only flag) if not team_map: - for s in stadiums: - for abbr in s.get('team_abbrevs', []): - team_key = f"{s['sport']}_{abbr}" - team_map[(s['sport'], abbr)] = deterministic_uuid(team_key) + if teams: + # Canonical format: use teams_canonical.json + for t in teams: + team_id = get_team_id(t) + team_map[(t['sport'], t['abbreviation'])] = deterministic_uuid(team_id) + else: + # Legacy format: extract from stadiums + for s in stadiums: + team_abbrevs = s.get('primary_team_abbrevs', s.get('team_abbrevs', [])) + for abbr in team_abbrevs: + team_key = f"{s['sport']}_{abbr}" + team_map[(s['sport'], abbr)] = deterministic_uuid(team_key) - # Build team -> stadium map for stadiumRef + # Build team -> stadium map for stadiumRef (legacy format needs this) team_stadium_map = {} for s in stadiums: - stadium_uuid = stadium_uuid_map[s['id']] - for abbr in s.get('team_abbrevs', []): + stadium_id = get_stadium_id(s) + stadium_uuid = stadium_id_map[stadium_id] + team_abbrevs = s.get('primary_team_abbrevs', s.get('team_abbrevs', [])) + for abbr in team_abbrevs: team_stadium_map[(s['sport'], abbr)] = stadium_uuid print("--- Games ---") + print(f" Using {'canonical' if use_canonical_games else 'legacy'} game format") - # Deduplicate games by ID + # Deduplicate games by ID (canonical_id or id) seen_ids = set() unique_games = [] for g in games: - if g['id'] not in seen_ids: - seen_ids.add(g['id']) + game_id = g.get('canonical_id', g.get('id', '')) + if game_id not in seen_ids: + seen_ids.add(game_id) unique_games.append(g) if len(unique_games) < len(games): @@ -426,13 +520,20 @@ def main(): recs = [] for g in unique_games: - game_uuid = deterministic_uuid(g['id']) + # Get game ID (canonical or legacy) + game_id = g.get('canonical_id', g.get('id', '')) + game_uuid = deterministic_uuid(game_id) sport = g['sport'] fields = { - 'gameId': {'value': game_uuid}, 'sport': {'value': sport}, - 'season': {'value': g.get('season', '')}, 'source': {'value': g.get('source', '')}, + 'gameId': {'value': game_uuid}, + 'canonicalId': {'value': game_id}, # Store canonical_id as string + 'sport': {'value': sport}, + 'season': {'value': g.get('season', '')}, + 'source': {'value': g.get('source', 'canonical' if use_canonical_games else '')}, } + + # Parse date/time if g.get('date'): try: # Parse time like "7:30p" or "10:00a" @@ -455,20 +556,38 @@ def main(): fields['dateTime'] = {'value': int(dt.timestamp() * 1000), 'type': 'TIMESTAMP'} except Exception as e: if args.verbose: - print(f" Warning: Failed to parse date/time for {g['id']}: {e}") + print(f" Warning: Failed to parse date/time for {game_id}: {e}") + + # Team references + if use_canonical_games: + # Canonical format: extract team abbrev from canonical ID (team_nba_atl -> atl) + home_team_canonical_id = g.get('home_team_canonical_id', '') + away_team_canonical_id = g.get('away_team_canonical_id', '') + home_team_uuid = deterministic_uuid(home_team_canonical_id) + away_team_uuid = deterministic_uuid(away_team_canonical_id) + else: + # Legacy format: use abbreviations + home_team_key = f"{sport}_{g.get('home_team_abbrev', '')}" + away_team_key = f"{sport}_{g.get('away_team_abbrev', '')}" + home_team_uuid = deterministic_uuid(home_team_key) + away_team_uuid = deterministic_uuid(away_team_key) - # Team references - use (sport, abbrev) tuple for lookup - home_team_key = f"{sport}_{g.get('home_team_abbrev', '')}" - away_team_key = f"{sport}_{g.get('away_team_abbrev', '')}" - home_team_uuid = deterministic_uuid(home_team_key) - away_team_uuid = deterministic_uuid(away_team_key) fields['homeTeamRef'] = {'value': {'recordName': home_team_uuid, 'action': 'NONE'}} fields['awayTeamRef'] = {'value': {'recordName': away_team_uuid, 'action': 'NONE'}} - # Stadium reference - look up by home team abbrev - stadium_uuid = team_stadium_map.get((sport, g.get('home_team_abbrev', ''))) - if stadium_uuid: - fields['stadiumRef'] = {'value': {'recordName': stadium_uuid, 'action': 'NONE'}} + # Stadium reference + if use_canonical_games and g.get('stadium_canonical_id'): + # Canonical format: use stadium_canonical_id directly + stadium_canonical_id = g['stadium_canonical_id'] + stadium_uuid = stadium_id_map.get(stadium_canonical_id) + if stadium_uuid: + fields['stadiumRef'] = {'value': {'recordName': stadium_uuid, 'action': 'NONE'}} + fields['stadiumCanonicalId'] = {'value': stadium_canonical_id} + else: + # Legacy format: look up by home team abbrev + stadium_uuid = team_stadium_map.get((sport, g.get('home_team_abbrev', ''))) + if stadium_uuid: + fields['stadiumRef'] = {'value': {'recordName': stadium_uuid, 'action': 'NONE'}} recs.append({'recordType': 'Game', 'recordName': game_uuid, 'fields': fields}) @@ -554,9 +673,14 @@ def main(): fields['validUntil'] = {'value': int(dt.timestamp() * 1000), 'type': 'TIMESTAMP'} except: pass + # Extract sport from stadium_canonical_id (e.g., "stadium_nba_td_garden" -> "nba") + # This makes record names unique for shared venues (TD Garden has NBA and NHL entries) + stadium_id = sa['stadium_canonical_id'] + sport = stadium_id.split('_')[1] if '_' in stadium_id else 'unknown' + record_name = f"{sport}_{sa['alias_name'].lower()}" recs.append({ 'recordType': 'StadiumAlias', - 'recordName': sa['alias_name'].lower(), # Use alias_name as recordName (unique key) + 'recordName': record_name, 'fields': fields }) stats['stadium_aliases'] = import_data(ck, recs, 'stadium aliases', args.dry_run, args.verbose) diff --git a/Scripts/data/canonicalization_validation.json b/Scripts/data/canonicalization_validation.json new file mode 100644 index 0000000..a70741f --- /dev/null +++ b/Scripts/data/canonicalization_validation.json @@ -0,0 +1,13 @@ +{ + "is_valid": true, + "error_count": 0, + "warning_count": 0, + "summary": { + "stadiums": 92, + "teams": 92, + "games": 4972, + "aliases": 130, + "by_category": {} + }, + "errors": [] +} \ No newline at end of file diff --git a/Scripts/data/games.csv b/Scripts/data/games.csv index 8bd308a..7452469 100644 --- a/Scripts/data/games.csv +++ b/Scripts/data/games.csv @@ -554,7 +554,6 @@ nba_202526_lal_sas_0107,NBA,2025-26,2026-01-07,9:30p,San Antonio Spurs,Los Angel nba_202526_mil_gsw_0107,NBA,2025-26,2026-01-07,10:00p,Golden State Warriors,Milwaukee Bucks,GSW,MIL,Chase Center,basketball-reference.com,False, nba_202526_hou_por_0107,NBA,2025-26,2026-01-07,10:00p,Portland Trail Blazers,Houston Rockets,POR,HOU,Moda Center,basketball-reference.com,False, nba_202526_ind_cho_0108,NBA,2025-26,2026-01-08,7:00p,Charlotte Hornets,Indiana Pacers,CHO,IND,Spectrum Center,basketball-reference.com,False, -nba_202526_mia_chi_0108,NBA,2025-26,2026-01-08,8:00p,Chicago Bulls,Miami Heat,CHI,MIA,United Center,basketball-reference.com,False, nba_202526_cle_min_0108,NBA,2025-26,2026-01-08,8:00p,Minnesota Timberwolves,Cleveland Cavaliers,MIN,CLE,Target Center,basketball-reference.com,False, nba_202526_dal_uta_0108,NBA,2025-26,2026-01-08,9:00p,Utah Jazz,Dallas Mavericks,UTA,DAL,Delta Center,basketball-reference.com,False, nba_202526_tor_bos_0109,NBA,2025-26,2026-01-09,7:00p,Boston Celtics,Toronto Raptors,BOS,TOR,TD Garden,basketball-reference.com,False, @@ -612,9 +611,9 @@ nba_202526_uta_dal_0115,NBA,2025-26,2026-01-15,8:30p,Dallas Mavericks,Utah Jazz, nba_202526_nyk_gsw_0115,NBA,2025-26,2026-01-15,10:00p,Golden State Warriors,New York Knicks,GSW,NYK,Chase Center,basketball-reference.com,False, nba_202526_atl_por_0115,NBA,2025-26,2026-01-15,10:00p,Portland Trail Blazers,Atlanta Hawks,POR,ATL,Moda Center,basketball-reference.com,False, nba_202526_cho_lal_0115,NBA,2025-26,2026-01-15,10:30p,Los Angeles Lakers,Charlotte Hornets,LAL,CHO,Crypto.com Arena,basketball-reference.com,False, -nba_202526_chi_brk_0116,NBA,2025-26,2026-01-16,7:00p,Brooklyn Nets,Chicago Bulls,BRK,CHI,Barclays Center,basketball-reference.com,False, nba_202526_nop_ind_0116,NBA,2025-26,2026-01-16,7:00p,Indiana Pacers,New Orleans Pelicans,IND,NOP,Gainbridge Fieldhouse,basketball-reference.com,False, nba_202526_cle_phi_0116,NBA,2025-26,2026-01-16,7:00p,Philadelphia 76ers,Cleveland Cavaliers,PHI,CLE,Xfinity Mobile Arena,basketball-reference.com,False, +nba_202526_chi_brk_0116,NBA,2025-26,2026-01-16,7:30p,Brooklyn Nets,Chicago Bulls,BRK,CHI,Barclays Center,basketball-reference.com,False, nba_202526_lac_tor_0116,NBA,2025-26,2026-01-16,7:30p,Toronto Raptors,Los Angeles Clippers,TOR,LAC,Scotiabank Arena,basketball-reference.com,False, nba_202526_min_hou_0116,NBA,2025-26,2026-01-16,9:30p,Houston Rockets,Minnesota Timberwolves,HOU,MIN,Toyota Center,basketball-reference.com,False, nba_202526_was_sac_0116,NBA,2025-26,2026-01-16,10:00p,Sacramento Kings,Washington Wizards,SAC,WAS,Golden 1 Center,basketball-reference.com,False, @@ -722,9 +721,9 @@ nba_202526_sac_bos_0130,NBA,2025-26,2026-01-30,7:30p,Boston Celtics,Sacramento K nba_202526_mem_nop_0130,NBA,2025-26,2026-01-30,7:30p,New Orleans Pelicans,Memphis Grizzlies,NOP,MEM,Smoothie King Center,basketball-reference.com,False, nba_202526_por_nyk_0130,NBA,2025-26,2026-01-30,7:30p,New York Knicks,Portland Trail Blazers,NYK,POR,Madison Square Garden (IV),basketball-reference.com,False, nba_202526_chi_mia_0130,NBA,2025-26,2026-01-30,8:00p,Miami Heat,Chicago Bulls,MIA,CHI,Kaseya Center,basketball-reference.com,False, +nba_202526_lac_den_0130,NBA,2025-26,2026-01-30,9:00p,Denver Nuggets,Los Angeles Clippers,DEN,LAC,Ball Arena,basketball-reference.com,False, nba_202526_cle_pho_0130,NBA,2025-26,2026-01-30,9:00p,Phoenix Suns,Cleveland Cavaliers,PHO,CLE,Mortgage Matchup Center,basketball-reference.com,False, nba_202526_brk_uta_0130,NBA,2025-26,2026-01-30,9:30p,Utah Jazz,Brooklyn Nets,UTA,BRK,Delta Center,basketball-reference.com,False, -nba_202526_lac_den_0130,NBA,2025-26,2026-01-30,10:00p,Denver Nuggets,Los Angeles Clippers,DEN,LAC,Ball Arena,basketball-reference.com,False, nba_202526_det_gsw_0130,NBA,2025-26,2026-01-30,10:00p,Golden State Warriors,Detroit Pistons,GSW,DET,Chase Center,basketball-reference.com,False, nba_202526_sas_cho_0131,NBA,2025-26,2026-01-31,3:00p,Charlotte Hornets,San Antonio Spurs,CHO,SAS,Spectrum Center,basketball-reference.com,False, nba_202526_atl_ind_0131,NBA,2025-26,2026-01-31,7:00p,Indiana Pacers,Atlanta Hawks,IND,ATL,Gainbridge Fieldhouse,basketball-reference.com,False, @@ -2707,7 +2706,7 @@ mlb_2026_tb_bos_0718,MLB,2026,2026-07-18,20:10,Boston Red Sox,Tampa Bay Rays,BOS mlb_2026_tex_atl_0718,MLB,2026,2026-07-18,20:10,Atlanta Braves,Texas Rangers,ATL,TEX,Truist Park,statsapi.mlb.com,False, mlb_2026_mia_mil_0718,MLB,2026,2026-07-18,20:10,Milwaukee Brewers,Miami Marlins,MIL,MIA,American Family Field,statsapi.mlb.com,False, mlb_2026_sf_sea_0718,MLB,2026,2026-07-18,23:15,Seattle Mariners,San Francisco Giants,SEA,SF,T-Mobile Park,statsapi.mlb.com,False, -mlb_2026_lad_nyy_0718,MLB,2026,2026-07-18,23:15,New York Yankees,Los Angeles Dodgers,NYY,LAD,Yankee Stadium,statsapi.mlb.com,False, +mlb_2026_lad_nyy_0718,MLB,2026,2026-07-18,00:08,New York Yankees,Los Angeles Dodgers,NYY,LAD,Yankee Stadium,statsapi.mlb.com,False, mlb_2026_wsh_ath_0718,MLB,2026,2026-07-18,02:05,Athletics,Washington Nationals,ATH,WSH,Sutter Health Park,statsapi.mlb.com,False, mlb_2026_det_laa_0718,MLB,2026,2026-07-18,02:07,Los Angeles Angels,Detroit Tigers,LAA,DET,Angel Stadium,statsapi.mlb.com,False, mlb_2026_pit_cle_0718,MLB,2026,2026-07-18,07:33,Cleveland Guardians,Pittsburgh Pirates,CLE,PIT,Progressive Field,statsapi.mlb.com,False, @@ -3520,7 +3519,7 @@ mlb_2026_mil_pit_0917,MLB,2026,2026-09-17,16:35,Pittsburgh Pirates,Milwaukee Bre mlb_2026_lad_cin_0917,MLB,2026,2026-09-17,16:40,Cincinnati Reds,Los Angeles Dodgers,CIN,LAD,Great American Ball Park,statsapi.mlb.com,False, mlb_2026_ath_tb_0917,MLB,2026,2026-09-17,17:10,Tampa Bay Rays,Athletics,TB,ATH,Tropicana Field,statsapi.mlb.com,False, mlb_2026_sd_col_0917,MLB,2026,2026-09-17,19:10,Colorado Rockies,San Diego Padres,COL,SD,Coors Field,statsapi.mlb.com,False, -mlb_2026_phi_nym_0917,MLB,2026,2026-09-17,23:10,New York Mets,Philadelphia Phillies,NYM,PHI,Citi Field,statsapi.mlb.com,False, +mlb_2026_phi_nym_0917,MLB,2026,2026-09-17,23:15,New York Mets,Philadelphia Phillies,NYM,PHI,Citi Field,statsapi.mlb.com,False, mlb_2026_det_cws_0917,MLB,2026,2026-09-17,23:40,Chicago White Sox,Detroit Tigers,CWS,DET,Rate Field,statsapi.mlb.com,False, mlb_2026_bos_tex_0917,MLB,2026,2026-09-17,00:05,Texas Rangers,Boston Red Sox,TEX,BOS,Globe Life Field,statsapi.mlb.com,False, mlb_2026_min_laa_0917,MLB,2026,2026-09-17,01:38,Los Angeles Angels,Minnesota Twins,LAA,MIN,Angel Stadium,statsapi.mlb.com,False, diff --git a/Scripts/data/games.json b/Scripts/data/games.json index fe53278..3b2f5d3 100644 --- a/Scripts/data/games.json +++ b/Scripts/data/games.json @@ -8324,21 +8324,6 @@ "is_playoff": false, "broadcast": null }, - { - "id": "nba_202526_mia_chi_0108", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-08", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Miami Heat", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIA", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, { "id": "nba_202526_cle_min_0108", "sport": "NBA", @@ -9194,21 +9179,6 @@ "is_playoff": false, "broadcast": null }, - { - "id": "nba_202526_chi_brk_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "7:00p", - "home_team": "Brooklyn Nets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CHI", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, { "id": "nba_202526_nop_ind_0116", "sport": "NBA", @@ -9239,6 +9209,21 @@ "is_playoff": false, "broadcast": null }, + { + "id": "nba_202526_chi_brk_0116", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "BRK", + "away_team_abbrev": "CHI", + "venue": "Barclays Center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast": null + }, { "id": "nba_202526_lac_tor_0116", "sport": "NBA", @@ -10844,6 +10829,21 @@ "is_playoff": false, "broadcast": null }, + { + "id": "nba_202526_lac_den_0130", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:00p", + "home_team": "Denver Nuggets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LAC", + "venue": "Ball Arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast": null + }, { "id": "nba_202526_cle_pho_0130", "sport": "NBA", @@ -10874,21 +10874,6 @@ "is_playoff": false, "broadcast": null }, - { - "id": "nba_202526_lac_den_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "LAC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, { "id": "nba_202526_det_gsw_0130", "sport": "NBA", @@ -40624,7 +40609,7 @@ "sport": "MLB", "season": "2026", "date": "2026-07-18", - "time": "23:15", + "time": "00:08", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -52819,7 +52804,7 @@ "sport": "MLB", "season": "2026", "date": "2026-09-17", - "time": "23:10", + "time": "23:15", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", diff --git a/Scripts/data/games_canonical.json b/Scripts/data/games_canonical.json new file mode 100644 index 0000000..6c9adb7 --- /dev/null +++ b/Scripts/data/games_canonical.json @@ -0,0 +1,59666 @@ +[ + { + "canonical_id": "game_nba_202526_20251021_hou_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251021_gsw_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_brk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_cle_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_phi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_tor_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_det_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_nop_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_was_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_lac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_sas_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_min_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_sac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251023_okc_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251023_den_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_mil_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "6:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_atl_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_cle_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_bos_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_det_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_sas_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_mia_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_was_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_min_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_gsw_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_uta_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_pho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_chi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_okc_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_cho_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_ind_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_pho_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_brk_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "2:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_bos_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "3:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_cho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_nyk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_mil_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_ind_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_tor_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_lal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_por_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_cle_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_orl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_atl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_brk_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_bos_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_tor_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_okc_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_pho_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_den_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_mem_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_por_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_phi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_cho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_nyk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_sac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_lac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_hou_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "6:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_cle_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_orl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_atl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_sac_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_ind_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_por_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_nop_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_lal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_mem_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_orl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_gsw_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_was_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_mia_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_atl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_bos_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_tor_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_nyk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_lal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_uta_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_den_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_nop_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_sac_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "5:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_min_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_gsw_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_orl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_hou_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_dal_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_nop_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_phi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_uta_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_atl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_mem_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_chi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_sas_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_mia_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_min_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_mil_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_uta_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_was_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_dal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_det_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_sac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_lal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_mia_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_mil_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_orl_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_phi_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_cho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_pho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_okc_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_phi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_uta_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_brk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_was_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_min_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_hou_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_nop_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_mia_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_okc_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_gsw_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251106_lac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_bos_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_cle_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_tor_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_det_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_hou_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_dal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_cho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_chi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_uta_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_gsw_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_okc_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_dal_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_tor_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_lal_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_chi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_por_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_nop_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_ind_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_pho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_hou_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_okc_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_brk_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_bos_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_det_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_ind_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_min_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_lal_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_was_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_por_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_cle_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_sas_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_mil_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_nop_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_min_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_atl_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_tor_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_mem_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_gsw_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_bos_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_ind_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_den_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_mil_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_chi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_orl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_mem_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_cle_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_was_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_gsw_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_pho_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_lal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_atl_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_den_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_tor_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_ind_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_atl_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_mia_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_brk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_phi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_por_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_cho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_sac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_lal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_lac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_gsw_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_mem_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "5:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_okc_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_tor_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_lal_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_den_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_lac_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_sac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "4:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_brk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_orl_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_gsw_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_por_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_atl_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_chi_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_mil_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_ind_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_lac_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_nyk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_cho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_dal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_okc_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_chi_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_gsw_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_det_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_bos_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_mem_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_uta_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_pho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_hou_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_cho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_tor_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_gsw_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_was_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_den_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_sac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_nyk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_chi_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_lac_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_sac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_phi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_atl_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_ind_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_brk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_was_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_mia_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_nop_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_min_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_den_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_por_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_okc_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_lac_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_nyk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_atl_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_was_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_det_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_mem_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_sac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_mia_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "1:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_cho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_orl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_lac_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_brk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_por_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_sas_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_lal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_det_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_cle_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_nyk_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_dal_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_den_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_por_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_chi_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_hou_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "9:30p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_uta_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_min_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_atl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_orl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_lac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_det_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "5:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_nyk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_mil_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_min_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_ind_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_mem_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_hou_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_sas_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_pho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_cle_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_phi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_chi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_orl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_was_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_mil_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_sas_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_sac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_mem_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_dal_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_bos_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "5:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_tor_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_chi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_det_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_brk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_nop_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_den_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_dal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_hou_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "3:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_bos_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_tor_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_atl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_okc_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_sas_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_mem_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_nop_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_cle_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_mil_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_cho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_lac_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_chi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_dal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_hou_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_pho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_was_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_por_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_nyk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_min_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_mem_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_okc_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_por_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_den_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_sas_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_lac_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_cho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_brk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_sac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_det_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_mia_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_gsw_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_bos_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_uta_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_lal_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_min_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_lal_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_den_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_sas_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_por_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_uta_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_cho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_ind_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_pho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_lac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_phi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_dal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_nop_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "5:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_atl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_gsw_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_mil_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_sac_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_lac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_hou_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_orl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "12:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_bos_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_den_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_por_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_gsw_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_lal_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_okc_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_sac_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_pho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_sas_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251209_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251209_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-09", + "time": "8:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251210_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251210_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_den_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_chi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_ind_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_cle_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_uta_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_brk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_min_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251213_nyk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-13", + "time": "5:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251213_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_was_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "3:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_cho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_phi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_mil_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_nop_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_sac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_gsw_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_det_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_tor_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_dal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_mem_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251216_sas_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-16", + "time": "8:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251217_cle_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251217_mem_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_atl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_nyk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_mia_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_tor_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_hou_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_lac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_was_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_det_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_orl_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_gsw_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_lal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_sac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_mia_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_phi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_sas_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_chi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_okc_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "5:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_ind_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_dal_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_bos_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_cho_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_was_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_pho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_orl_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_por_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_lal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_chi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "3:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_tor_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_mia_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_mil_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_sas_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_hou_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_cho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_ind_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_dal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_uta_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_mem_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_orl_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_det_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_was_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_brk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_chi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_nop_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_mil_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_tor_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_den_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_nyk_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_okc_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_mem_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_orl_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_det_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_hou_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_cle_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "12:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "2:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_dal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "5:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_hou_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_min_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "10:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_mia_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_bos_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_cho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_tor_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_phi_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_mil_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_pho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_det_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_lac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_dal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "5:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_pho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_den_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_nyk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_mil_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_cle_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_ind_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_brk_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_uta_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_phi_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_gsw_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_bos_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_mem_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_det_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_sac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_mil_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_pho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_gsw_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_den_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_orl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_min_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_ind_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_nyk_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_atl_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_cle_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_dal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "10:30p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_phi_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_bos_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_det_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_sac_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_gsw_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_min_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_orl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_pho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_nop_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_nyk_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_den_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_was_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_por_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_hou_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_mia_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_phi_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_bos_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_uta_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_sas_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_brk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_den_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_atl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_orl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_cho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_sac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_okc_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_mem_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_min_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "5:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_phi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_atl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_cho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_por_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_hou_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_uta_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_bos_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_det_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "2:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_ind_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_den_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_nop_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_min_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_okc_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_mil_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_mem_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_nyk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_chi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_atl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_pho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_cho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_den_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_gsw_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_uta_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_cle_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_orl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_sas_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_mia_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_lal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_dal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_den_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_tor_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_chi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_was_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_nop_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_orl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_lac_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_pho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_uta_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_lal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_mil_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_hou_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_ind_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_cle_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_dal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_tor_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_phi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_nop_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_lac_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_okc_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_atl_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_nyk_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_sac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_hou_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_mil_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_min_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_mia_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_lac_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_sas_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_dal_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_cho_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_nop_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "3:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_brk_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_nyk_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_phi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_sas_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_mia_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_mil_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_was_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_atl_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_hou_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_uta_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_bos_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_phi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_brk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_lal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_cho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_pho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_chi_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_min_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_den_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_atl_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_por_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_tor_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_cle_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_uta_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_brk_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_den_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_nyk_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_was_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_mem_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "2:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_pho_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_okc_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_bos_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_mil_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_uta_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_nyk_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_atl_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_cho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_nop_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_cle_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_chi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_lac_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_min_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_was_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_uta_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "5:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_bos_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_ind_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_pho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_okc_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_min_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_cho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_was_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_lal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_orl_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "12:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_brk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_nop_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_cho_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_por_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_tor_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_mil_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "1:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_okc_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "2:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_lac_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "3:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_dal_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "5:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_uta_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "5:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_ind_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_pho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_bos_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_mia_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_pho_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_lac_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_sas_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_min_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_lal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_tor_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_mia_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_cle_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_ind_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_brk_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_atl_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_det_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_okc_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_tor_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_cho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_hou_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_den_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_gsw_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_chi_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_sas_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_lal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_mia_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_hou_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_pho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_bos_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_sac_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_nop_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_ind_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_den_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_tor_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_nyk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "3:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_gsw_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "5:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_was_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_cle_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_bos_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_lal_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_mia_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_sac_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "3:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_den_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_dal_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_tor_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_nop_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_mia_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_brk_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_phi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_orl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_ind_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_por_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_lal_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_mem_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_gsw_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_por_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_sac_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_nop_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_mil_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_det_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_brk_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_lac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_lal_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_chi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_atl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_orl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_cho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_min_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_gsw_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_sas_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_sac_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_mil_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_hou_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_cho_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_brk_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_det_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_okc_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_tor_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_lal_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_sac_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_mem_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_por_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_chi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_lac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_cle_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_brk_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_det_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_sas_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_atl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_nop_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_min_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_dal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "8:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_mil_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_orl_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "4:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_brk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_chi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_uta_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_sac_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_lal_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_lac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_cle_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_okc_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_nop_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_hou_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_min_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_phi_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_den_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_uta_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_nyk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_lal_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_atl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_bos_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_chi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_orl_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_phi_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_pho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_den_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_min_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_bos_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_nop_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_okc_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_mem_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_cle_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_was_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_brk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_uta_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_chi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_cho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_sas_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_gsw_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_phi_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_mia_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_nyk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_ind_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_nop_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_mem_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_lac_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_was_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "3:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_hou_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_dal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_uta_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_cho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_den_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_gsw_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_phi_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_mem_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_cle_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_nyk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "12:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_mia_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "2:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_lac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "3:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_ind_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "3:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_det_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_chi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_uta_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_mil_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_atl_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_sac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_cle_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_mem_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_okc_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_phi_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_ind_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_dal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_atl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_was_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mil_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_chi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_ind_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_nyk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_det_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_por_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mia_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_okc_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_sac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mem_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_sas_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_mil_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_por_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_dal_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_hou_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_brk_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_atl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_ind_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_det_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_tor_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_pho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_bos_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_orl_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_den_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_cle_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_uta_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_ind_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_mia_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_dal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_mil_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_brk_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_lac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_den_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_orl_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "5:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_phi_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_det_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_mem_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_sac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_hou_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_cle_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "1:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_brk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_den_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_tor_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_dal_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_cho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_bos_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "6:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_phi_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_nyk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_por_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_orl_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_sas_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_sac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_uta_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_phi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_was_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_dal_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_okc_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_cho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_nyk_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_mia_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_gsw_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_bos_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_orl_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_min_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_okc_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_gsw_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_sas_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_sac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_cle_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_bos_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_cho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_mia_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_was_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_sas_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_hou_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_por_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_sac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_nop_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_min_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_cle_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_brk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_nyk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_mem_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_den_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_por_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_hou_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_tor_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_lal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_nop_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_sas_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "1:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_cle_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_mil_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_min_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_mem_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_por_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_phi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_det_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_okc_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_nop_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_sac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_hou_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_den_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_lac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_dal_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_det_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_was_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_brk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_okc_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_mem_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_sas_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_nop_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_pho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_okc_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_cho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_uta_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_por_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_atl_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_ind_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_dal_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_uta_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_gsw_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_brk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_tor_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_det_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_chi_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_lal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_nop_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_dal_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_mia_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_por_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_nyk_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_nop_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_lac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_ind_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_orl_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "3:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_brk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_phi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_lac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_uta_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_gsw_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_bos_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_nyk_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "3:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_det_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_dal_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_was_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_orl_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_hou_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_cho_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_ind_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_chi_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_phi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_mem_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_den_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_gsw_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_nyk_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_mem_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_det_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_was_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_dal_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_tor_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_pho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_bos_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_chi_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_cho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_ind_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_min_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_cle_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_tor_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_nyk_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_cho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_min_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_phi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_pho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_was_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_brk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_mil_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_den_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_bos_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_chi_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_mem_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_nyk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_pho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_nop_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_cle_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_min_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_uta_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_chi_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_brk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "1:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_mil_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "3:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_was_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_orl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_cho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_den_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_sac_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_min_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "1:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_dal_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_ind_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_det_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_por_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_gsw_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_uta_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_orl_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_gsw_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_por_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_pho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_mem_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_dal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_lal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "9:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_sas_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_mia_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_okc_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_det_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_ind_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_cle_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_pho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_phi_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_sas_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_gsw_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_okc_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_por_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_tor_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_nyk_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_uta_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_lac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_atl_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_lal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_orl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_det_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_cle_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_lal_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_lac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_pho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_mil_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_phi_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_nyk_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_gsw_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_atl_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_bos_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_por_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_tor_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_okc_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "5:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mem_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_cle_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_lal_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_gsw_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mia_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_ind_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_lac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_phi_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mil_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_por_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_brk_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "6:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_was_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_min_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_tor_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_mem_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_lal_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_ind_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_okc_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_sas_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_hou_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_tor_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_gsw_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_brk_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_mil_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_sac_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_nop_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_orl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_den_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "11:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_lal_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_chi_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_okc_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_mia_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_sas_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_was_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_hou_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_dal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_brk_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_mil_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_tor_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_nyk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_nop_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_sac_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_lac_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_atl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_mia_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_hou_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_chi_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_nop_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_uta_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_was_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_dal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_brk_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_sas_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_phi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_sac_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_chi_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_det_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_uta_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_lac_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_mia_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_sac_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_bos_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_was_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_orl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_hou_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_nyk_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_gsw_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_phi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_bos_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_pho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_chi_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_min_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_cle_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_det_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_was_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_pho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_cho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_tor_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_nyk_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_cle_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_por_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_phi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_bos_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_atl_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_ind_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_mil_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_dal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_sac_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_den_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_sas_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_pho_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_min_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_lal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_cle_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_nop_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_sas_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_ind_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_min_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_atl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_chi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_uta_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_tor_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_orl_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_nop_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_was_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_sas_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_det_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_tor_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_was_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_pho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_mem_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_ind_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_cho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_orl_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_uta_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_lal_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_lac_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_hou_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_nyk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_det_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_cle_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_phi_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_por_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_chi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_cho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_mil_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_mia_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_min_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_uta_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_sac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_okc_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_dal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_hou_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "11:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_atl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_min_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_mil_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_por_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_mem_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_okc_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_dal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_mia_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_chi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_ind_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_bos_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_phi_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_lal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_mia_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_det_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_nop_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_phi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_cle_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_tor_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_orl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_min_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_brk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_dal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_mem_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_okc_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_lac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_gsw_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_pho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_orl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_was_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_det_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_atl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_cho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_mil_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_brk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_chi_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_mem_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_gsw_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_uta_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_nop_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_sac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_den_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260325_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-25", + "time": "00:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "00:30", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "20:35", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "00:20", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "18:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:12", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "17:05", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "15:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "19:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "22:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "09:33", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "09:33", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "19:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "16:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "02:05", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "19:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "21:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "17:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "19:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "23:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "23:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "01:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bos_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bos_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "23:15", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_bos_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "16:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "17:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "16:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "15:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:08", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "23:20", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "22:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260716_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "00:08", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "23:20", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "16:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "22:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "01:50", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "23:30", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "01:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "16:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "21:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "22:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "07:33", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:20", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_chi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_col_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_pit_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_cgy_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_mtl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_lak_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_bos_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_chi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_nyr_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_njd_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ari_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_mtl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_phi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_cbj_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_nyi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ana_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_vgk_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_min_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ott_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_cgy_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_dal_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_buf_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_phi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_stl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_mtl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_dal_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_tor_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_van_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ott_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_cbj_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ari_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_wsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_nyr_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_vgk_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ana_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_njd_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_lak_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251012_wsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_tbl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_col_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_njd_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_ari_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_lak_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_wpg_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_nsh_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_fla_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_det_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_stl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_pit_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_vgk_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_min_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_sea_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_edm_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_car_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_nsh_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_tbl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_ott_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_fla_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_chi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_cgy_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_car_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_col_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_van_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_pit_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_nsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_fla_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_edm_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_sea_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_wpg_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_nyr_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_bos_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_van_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_tbl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_sjs_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_min_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_fla_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_tbl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_bos_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_car_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nyr_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_edm_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nyi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_min_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_pit_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_dal_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_sea_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_cgy_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_ana_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_edm_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_bos_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_van_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_wpg_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_buf_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_min_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_sea_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_car_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_fla_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_cbj_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_ana_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_sjs_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_edm_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_van_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_lak_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_njd_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_col_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_sea_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_det_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_mtl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_min_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_ana_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_car_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_lak_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_mtl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_pit_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_van_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_det_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_sjs_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_phi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_ari_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_chi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_sea_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_tor_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_wsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_sjs_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_cgy_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_col_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_car_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_stl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_vgk_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ari_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_lak_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_nyi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_cbj_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_edm_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ana_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_buf_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_mtl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ott_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_nyr_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_lak_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_sjs_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_col_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_dal_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_vgk_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_edm_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_ari_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251027_bos_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-27", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251027_stl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-27", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_nyi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_cbj_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_vgk_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ott_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_njd_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_wsh_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ari_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ana_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_wpg_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_tbl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_pit_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_mtl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_lak_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_det_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_cgy_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_nyr_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251029_tor_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-29", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_buf_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nyi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nyr_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_det_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_pit_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_cgy_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_njd_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_van_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_dal_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_chi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_det_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_col_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_nyi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_car_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_wsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_stl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_chi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_dal_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_njd_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_van_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_ott_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_cgy_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_tor_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_nyr_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_col_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_pit_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_njd_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_cbj_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_cgy_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_det_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_tbl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_van_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_chi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_edm_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_pit_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_fla_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_ari_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_tbl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_edm_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_wpg_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_nsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_phi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_bos_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_car_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_det_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_cbj_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_sjs_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_ari_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_chi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_stl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_ott_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_stl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_min_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_ana_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_fla_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_mtl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_phi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_wsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_tbl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_chi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_nyr_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_min_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_wpg_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_buf_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_col_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ari_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_pit_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_dal_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_nyi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ott_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_fla_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_sea_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_wsh_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_bos_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_cbj_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ana_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_wpg_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_sea_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_chi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_cgy_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_ari_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_lak_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_car_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_col_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_cbj_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_nyi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_nsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_fla_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_tor_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_wsh_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_ana_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_sjs_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_lak_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_dal_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_cbj_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_cgy_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_wpg_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_njd_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_edm_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_nyr_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_buf_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_edm_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_sjs_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_buf_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_ana_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_wsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_dal_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_bos_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_wpg_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_lak_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_nyi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_van_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_pit_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_phi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_nyi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_edm_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_nyr_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_wpg_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_tor_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_phi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_buf_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_tbl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_ana_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_bos_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_lak_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_sjs_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_vgk_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_njd_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_nyi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_vgk_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_det_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_nsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_van_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_ari_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_car_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_edm_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_mtl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_van_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_lak_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_cgy_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_nyi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_sea_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_ari_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_njd_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_stl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_nyr_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_cbj_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_bos_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_cgy_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_car_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_edm_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_ott_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_sea_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_nyr_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_nyi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_njd_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_wsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_stl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_lak_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_edm_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_cbj_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_vgk_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_dal_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_chi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_bos_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_min_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_car_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_vgk_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_dal_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_cbj_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_edm_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_tor_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_col_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_stl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_njd_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_sea_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_ott_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_nyr_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_tbl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_car_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_col_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_sea_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_bos_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_cgy_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_min_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_ott_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_det_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_fla_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_stl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_phi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_vgk_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_cbj_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251125_dal_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-25", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_van_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_nyr_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_tor_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_min_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_sjs_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_nsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_phi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_stl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_bos_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_buf_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_dal_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_cgy_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_mtl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_ott_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_wpg_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_lak_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_nyr_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_njd_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_wpg_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_pit_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_nsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_ari_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_tbl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_cgy_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_col_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_phi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_van_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_ott_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_mtl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_tor_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_det_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_mtl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_van_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_buf_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_phi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_wpg_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_tbl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_tor_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_edm_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_ari_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_sjs_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_cgy_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_ana_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_ott_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_wsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_wpg_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_cbj_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_pit_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_ari_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_ana_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_van_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_bos_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_min_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_tor_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_wsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_ott_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_cgy_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_tbl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_dal_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_chi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_ari_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_wpg_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_dal_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_buf_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_wsh_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_stl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_tor_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_det_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_min_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_sea_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_nsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_chi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_col_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_nyr_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_pit_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_wsh_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_sjs_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_vgk_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_ari_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_buf_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_njd_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_nsh_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_ari_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_wpg_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_cbj_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_chi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_col_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_stl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_det_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_nyi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_mtl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_min_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_chi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_sjs_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_pit_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_nyi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_stl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_vgk_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_col_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_cbj_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_buf_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_min_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_tbl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_lak_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_det_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_cbj_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_buf_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_tbl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_col_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_vgk_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_njd_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_sjs_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_ana_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_bos_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_dal_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_det_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_nyr_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_lak_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_fla_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_ott_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_fla_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_det_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_dal_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_tbl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_stl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_ana_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_vgk_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_mtl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_sjs_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_buf_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_bos_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_car_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251212_chi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-12", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251212_sea_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_vgk_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_det_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_nsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_fla_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_cgy_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_ott_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_ana_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_tbl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_mtl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_car_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_sjs_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_edm_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_wsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_phi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_bos_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_edm_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_van_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_ari_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_buf_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_lak_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_ana_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_nsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_fla_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_ott_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_ari_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_ana_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_nyi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_wsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_phi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_van_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_edm_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_col_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_cgy_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_chi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_ari_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_lak_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_car_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_wpg_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_njd_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_edm_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_phi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_min_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_sea_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_chi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_pit_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_dal_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_nyr_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_lak_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_tor_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_dal_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_wpg_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_car_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_van_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_njd_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_cbj_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_van_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_nyi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_vgk_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_stl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_edm_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_pit_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_tor_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_phi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_chi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_sea_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_car_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_det_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_ott_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_tor_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_wsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_vgk_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_col_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_buf_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_nyr_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_mtl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_wpg_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_sea_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_cbj_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_van_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_stl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_mtl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_fla_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_phi_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_ari_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_dal_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_cgy_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_sea_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_nsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_njd_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_buf_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_pit_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_sjs_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_nyr_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_bos_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_det_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_edm_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_chi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_tbl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_ana_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_wsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_nyr_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_nsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_ott_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_sjs_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_col_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_min_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_nyi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_pit_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_tor_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_phi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_mtl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_sjs_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_nyr_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_bos_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_lak_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_wsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_cbj_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_van_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_buf_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_nsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_min_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_edm_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_nyi_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_mtl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_car_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_njd_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_phi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_tbl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_njd_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_phi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_stl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_buf_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_wpg_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_bos_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_min_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_nsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_nyr_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_mtl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_dal_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_tbl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_ari_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_wsh_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_det_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_nsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_wpg_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_min_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_nyr_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_vgk_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_sea_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_col_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_buf_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_nsh_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_pit_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_phi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_min_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_ari_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_tor_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_wpg_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_tbl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_mtl_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_bos_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_chi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_pit_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_vgk_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_mtl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_col_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_car_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_sea_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_min_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_ari_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_det_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_ana_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_van_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_dal_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_nsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_njd_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_ana_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_bos_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_cbj_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_col_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_fla_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_vgk_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_stl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_sjs_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_cgy_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_ott_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_dal_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_cgy_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_ana_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_ott_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_van_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_fla_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_nyi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_buf_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_tor_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_njd_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_min_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_cbj_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_edm_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_wsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_stl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_lak_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_nyr_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_ana_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_sea_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_cbj_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_lak_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_nyi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_det_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_chi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_fla_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_tbl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_cgy_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_dal_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_van_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_stl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_pit_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_wsh_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_vgk_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_cbj_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_njd_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_fla_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_edm_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_tor_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_car_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_dal_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_njd_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_van_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_sea_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_tbl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_dal_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_det_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_cgy_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_edm_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_van_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_tbl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_car_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_tor_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_nyi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_mtl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_phi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_vgk_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_sea_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_ott_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_sea_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_mtl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_van_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_cgy_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_nyi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_wpg_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_phi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_dal_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_tor_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_sjs_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_fla_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_nsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_sjs_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_ana_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_tbl_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_lak_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_min_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nyi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_bos_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_car_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_mtl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nyr_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_cbj_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_sea_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_edm_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_tor_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_fla_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_tbl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_ott_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_stl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_nyr_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_buf_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_njd_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_wpg_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_wsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_sjs_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_pit_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_min_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_nyi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_phi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_ott_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_bos_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_njd_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_nyr_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_min_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_buf_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_sjs_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_stl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_pit_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_ana_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_nyi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_det_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_phi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_wsh_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_vgk_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_chi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_dal_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_pit_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_det_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_buf_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_ott_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_fla_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_wsh_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_tbl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_phi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_stl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_ana_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_nyr_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_vgk_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_njd_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_mtl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_tbl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_wsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_fla_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_ari_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_buf_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_car_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_lak_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_det_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_ana_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_fla_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_vgk_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_njd_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_col_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_pit_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_lak_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_ana_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_bos_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_nyi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_ari_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_nsh_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_lak_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_ari_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_chi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_vgk_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_wpg_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_wsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_dal_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_buf_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_sjs_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_phi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_nyr_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_col_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_phi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_lak_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_ari_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_wsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_sjs_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_cgy_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_col_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_nsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_nyi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_chi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_tor_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_fla_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_wpg_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_ana_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_dal_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260130_cbj_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_mtl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_sjs_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_col_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_min_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_wpg_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_nsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_njd_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_lak_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_nyr_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_cbj_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_dal_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_tor_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_sea_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_car_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_vgk_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_lak_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_bos_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_tor_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_sjs_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_det_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_wpg_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_buf_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_mtl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_stl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_ott_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_van_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_nyi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_sea_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_ott_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_tor_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_cbj_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_pit_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_wsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_buf_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_chi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_edm_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_sjs_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_stl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_bos_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_sea_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_min_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_det_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_van_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_mtl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_pit_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_nyi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_car_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_ott_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_fla_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_lak_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_nsh_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_edm_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_sea_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_vgk_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_buf_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_tor_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_col_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_wpg_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_phi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_cbj_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_tbl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_min_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_tor_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_edm_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_nyi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_chi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_phi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_det_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_njd_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_cgy_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_sea_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_wpg_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_buf_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_min_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_vgk_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_det_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_nyi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_chi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_nsh_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_cgy_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_wsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_pit_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_bos_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_van_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_edm_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_njd_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_buf_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_ott_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_cgy_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_stl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_fla_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_vgk_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_wpg_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_chi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_col_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_det_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_cbj_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_car_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_phi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_dal_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_col_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_pit_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_vgk_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_nsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_dal_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_ott_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_tbl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_fla_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_mtl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_chi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_ari_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_nyi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_vgk_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_tor_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_stl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_car_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_fla_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_ott_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_nyi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_bos_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_tor_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_ari_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_buf_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_tbl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_mtl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_van_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_col_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_fla_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_car_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_stl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_min_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_wsh_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_ari_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_car_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_mtl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nyr_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_phi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_ott_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nyi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_tbl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_van_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_stl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_tbl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_min_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_chi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_det_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_bos_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_edm_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_ari_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_nyr_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_ott_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_cgy_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_lak_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_sjs_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_pit_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_edm_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_vgk_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_det_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_ari_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_tor_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_cgy_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_nsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_nyi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_cbj_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_ana_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260311_mtl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-11", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260311_wsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-11", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_sjs_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_wsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_stl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_edm_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_cbj_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_phi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_cgy_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_col_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_det_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_ana_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_chi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_nsh_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_pit_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_nyr_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260313_lak_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260313_edm_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_tor_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_det_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_nyr_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_sjs_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_lak_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_cgy_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_ana_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_cbj_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_car_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_pit_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_sea_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_chi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_col_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_bos_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_nsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_tor_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_ana_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_sjs_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_fla_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_stl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_pit_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_ari_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_cgy_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_bos_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_lak_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_car_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_min_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_sjs_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_bos_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_tbl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_nyi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_fla_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_buf_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_nsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_phi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_pit_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_stl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_dal_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_njd_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_ott_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_wpg_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_nyr_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_mtl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_fla_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_phi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_chi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_sea_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_nyi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_buf_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_tbl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_ari_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_fla_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_col_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_car_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_ana_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_njd_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_sea_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_bos_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_tbl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_buf_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_dal_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_nyi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_vgk_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_tor_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_wpg_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_phi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_stl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_buf_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_tbl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_nsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_vgk_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_cbj_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_wpg_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_car_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_lak_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_col_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260323_ott_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_tor_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_lak_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_njd_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_ott_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_sea_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_car_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_sjs_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_chi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_cbj_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_col_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_wsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_min_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_edm_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_ana_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_vgk_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260325_bos_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-25", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260325_nyr_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_ana_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_min_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_cbj_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_njd_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_dal_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_pit_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_chi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_sjs_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_sea_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_wsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_lak_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_edm_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_col_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260327_det_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-27", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260327_chi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-27", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_min_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_sea_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_njd_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_sjs_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_van_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_wpg_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_phi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ana_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ari_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_mtl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_fla_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_dal_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_tor_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ott_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_wsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_mtl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_bos_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_chi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_fla_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_dal_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_nsh_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_tor_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_cgy_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_pit_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_stl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_van_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_dal_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_nyi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_car_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_wpg_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_sea_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_ott_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_njd_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_det_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_mtl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_phi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_van_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_stl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_ana_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_cbj_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_wpg_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_chi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_bos_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_nsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_van_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_wsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_mtl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_buf_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_det_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_ari_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_tor_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_pit_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_cgy_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260403_stl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260403_phi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_cgy_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_nyi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_wpg_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_col_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_vgk_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_tor_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_mtl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_det_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_min_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_fla_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_chi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_nsh_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_bos_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_ari_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_buf_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_stl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_min_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_njd_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_wsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_car_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_bos_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_fla_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_tbl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_nsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_chi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_sea_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_nsh_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_bos_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_cgy_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_cbj_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_sea_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_fla_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_phi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_tbl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_col_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_edm_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_vgk_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_buf_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_edm_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_wsh_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_sjs_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_cbj_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_car_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_cgy_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_min_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_phi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_van_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_tbl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_pit_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_tor_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_fla_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_vgk_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_wpg_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_nsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_tbl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_stl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_vgk_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_nyr_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_njd_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_edm_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_cbj_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_min_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_ott_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_wsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_cgy_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_van_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_fla_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_car_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_phi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_van_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_bos_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_ari_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_ott_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_mtl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_pit_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_buf_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_col_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_nyr_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_sjs_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_car_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_lak_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_min_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_det_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_dal_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_wpg_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_njd_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_wsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_col_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_ana_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_car_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_mtl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_pit_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_wpg_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_lak_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_dal_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_sjs_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_det_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_tor_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_nyr_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_sea_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_lak_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_sea_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_van_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_ana_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_stl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_sjs_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + } +] \ No newline at end of file diff --git a/Scripts/data/stadium_aliases.json b/Scripts/data/stadium_aliases.json new file mode 100644 index 0000000..77d3819 --- /dev/null +++ b/Scripts/data/stadium_aliases.json @@ -0,0 +1,782 @@ +[ + { + "alias_name": "state farm arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "barclays center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "spectrum center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nba_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rocket mortgage fieldhouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase center", + "stadium_canonical_id": "stadium_nba_chase_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "toyota center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gainbridge fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "intuit dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fedexforum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kaseya center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fiserv forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "target center", + "stadium_canonical_id": "stadium_nba_target_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "smoothie king center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paycom center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kia center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "footprint center", + "stadium_canonical_id": "stadium_nba_footprint_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "moda center", + "stadium_canonical_id": "stadium_nba_moda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "golden 1 center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "frost bank center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "truist park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oriole park at camden yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fenway park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wrigley field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "guaranteed rate field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "great american ball park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "progressive field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "coors field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "comerica park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "minute maid park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kauffman stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "angel stadium", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dodger stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "loandepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american family field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "target field", + "stadium_canonical_id": "stadium_mlb_target_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citi field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "yankee stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sutter health park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citizens bank park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "pnc park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "petco park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oracle park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "busch stadium", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tropicana field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "globe life field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers centre", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nationals park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "honda center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "keybank center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "pnc arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nhl_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nationwide arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amerant bank arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "xcel energy center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bell centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bridgestone arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "prudential center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ubs arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canadian tire centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ppg paints arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sap center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "climate pledge arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "enterprise center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amalie arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canada life centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "daikin park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "enron field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2000-04-01", + "valid_until": "2002-02-28" + }, + { + "alias_name": "astros field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2002-03-01", + "valid_until": "2002-06-04" + }, + { + "alias_name": "rate field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "2024-01-01", + "valid_until": null + }, + { + "alias_name": "us cellular field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "2003-01-01", + "valid_until": "2016-08-24" + }, + { + "alias_name": "comiskey park ii", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "1991-04-01", + "valid_until": "2002-12-31" + }, + { + "alias_name": "new comiskey park", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "1991-04-01", + "valid_until": "2002-12-31" + }, + { + "alias_name": "suntrust park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": "2017-04-01", + "valid_until": "2020-01-13" + }, + { + "alias_name": "jacobs field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "the jake", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "miller park", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "valid_from": "2001-04-01", + "valid_until": "2020-12-31" + }, + { + "alias_name": "skydome", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "valid_from": "1989-06-01", + "valid_until": "2005-02-01" + }, + { + "alias_name": "marlins park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "valid_from": "2012-04-01", + "valid_until": "2021-03-31" + }, + { + "alias_name": "att park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2006-01-01", + "valid_until": "2019-01-08" + }, + { + "alias_name": "sbc park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2004-01-01", + "valid_until": "2005-12-31" + }, + { + "alias_name": "pac bell park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2000-04-01", + "valid_until": "2003-12-31" + }, + { + "alias_name": "choctaw stadium", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "valid_from": "2020-01-01", + "valid_until": null + }, + { + "alias_name": "philips arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": "1999-09-01", + "valid_until": "2018-06-25" + }, + { + "alias_name": "ftx arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "2021-06-01", + "valid_until": "2023-03-31" + }, + { + "alias_name": "american airlines arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "1999-12-01", + "valid_until": "2021-05-31" + }, + { + "alias_name": "bankers life fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "2011-01-01", + "valid_until": "2021-12-31" + }, + { + "alias_name": "conseco fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "1999-11-01", + "valid_until": "2010-12-31" + }, + { + "alias_name": "quicken loans arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "2005-08-01", + "valid_until": "2019-08-08" + }, + { + "alias_name": "gund arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "1994-10-01", + "valid_until": "2005-07-31" + }, + { + "alias_name": "amway center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": "2010-10-01", + "valid_until": "2023-07-12" + }, + { + "alias_name": "att center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": "2002-10-01", + "valid_until": "2023-10-01" + }, + { + "alias_name": "vivint arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2020-12-01", + "valid_until": "2023-07-01" + }, + { + "alias_name": "vivint smart home arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2015-11-01", + "valid_until": "2020-11-30" + }, + { + "alias_name": "energysolutions arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2006-11-01", + "valid_until": "2015-10-31" + }, + { + "alias_name": "fla live arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2021-10-01", + "valid_until": "2024-05-31" + }, + { + "alias_name": "bb&t center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2012-06-01", + "valid_until": "2021-09-30" + }, + { + "alias_name": "bankatlantic center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2005-10-01", + "valid_until": "2012-05-31" + }, + { + "alias_name": "keyarena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1995-01-01", + "valid_until": "2018-10-01" + }, + { + "alias_name": "seattle center coliseum", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1962-01-01", + "valid_until": "1994-12-31" + } +] \ No newline at end of file diff --git a/Scripts/data/stadiums_canonical.json b/Scripts/data/stadiums_canonical.json new file mode 100644 index 0000000..a12dc81 --- /dev/null +++ b/Scripts/data/stadiums_canonical.json @@ -0,0 +1,1290 @@ +[ + { + "canonical_id": "stadium_nba_state_farm_arena", + "name": "State Farm Arena", + "city": "Atlanta", + "state": "", + "latitude": 33.7573, + "longitude": -84.3963, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_barclays_center", + "name": "Barclays Center", + "city": "Brooklyn", + "state": "", + "latitude": 40.6826, + "longitude": -73.9754, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "BRK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_spectrum_center", + "name": "Spectrum Center", + "city": "Charlotte", + "state": "", + "latitude": 35.2251, + "longitude": -80.8392, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHO" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_united_center", + "name": "United Center", + "city": "Chicago", + "state": "", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "name": "Rocket Mortgage FieldHouse", + "city": "Cleveland", + "state": "", + "latitude": 41.4965, + "longitude": -81.6882, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DEN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_chase_center", + "name": "Chase Center", + "city": "San Francisco", + "state": "", + "latitude": 37.768, + "longitude": -122.3879, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "GSW" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_toyota_center", + "name": "Toyota Center", + "city": "Houston", + "state": "", + "latitude": 29.7508, + "longitude": -95.3621, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_gainbridge_fieldhouse", + "name": "Gainbridge Fieldhouse", + "city": "Indianapolis", + "state": "", + "latitude": 39.764, + "longitude": -86.1555, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "IND" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_intuit_dome", + "name": "Intuit Dome", + "city": "Inglewood", + "state": "", + "latitude": 33.9425, + "longitude": -118.3419, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "LAC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "LAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_fedexforum", + "name": "FedExForum", + "city": "Memphis", + "state": "", + "latitude": 35.1382, + "longitude": -90.0506, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MEM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_kaseya_center", + "name": "Kaseya Center", + "city": "Miami", + "state": "", + "latitude": 25.7814, + "longitude": -80.187, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_fiserv_forum", + "name": "Fiserv Forum", + "city": "Milwaukee", + "state": "", + "latitude": 43.0451, + "longitude": -87.9174, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_target_center", + "name": "Target Center", + "city": "Minneapolis", + "state": "", + "latitude": 44.9795, + "longitude": -93.2761, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_smoothie_king_center", + "name": "Smoothie King Center", + "city": "New Orleans", + "state": "", + "latitude": 29.949, + "longitude": -90.0821, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "NOP" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "NYK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_paycom_center", + "name": "Paycom Center", + "city": "Oklahoma City", + "state": "", + "latitude": 35.4634, + "longitude": -97.5151, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "OKC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_kia_center", + "name": "Kia Center", + "city": "Orlando", + "state": "", + "latitude": 28.5392, + "longitude": -81.3839, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "ORL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_footprint_center", + "name": "Footprint Center", + "city": "Phoenix", + "state": "", + "latitude": 33.4457, + "longitude": -112.0712, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHO" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_moda_center", + "name": "Moda Center", + "city": "Portland", + "state": "", + "latitude": 45.5316, + "longitude": -122.6668, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "POR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_golden_1_center", + "name": "Golden 1 Center", + "city": "Sacramento", + "state": "", + "latitude": 38.5802, + "longitude": -121.4997, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_frost_bank_center", + "name": "Frost Bank Center", + "city": "San Antonio", + "state": "", + "latitude": 29.427, + "longitude": -98.4375, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "UTA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "", + "latitude": 38.8982, + "longitude": -77.0209, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_chase_field", + "name": "Chase Field", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4453, + "longitude": -112.0667, + "capacity": 48686, + "sport": "MLB", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_truist_park", + "name": "Truist Park", + "city": "Atlanta", + "state": "GA", + "latitude": 33.8907, + "longitude": -84.4678, + "capacity": 41084, + "sport": "MLB", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "name": "Oriole Park at Camden Yards", + "city": "Baltimore", + "state": "MD", + "latitude": 39.2838, + "longitude": -76.6218, + "capacity": 45971, + "sport": "MLB", + "primary_team_abbrevs": [ + "BAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_fenway_park", + "name": "Fenway Park", + "city": "Boston", + "state": "MA", + "latitude": 42.3467, + "longitude": -71.0972, + "capacity": 37755, + "sport": "MLB", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_wrigley_field", + "name": "Wrigley Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.9484, + "longitude": -87.6553, + "capacity": 41649, + "sport": "MLB", + "primary_team_abbrevs": [ + "CHC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_guaranteed_rate_field", + "name": "Guaranteed Rate Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.8299, + "longitude": -87.6338, + "capacity": 40615, + "sport": "MLB", + "primary_team_abbrevs": [ + "CHW" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_great_american_ball_park", + "name": "Great American Ball Park", + "city": "Cincinnati", + "state": "OH", + "latitude": 39.0979, + "longitude": -84.5082, + "capacity": 42319, + "sport": "MLB", + "primary_team_abbrevs": [ + "CIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_progressive_field", + "name": "Progressive Field", + "city": "Cleveland", + "state": "OH", + "latitude": 41.4962, + "longitude": -81.6852, + "capacity": 34830, + "sport": "MLB", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_coors_field", + "name": "Coors Field", + "city": "Denver", + "state": "CO", + "latitude": 39.7559, + "longitude": -104.9942, + "capacity": 50144, + "sport": "MLB", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_comerica_park", + "name": "Comerica Park", + "city": "Detroit", + "state": "MI", + "latitude": 42.339, + "longitude": -83.0485, + "capacity": 41083, + "sport": "MLB", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_minute_maid_park", + "name": "Minute Maid Park", + "city": "Houston", + "state": "TX", + "latitude": 29.7573, + "longitude": -95.3555, + "capacity": 41168, + "sport": "MLB", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_kauffman_stadium", + "name": "Kauffman Stadium", + "city": "Kansas City", + "state": "MO", + "latitude": 39.0517, + "longitude": -94.4803, + "capacity": 37903, + "sport": "MLB", + "primary_team_abbrevs": [ + "KCR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_angel_stadium", + "name": "Angel Stadium", + "city": "Anaheim", + "state": "CA", + "latitude": 33.8003, + "longitude": -117.8827, + "capacity": 45517, + "sport": "MLB", + "primary_team_abbrevs": [ + "LAA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_dodger_stadium", + "name": "Dodger Stadium", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0739, + "longitude": -118.24, + "capacity": 56000, + "sport": "MLB", + "primary_team_abbrevs": [ + "LAD" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_loandepot_park", + "name": "LoanDepot Park", + "city": "Miami", + "state": "FL", + "latitude": 25.7781, + "longitude": -80.2196, + "capacity": 36742, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_american_family_field", + "name": "American Family Field", + "city": "Milwaukee", + "state": "WI", + "latitude": 43.028, + "longitude": -87.9712, + "capacity": 41900, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_target_field", + "name": "Target Field", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9817, + "longitude": -93.2776, + "capacity": 38544, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_citi_field", + "name": "Citi Field", + "city": "New York", + "state": "NY", + "latitude": 40.7571, + "longitude": -73.8458, + "capacity": 41922, + "sport": "MLB", + "primary_team_abbrevs": [ + "NYM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_yankee_stadium", + "name": "Yankee Stadium", + "city": "New York", + "state": "NY", + "latitude": 40.8296, + "longitude": -73.9262, + "capacity": 46537, + "sport": "MLB", + "primary_team_abbrevs": [ + "NYY" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_sutter_health_park", + "name": "Sutter Health Park", + "city": "Sacramento", + "state": "CA", + "latitude": 38.5802, + "longitude": -121.5097, + "capacity": 14014, + "sport": "MLB", + "primary_team_abbrevs": [ + "OAK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_citizens_bank_park", + "name": "Citizens Bank Park", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9061, + "longitude": -75.1665, + "capacity": 42792, + "sport": "MLB", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_pnc_park", + "name": "PNC Park", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4469, + "longitude": -80.0057, + "capacity": 38362, + "sport": "MLB", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_petco_park", + "name": "Petco Park", + "city": "San Diego", + "state": "CA", + "latitude": 32.7076, + "longitude": -117.157, + "capacity": 40209, + "sport": "MLB", + "primary_team_abbrevs": [ + "SDP" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_oracle_park", + "name": "Oracle Park", + "city": "San Francisco", + "state": "CA", + "latitude": 37.7786, + "longitude": -122.3893, + "capacity": 41265, + "sport": "MLB", + "primary_team_abbrevs": [ + "SFG" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_tmobile_park", + "name": "T-Mobile Park", + "city": "Seattle", + "state": "WA", + "latitude": 47.5914, + "longitude": -122.3325, + "capacity": 47929, + "sport": "MLB", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_busch_stadium", + "name": "Busch Stadium", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6226, + "longitude": -90.1928, + "capacity": 45494, + "sport": "MLB", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_tropicana_field", + "name": "Tropicana Field", + "city": "St. Petersburg", + "state": "FL", + "latitude": 27.7682, + "longitude": -82.6534, + "capacity": 25000, + "sport": "MLB", + "primary_team_abbrevs": [ + "TBR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_globe_life_field", + "name": "Globe Life Field", + "city": "Arlington", + "state": "TX", + "latitude": 32.7473, + "longitude": -97.0845, + "capacity": 40300, + "sport": "MLB", + "primary_team_abbrevs": [ + "TEX" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_rogers_centre", + "name": "Rogers Centre", + "city": "Toronto", + "state": "ON", + "latitude": 43.6414, + "longitude": -79.3894, + "capacity": 49282, + "sport": "MLB", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_nationals_park", + "name": "Nationals Park", + "city": "Washington", + "state": "DC", + "latitude": 38.873, + "longitude": -77.0074, + "capacity": 41339, + "sport": "MLB", + "primary_team_abbrevs": [ + "WSN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_honda_center", + "name": "Honda Center", + "city": "Anaheim", + "state": "CA", + "latitude": 33.8078, + "longitude": -117.8765, + "capacity": 17174, + "sport": "NHL", + "primary_team_abbrevs": [ + "ANA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "UT", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 18306, + "sport": "NHL", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "MA", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 17565, + "sport": "NHL", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_keybank_center", + "name": "KeyBank Center", + "city": "Buffalo", + "state": "NY", + "latitude": 42.875, + "longitude": -78.8764, + "capacity": 19070, + "sport": "NHL", + "primary_team_abbrevs": [ + "BUF" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_scotiabank_saddledome", + "name": "Scotiabank Saddledome", + "city": "Calgary", + "state": "AB", + "latitude": 51.0374, + "longitude": -114.0519, + "capacity": 19289, + "sport": "NHL", + "primary_team_abbrevs": [ + "CGY" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_pnc_arena", + "name": "PNC Arena", + "city": "Raleigh", + "state": "NC", + "latitude": 35.8034, + "longitude": -78.722, + "capacity": 18680, + "sport": "NHL", + "primary_team_abbrevs": [ + "CAR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_united_center", + "name": "United Center", + "city": "Chicago", + "state": "IL", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 19717, + "sport": "NHL", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "CO", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 18007, + "sport": "NHL", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_nationwide_arena", + "name": "Nationwide Arena", + "city": "Columbus", + "state": "OH", + "latitude": 39.9693, + "longitude": -83.0061, + "capacity": 18500, + "sport": "NHL", + "primary_team_abbrevs": [ + "CBJ" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "TX", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 18532, + "sport": "NHL", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "MI", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 19515, + "sport": "NHL", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_rogers_place", + "name": "Rogers Place", + "city": "Edmonton", + "state": "AB", + "latitude": 53.5469, + "longitude": -113.4978, + "capacity": 18347, + "sport": "NHL", + "primary_team_abbrevs": [ + "EDM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_amerant_bank_arena", + "name": "Amerant Bank Arena", + "city": "Sunrise", + "state": "FL", + "latitude": 26.1584, + "longitude": -80.3256, + "capacity": 19250, + "sport": "NHL", + "primary_team_abbrevs": [ + "FLA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 18230, + "sport": "NHL", + "primary_team_abbrevs": [ + "LAK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_xcel_energy_center", + "name": "Xcel Energy Center", + "city": "St. Paul", + "state": "MN", + "latitude": 44.9448, + "longitude": -93.101, + "capacity": 17954, + "sport": "NHL", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_bell_centre", + "name": "Bell Centre", + "city": "Montreal", + "state": "QC", + "latitude": 45.4961, + "longitude": -73.5693, + "capacity": 21302, + "sport": "NHL", + "primary_team_abbrevs": [ + "MTL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_bridgestone_arena", + "name": "Bridgestone Arena", + "city": "Nashville", + "state": "TN", + "latitude": 36.1592, + "longitude": -86.7785, + "capacity": 17159, + "sport": "NHL", + "primary_team_abbrevs": [ + "NSH" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_prudential_center", + "name": "Prudential Center", + "city": "Newark", + "state": "NJ", + "latitude": 40.7334, + "longitude": -74.1712, + "capacity": 16514, + "sport": "NHL", + "primary_team_abbrevs": [ + "NJD" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ubs_arena", + "name": "UBS Arena", + "city": "Elmont", + "state": "NY", + "latitude": 40.7161, + "longitude": -73.7246, + "capacity": 17255, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "NY", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 18006, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_canadian_tire_centre", + "name": "Canadian Tire Centre", + "city": "Ottawa", + "state": "ON", + "latitude": 45.2969, + "longitude": -75.9272, + "capacity": 18652, + "sport": "NHL", + "primary_team_abbrevs": [ + "OTT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 19543, + "sport": "NHL", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ppg_paints_arena", + "name": "PPG Paints Arena", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4395, + "longitude": -79.9892, + "capacity": 18387, + "sport": "NHL", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_sap_center", + "name": "SAP Center", + "city": "San Jose", + "state": "CA", + "latitude": 37.3327, + "longitude": -121.901, + "capacity": 17562, + "sport": "NHL", + "primary_team_abbrevs": [ + "SJS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_climate_pledge_arena", + "name": "Climate Pledge Arena", + "city": "Seattle", + "state": "WA", + "latitude": 47.6221, + "longitude": -122.354, + "capacity": 17100, + "sport": "NHL", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_enterprise_center", + "name": "Enterprise Center", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6268, + "longitude": -90.2025, + "capacity": 18096, + "sport": "NHL", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_amalie_arena", + "name": "Amalie Arena", + "city": "Tampa", + "state": "FL", + "latitude": 27.9426, + "longitude": -82.4519, + "capacity": 19092, + "sport": "NHL", + "primary_team_abbrevs": [ + "TBL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "ON", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 18819, + "sport": "NHL", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_rogers_arena", + "name": "Rogers Arena", + "city": "Vancouver", + "state": "BC", + "latitude": 49.2778, + "longitude": -123.1089, + "capacity": 18910, + "sport": "NHL", + "primary_team_abbrevs": [ + "VAN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_tmobile_arena", + "name": "T-Mobile Arena", + "city": "Las Vegas", + "state": "NV", + "latitude": 36.1028, + "longitude": -115.1784, + "capacity": 17500, + "sport": "NHL", + "primary_team_abbrevs": [ + "VGK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "DC", + "latitude": 38.8982, + "longitude": -77.0209, + "capacity": 18573, + "sport": "NHL", + "primary_team_abbrevs": [ + "WSH" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_canada_life_centre", + "name": "Canada Life Centre", + "city": "Winnipeg", + "state": "MB", + "latitude": 49.8928, + "longitude": -97.1436, + "capacity": 15321, + "sport": "NHL", + "primary_team_abbrevs": [ + "WPG" + ], + "year_opened": null + } +] \ No newline at end of file diff --git a/Scripts/data/teams_canonical.json b/Scripts/data/teams_canonical.json new file mode 100644 index 0000000..68ee9c4 --- /dev/null +++ b/Scripts/data/teams_canonical.json @@ -0,0 +1,1106 @@ +[ + { + "canonical_id": "team_nba_atl", + "name": "Atlanta Hawks", + "abbreviation": "ATL", + "sport": "NBA", + "city": "Atlanta", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_bos", + "name": "Boston Celtics", + "abbreviation": "BOS", + "sport": "NBA", + "city": "Boston", + "stadium_canonical_id": "stadium_nba_td_garden", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_brk", + "name": "Brooklyn Nets", + "abbreviation": "BRK", + "sport": "NBA", + "city": "Brooklyn", + "stadium_canonical_id": "stadium_nba_barclays_center", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_cho", + "name": "Charlotte Hornets", + "abbreviation": "CHO", + "sport": "NBA", + "city": "Charlotte", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_chi", + "name": "Chicago Bulls", + "abbreviation": "CHI", + "sport": "NBA", + "city": "Chicago", + "stadium_canonical_id": "stadium_nba_united_center", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_cle", + "name": "Cleveland Cavaliers", + "abbreviation": "CLE", + "sport": "NBA", + "city": "Cleveland", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_dal", + "name": "Dallas Mavericks", + "abbreviation": "DAL", + "sport": "NBA", + "city": "Dallas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_den", + "name": "Denver Nuggets", + "abbreviation": "DEN", + "sport": "NBA", + "city": "Denver", + "stadium_canonical_id": "stadium_nba_ball_arena", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_det", + "name": "Detroit Pistons", + "abbreviation": "DET", + "sport": "NBA", + "city": "Detroit", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_gsw", + "name": "Golden State Warriors", + "abbreviation": "GSW", + "sport": "NBA", + "city": "San Francisco", + "stadium_canonical_id": "stadium_nba_chase_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_hou", + "name": "Houston Rockets", + "abbreviation": "HOU", + "sport": "NBA", + "city": "Houston", + "stadium_canonical_id": "stadium_nba_toyota_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_ind", + "name": "Indiana Pacers", + "abbreviation": "IND", + "sport": "NBA", + "city": "Indianapolis", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_lac", + "name": "Los Angeles Clippers", + "abbreviation": "LAC", + "sport": "NBA", + "city": "Inglewood", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_lal", + "name": "Los Angeles Lakers", + "abbreviation": "LAL", + "sport": "NBA", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mem", + "name": "Memphis Grizzlies", + "abbreviation": "MEM", + "sport": "NBA", + "city": "Memphis", + "stadium_canonical_id": "stadium_nba_fedexforum", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mia", + "name": "Miami Heat", + "abbreviation": "MIA", + "sport": "NBA", + "city": "Miami", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mil", + "name": "Milwaukee Bucks", + "abbreviation": "MIL", + "sport": "NBA", + "city": "Milwaukee", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_min", + "name": "Minnesota Timberwolves", + "abbreviation": "MIN", + "sport": "NBA", + "city": "Minneapolis", + "stadium_canonical_id": "stadium_nba_target_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_nop", + "name": "New Orleans Pelicans", + "abbreviation": "NOP", + "sport": "NBA", + "city": "New Orleans", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_nyk", + "name": "New York Knicks", + "abbreviation": "NYK", + "sport": "NBA", + "city": "New York", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_okc", + "name": "Oklahoma City Thunder", + "abbreviation": "OKC", + "sport": "NBA", + "city": "Oklahoma City", + "stadium_canonical_id": "stadium_nba_paycom_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_orl", + "name": "Orlando Magic", + "abbreviation": "ORL", + "sport": "NBA", + "city": "Orlando", + "stadium_canonical_id": "stadium_nba_kia_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_phi", + "name": "Philadelphia 76ers", + "abbreviation": "PHI", + "sport": "NBA", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_pho", + "name": "Phoenix Suns", + "abbreviation": "PHO", + "sport": "NBA", + "city": "Phoenix", + "stadium_canonical_id": "stadium_nba_footprint_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_por", + "name": "Portland Trail Blazers", + "abbreviation": "POR", + "sport": "NBA", + "city": "Portland", + "stadium_canonical_id": "stadium_nba_moda_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_sac", + "name": "Sacramento Kings", + "abbreviation": "SAC", + "sport": "NBA", + "city": "Sacramento", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_sas", + "name": "San Antonio Spurs", + "abbreviation": "SAS", + "sport": "NBA", + "city": "San Antonio", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_tor", + "name": "Toronto Raptors", + "abbreviation": "TOR", + "sport": "NBA", + "city": "Toronto", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_uta", + "name": "Utah Jazz", + "abbreviation": "UTA", + "sport": "NBA", + "city": "Salt Lake City", + "stadium_canonical_id": "stadium_nba_delta_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_was", + "name": "Washington Wizards", + "abbreviation": "WAS", + "sport": "NBA", + "city": "Washington", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_ari", + "name": "Arizona Diamondbacks", + "abbreviation": "ARI", + "sport": "MLB", + "city": "Phoenix", + "stadium_canonical_id": "stadium_mlb_chase_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_atl", + "name": "Atlanta Braves", + "abbreviation": "ATL", + "sport": "MLB", + "city": "Atlanta", + "stadium_canonical_id": "stadium_mlb_truist_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_bal", + "name": "Baltimore Orioles", + "abbreviation": "BAL", + "sport": "MLB", + "city": "Baltimore", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_bos", + "name": "Boston Red Sox", + "abbreviation": "BOS", + "sport": "MLB", + "city": "Boston", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_chc", + "name": "Chicago Cubs", + "abbreviation": "CHC", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_chw", + "name": "Chicago White Sox", + "abbreviation": "CHW", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_cin", + "name": "Cincinnati Reds", + "abbreviation": "CIN", + "sport": "MLB", + "city": "Cincinnati", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_cle", + "name": "Cleveland Guardians", + "abbreviation": "CLE", + "sport": "MLB", + "city": "Cleveland", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_col", + "name": "Colorado Rockies", + "abbreviation": "COL", + "sport": "MLB", + "city": "Denver", + "stadium_canonical_id": "stadium_mlb_coors_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_det", + "name": "Detroit Tigers", + "abbreviation": "DET", + "sport": "MLB", + "city": "Detroit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_hou", + "name": "Houston Astros", + "abbreviation": "HOU", + "sport": "MLB", + "city": "Houston", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_kcr", + "name": "Kansas City Royals", + "abbreviation": "KCR", + "sport": "MLB", + "city": "Kansas City", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_laa", + "name": "Los Angeles Angels", + "abbreviation": "LAA", + "sport": "MLB", + "city": "Anaheim", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_lad", + "name": "Los Angeles Dodgers", + "abbreviation": "LAD", + "sport": "MLB", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_mia", + "name": "Miami Marlins", + "abbreviation": "MIA", + "sport": "MLB", + "city": "Miami", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_mil", + "name": "Milwaukee Brewers", + "abbreviation": "MIL", + "sport": "MLB", + "city": "Milwaukee", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_min", + "name": "Minnesota Twins", + "abbreviation": "MIN", + "sport": "MLB", + "city": "Minneapolis", + "stadium_canonical_id": "stadium_mlb_target_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_nym", + "name": "New York Mets", + "abbreviation": "NYM", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_citi_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_nyy", + "name": "New York Yankees", + "abbreviation": "NYY", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_oak", + "name": "Oakland Athletics", + "abbreviation": "OAK", + "sport": "MLB", + "city": "Sacramento", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_phi", + "name": "Philadelphia Phillies", + "abbreviation": "PHI", + "sport": "MLB", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_pit", + "name": "Pittsburgh Pirates", + "abbreviation": "PIT", + "sport": "MLB", + "city": "Pittsburgh", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sdp", + "name": "San Diego Padres", + "abbreviation": "SDP", + "sport": "MLB", + "city": "San Diego", + "stadium_canonical_id": "stadium_mlb_petco_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sfg", + "name": "San Francisco Giants", + "abbreviation": "SFG", + "sport": "MLB", + "city": "San Francisco", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sea", + "name": "Seattle Mariners", + "abbreviation": "SEA", + "sport": "MLB", + "city": "Seattle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_stl", + "name": "St. Louis Cardinals", + "abbreviation": "STL", + "sport": "MLB", + "city": "St. Louis", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tbr", + "name": "Tampa Bay Rays", + "abbreviation": "TBR", + "sport": "MLB", + "city": "St. Petersburg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tex", + "name": "Texas Rangers", + "abbreviation": "TEX", + "sport": "MLB", + "city": "Arlington", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tor", + "name": "Toronto Blue Jays", + "abbreviation": "TOR", + "sport": "MLB", + "city": "Toronto", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_wsn", + "name": "Washington Nationals", + "abbreviation": "WSN", + "sport": "MLB", + "city": "Washington", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ana", + "name": "Anaheim Ducks", + "abbreviation": "ANA", + "sport": "NHL", + "city": "Anaheim", + "stadium_canonical_id": "stadium_nhl_honda_center", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ari", + "name": "Utah Hockey Club", + "abbreviation": "ARI", + "sport": "NHL", + "city": "Salt Lake City", + "stadium_canonical_id": "stadium_nhl_delta_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_bos", + "name": "Boston Bruins", + "abbreviation": "BOS", + "sport": "NHL", + "city": "Boston", + "stadium_canonical_id": "stadium_nhl_td_garden", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_buf", + "name": "Buffalo Sabres", + "abbreviation": "BUF", + "sport": "NHL", + "city": "Buffalo", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_cgy", + "name": "Calgary Flames", + "abbreviation": "CGY", + "sport": "NHL", + "city": "Calgary", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_car", + "name": "Carolina Hurricanes", + "abbreviation": "CAR", + "sport": "NHL", + "city": "Raleigh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_chi", + "name": "Chicago Blackhawks", + "abbreviation": "CHI", + "sport": "NHL", + "city": "Chicago", + "stadium_canonical_id": "stadium_nhl_united_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_col", + "name": "Colorado Avalanche", + "abbreviation": "COL", + "sport": "NHL", + "city": "Denver", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_cbj", + "name": "Columbus Blue Jackets", + "abbreviation": "CBJ", + "sport": "NHL", + "city": "Columbus", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_dal", + "name": "Dallas Stars", + "abbreviation": "DAL", + "sport": "NHL", + "city": "Dallas", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_det", + "name": "Detroit Red Wings", + "abbreviation": "DET", + "sport": "NHL", + "city": "Detroit", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_edm", + "name": "Edmonton Oilers", + "abbreviation": "EDM", + "sport": "NHL", + "city": "Edmonton", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_fla", + "name": "Florida Panthers", + "abbreviation": "FLA", + "sport": "NHL", + "city": "Sunrise", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_lak", + "name": "Los Angeles Kings", + "abbreviation": "LAK", + "sport": "NHL", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_min", + "name": "Minnesota Wild", + "abbreviation": "MIN", + "sport": "NHL", + "city": "St. Paul", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_mtl", + "name": "Montreal Canadiens", + "abbreviation": "MTL", + "sport": "NHL", + "city": "Montreal", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nsh", + "name": "Nashville Predators", + "abbreviation": "NSH", + "sport": "NHL", + "city": "Nashville", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_njd", + "name": "New Jersey Devils", + "abbreviation": "NJD", + "sport": "NHL", + "city": "Newark", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nyi", + "name": "New York Islanders", + "abbreviation": "NYI", + "sport": "NHL", + "city": "Elmont", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nyr", + "name": "New York Rangers", + "abbreviation": "NYR", + "sport": "NHL", + "city": "New York", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ott", + "name": "Ottawa Senators", + "abbreviation": "OTT", + "sport": "NHL", + "city": "Ottawa", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_phi", + "name": "Philadelphia Flyers", + "abbreviation": "PHI", + "sport": "NHL", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_pit", + "name": "Pittsburgh Penguins", + "abbreviation": "PIT", + "sport": "NHL", + "city": "Pittsburgh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_sjs", + "name": "San Jose Sharks", + "abbreviation": "SJS", + "sport": "NHL", + "city": "San Jose", + "stadium_canonical_id": "stadium_nhl_sap_center", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_sea", + "name": "Seattle Kraken", + "abbreviation": "SEA", + "sport": "NHL", + "city": "Seattle", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_stl", + "name": "St. Louis Blues", + "abbreviation": "STL", + "sport": "NHL", + "city": "St. Louis", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_tbl", + "name": "Tampa Bay Lightning", + "abbreviation": "TBL", + "sport": "NHL", + "city": "Tampa", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_tor", + "name": "Toronto Maple Leafs", + "abbreviation": "TOR", + "sport": "NHL", + "city": "Toronto", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_van", + "name": "Vancouver Canucks", + "abbreviation": "VAN", + "sport": "NHL", + "city": "Vancouver", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_vgk", + "name": "Vegas Golden Knights", + "abbreviation": "VGK", + "sport": "NHL", + "city": "Las Vegas", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_wsh", + "name": "Washington Capitals", + "abbreviation": "WSH", + "sport": "NHL", + "city": "Washington", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_wpg", + "name": "Winnipeg Jets", + "abbreviation": "WPG", + "sport": "NHL", + "city": "Winnipeg", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + } +] \ No newline at end of file diff --git a/Scripts/run_canonicalization_pipeline.py b/Scripts/run_canonicalization_pipeline.py new file mode 100644 index 0000000..ea0ee1f --- /dev/null +++ b/Scripts/run_canonicalization_pipeline.py @@ -0,0 +1,412 @@ +#!/usr/bin/env python3 +""" +SportsTime Canonicalization Pipeline +==================================== +Master script that orchestrates all data canonicalization steps. + +This is the NEW pipeline that performs local identity resolution +BEFORE any CloudKit upload. + +Pipeline Stages: +1. SCRAPE: Fetch raw data from web sources +2. CANONICALIZE STADIUMS: Generate canonical stadium IDs and aliases +3. CANONICALIZE TEAMS: Match teams to stadiums, generate canonical IDs +4. CANONICALIZE GAMES: Resolve all references, generate canonical IDs +5. VALIDATE: Verify all data is internally consistent +6. (Optional) UPLOAD: CloudKit upload (separate script) + +Usage: + python run_canonicalization_pipeline.py # Full pipeline + python run_canonicalization_pipeline.py --season 2026 # Specify season + python run_canonicalization_pipeline.py --skip-scrape # Use existing raw data + python run_canonicalization_pipeline.py --verbose # Detailed output +""" + +import argparse +import json +import sys +from datetime import datetime +from pathlib import Path +from dataclasses import dataclass, asdict + +# Import pipeline components +from scrape_schedules import ( + scrape_nba_basketball_reference, + scrape_mlb_statsapi, + scrape_nhl_hockey_reference, + generate_stadiums_from_teams, + assign_stable_ids, + export_to_json, +) +from canonicalize_stadiums import ( + canonicalize_stadiums, + add_historical_aliases, + deduplicate_aliases, +) +from canonicalize_teams import canonicalize_all_teams +from canonicalize_games import canonicalize_games +from validate_canonical import validate_canonical_data + + +@dataclass +class PipelineResult: + """Result of the full canonicalization pipeline.""" + success: bool + stadiums_count: int + teams_count: int + games_count: int + aliases_count: int + validation_errors: int + validation_warnings: int + duration_seconds: float + output_dir: str + + +def print_header(text: str): + """Print a formatted header.""" + print() + print("=" * 70) + print(f" {text}") + print("=" * 70) + + +def print_section(text: str): + """Print a section header.""" + print() + print(f"--- {text} ---") + + +def run_pipeline( + season: int = 2026, + output_dir: Path = Path('./data'), + skip_scrape: bool = False, + validate: bool = True, + verbose: bool = False, +) -> PipelineResult: + """ + Run the complete canonicalization pipeline. + + Args: + season: Season year (e.g., 2026) + output_dir: Directory for output files + skip_scrape: Skip scraping, use existing raw data + validate: Run validation step + verbose: Print detailed output + + Returns: + PipelineResult with statistics + """ + start_time = datetime.now() + output_dir.mkdir(parents=True, exist_ok=True) + + # ========================================================================= + # STAGE 1: SCRAPE RAW DATA + # ========================================================================= + + if not skip_scrape: + print_header("STAGE 1: SCRAPING RAW DATA") + + all_games = [] + all_stadiums = [] + + # Scrape stadiums from team mappings + print_section("Stadiums") + all_stadiums = generate_stadiums_from_teams() + print(f" Generated {len(all_stadiums)} stadiums from team data") + + # Scrape NBA + print_section(f"NBA {season}") + nba_games = scrape_nba_basketball_reference(season) + nba_season = f"{season-1}-{str(season)[2:]}" + nba_games = assign_stable_ids(nba_games, 'NBA', nba_season) + all_games.extend(nba_games) + print(f" Scraped {len(nba_games)} NBA games") + + # Scrape MLB + print_section(f"MLB {season}") + mlb_games = scrape_mlb_statsapi(season) + mlb_games = assign_stable_ids(mlb_games, 'MLB', str(season)) + all_games.extend(mlb_games) + print(f" Scraped {len(mlb_games)} MLB games") + + # Scrape NHL + print_section(f"NHL {season}") + nhl_games = scrape_nhl_hockey_reference(season) + nhl_season = f"{season-1}-{str(season)[2:]}" + nhl_games = assign_stable_ids(nhl_games, 'NHL', nhl_season) + all_games.extend(nhl_games) + print(f" Scraped {len(nhl_games)} NHL games") + + # Export raw data + print_section("Exporting Raw Data") + export_to_json(all_games, all_stadiums, output_dir) + print(f" Exported to {output_dir}") + + raw_games = [g.__dict__ for g in all_games] + raw_stadiums = [s.__dict__ for s in all_stadiums] + + else: + print_header("LOADING EXISTING RAW DATA") + + games_file = output_dir / 'games.json' + stadiums_file = output_dir / 'stadiums.json' + + with open(games_file) as f: + raw_games = json.load(f) + print(f" Loaded {len(raw_games)} raw games") + + with open(stadiums_file) as f: + raw_stadiums = json.load(f) + print(f" Loaded {len(raw_stadiums)} raw stadiums") + + # ========================================================================= + # STAGE 2: CANONICALIZE STADIUMS + # ========================================================================= + + print_header("STAGE 2: CANONICALIZING STADIUMS") + + canonical_stadiums, stadium_aliases = canonicalize_stadiums( + raw_stadiums, verbose=verbose + ) + print(f" Created {len(canonical_stadiums)} canonical stadiums") + + # Add historical aliases + canonical_ids = {s.canonical_id for s in canonical_stadiums} + stadium_aliases = add_historical_aliases(stadium_aliases, canonical_ids) + stadium_aliases = deduplicate_aliases(stadium_aliases) + print(f" Created {len(stadium_aliases)} stadium aliases") + + # Export + stadiums_canonical_path = output_dir / 'stadiums_canonical.json' + aliases_path = output_dir / 'stadium_aliases.json' + + with open(stadiums_canonical_path, 'w') as f: + json.dump([asdict(s) for s in canonical_stadiums], f, indent=2) + + with open(aliases_path, 'w') as f: + json.dump([asdict(a) for a in stadium_aliases], f, indent=2) + + print(f" Exported to {stadiums_canonical_path}") + print(f" Exported to {aliases_path}") + + # ========================================================================= + # STAGE 3: CANONICALIZE TEAMS + # ========================================================================= + + print_header("STAGE 3: CANONICALIZING TEAMS") + + # Convert canonical stadiums to dicts for team matching + stadiums_list = [asdict(s) for s in canonical_stadiums] + + canonical_teams, team_warnings = canonicalize_all_teams( + stadiums_list, verbose=verbose + ) + print(f" Created {len(canonical_teams)} canonical teams") + + if team_warnings: + print(f" Warnings: {len(team_warnings)}") + if verbose: + for w in team_warnings: + print(f" - {w.team_canonical_id}: {w.issue}") + + # Export + teams_canonical_path = output_dir / 'teams_canonical.json' + + with open(teams_canonical_path, 'w') as f: + json.dump([asdict(t) for t in canonical_teams], f, indent=2) + + print(f" Exported to {teams_canonical_path}") + + # ========================================================================= + # STAGE 4: CANONICALIZE GAMES + # ========================================================================= + + print_header("STAGE 4: CANONICALIZING GAMES") + + # Convert data to dicts for game canonicalization + teams_list = [asdict(t) for t in canonical_teams] + aliases_list = [asdict(a) for a in stadium_aliases] + + canonical_games_list, game_warnings = canonicalize_games( + raw_games, teams_list, aliases_list, verbose=verbose + ) + print(f" Created {len(canonical_games_list)} canonical games") + + if game_warnings: + print(f" Warnings: {len(game_warnings)}") + if verbose: + from collections import defaultdict + by_issue = defaultdict(int) + for w in game_warnings: + by_issue[w.issue] += 1 + for issue, count in by_issue.items(): + print(f" - {issue}: {count}") + + # Export + games_canonical_path = output_dir / 'games_canonical.json' + + with open(games_canonical_path, 'w') as f: + json.dump([asdict(g) for g in canonical_games_list], f, indent=2) + + print(f" Exported to {games_canonical_path}") + + # ========================================================================= + # STAGE 5: VALIDATE + # ========================================================================= + + validation_result = None + if validate: + print_header("STAGE 5: VALIDATION") + + # Reload as dicts for validation + canonical_stadiums_dicts = [asdict(s) for s in canonical_stadiums] + canonical_teams_dicts = [asdict(t) for t in canonical_teams] + canonical_games_dicts = [asdict(g) for g in canonical_games_list] + aliases_dicts = [asdict(a) for a in stadium_aliases] + + validation_result = validate_canonical_data( + canonical_stadiums_dicts, + canonical_teams_dicts, + canonical_games_dicts, + aliases_dicts, + verbose=verbose + ) + + if validation_result.is_valid: + print(f" STATUS: PASSED") + else: + print(f" STATUS: FAILED") + + print(f" Errors: {validation_result.error_count}") + print(f" Warnings: {validation_result.warning_count}") + + # Export validation report + validation_path = output_dir / 'canonicalization_validation.json' + with open(validation_path, 'w') as f: + json.dump({ + 'is_valid': validation_result.is_valid, + 'error_count': validation_result.error_count, + 'warning_count': validation_result.warning_count, + 'summary': validation_result.summary, + 'errors': validation_result.errors[:100], # Limit to 100 for readability + }, f, indent=2) + print(f" Report exported to {validation_path}") + + # ========================================================================= + # SUMMARY + # ========================================================================= + + duration = (datetime.now() - start_time).total_seconds() + + print_header("PIPELINE COMPLETE") + print() + print(f" Duration: {duration:.1f} seconds") + print(f" Stadiums: {len(canonical_stadiums)}") + print(f" Teams: {len(canonical_teams)}") + print(f" Games: {len(canonical_games_list)}") + print(f" Aliases: {len(stadium_aliases)}") + print() + + # Games by sport + print(" Games by sport:") + by_sport = {} + for g in canonical_games_list: + by_sport[g.sport] = by_sport.get(g.sport, 0) + 1 + for sport, count in sorted(by_sport.items()): + print(f" {sport}: {count:,} games") + + print() + print(" Output files:") + print(f" - {output_dir / 'stadiums_canonical.json'}") + print(f" - {output_dir / 'stadium_aliases.json'}") + print(f" - {output_dir / 'teams_canonical.json'}") + print(f" - {output_dir / 'games_canonical.json'}") + print(f" - {output_dir / 'canonicalization_validation.json'}") + print() + + # Final status + success = True + if validation_result and not validation_result.is_valid: + success = False + print(" PIPELINE FAILED - Validation errors detected") + print(" CloudKit upload should NOT proceed until errors are fixed") + else: + print(" PIPELINE SUCCEEDED - Ready for CloudKit upload") + + print() + + return PipelineResult( + success=success, + stadiums_count=len(canonical_stadiums), + teams_count=len(canonical_teams), + games_count=len(canonical_games_list), + aliases_count=len(stadium_aliases), + validation_errors=validation_result.error_count if validation_result else 0, + validation_warnings=validation_result.warning_count if validation_result else 0, + duration_seconds=duration, + output_dir=str(output_dir), + ) + + +def main(): + parser = argparse.ArgumentParser( + description='SportsTime Canonicalization Pipeline', + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Pipeline Stages: + 1. SCRAPE: Fetch raw data from web sources + 2. CANONICALIZE STADIUMS: Generate canonical IDs and aliases + 3. CANONICALIZE TEAMS: Match teams to stadiums + 4. CANONICALIZE GAMES: Resolve all references + 5. VALIDATE: Verify internal consistency + +Examples: + python run_canonicalization_pipeline.py # Full pipeline + python run_canonicalization_pipeline.py --season 2026 # Different season + python run_canonicalization_pipeline.py --skip-scrape # Use existing raw data + python run_canonicalization_pipeline.py --verbose # Show all details + """ + ) + + parser.add_argument( + '--season', type=int, default=2026, + help='Season year (default: 2026)' + ) + parser.add_argument( + '--output', type=str, default='./data', + help='Output directory (default: ./data)' + ) + parser.add_argument( + '--skip-scrape', action='store_true', + help='Skip scraping, use existing raw data files' + ) + parser.add_argument( + '--no-validate', action='store_true', + help='Skip validation step' + ) + parser.add_argument( + '--verbose', '-v', action='store_true', + help='Verbose output' + ) + parser.add_argument( + '--strict', action='store_true', + help='Exit with error code if validation fails' + ) + + args = parser.parse_args() + + result = run_pipeline( + season=args.season, + output_dir=Path(args.output), + skip_scrape=args.skip_scrape, + validate=not args.no_validate, + verbose=args.verbose, + ) + + # Exit with error code if requested and validation failed + if args.strict and not result.success: + sys.exit(1) + + +if __name__ == '__main__': + main() diff --git a/Scripts/validate_canonical.py b/Scripts/validate_canonical.py new file mode 100644 index 0000000..9df3e16 --- /dev/null +++ b/Scripts/validate_canonical.py @@ -0,0 +1,636 @@ +#!/usr/bin/env python3 +""" +Canonical Data Validation for SportsTime +========================================= +Stage 4 of the canonicalization pipeline. + +Validates all canonical data before CloudKit upload. +FAILS if any ERROR-level issues are found. + +Usage: + python validate_canonical.py --data-dir data/ + python validate_canonical.py --stadiums data/stadiums_canonical.json \ + --teams data/teams_canonical.json --games data/games_canonical.json +""" + +import argparse +import json +from collections import defaultdict +from dataclasses import dataclass, asdict +from pathlib import Path +from typing import Optional + + +# ============================================================================= +# DATA CLASSES +# ============================================================================= + +@dataclass +class ValidationError: + """A validation error or warning.""" + severity: str # 'error', 'warning' + category: str + message: str + details: Optional[dict] = None + + +@dataclass +class ValidationResult: + """Overall validation result.""" + is_valid: bool + error_count: int + warning_count: int + errors: list + summary: dict + + +# ============================================================================= +# EXPECTED GAME COUNTS +# ============================================================================= + +EXPECTED_GAMES = { + 'nba': { + 'expected': 82, + 'min': 75, + 'max': 90, + 'description': 'NBA regular season (82 games)' + }, + 'nhl': { + 'expected': 82, + 'min': 75, + 'max': 90, + 'description': 'NHL regular season (82 games)' + }, + 'mlb': { + 'expected': 162, + 'min': 155, + 'max': 168, + 'description': 'MLB regular season (162 games)' + }, +} + + +# ============================================================================= +# VALIDATION FUNCTIONS +# ============================================================================= + +def validate_no_duplicate_ids( + stadiums: list[dict], + teams: list[dict], + games: list[dict] +) -> list[ValidationError]: + """Check for duplicate canonical IDs.""" + errors = [] + + # Stadiums + seen_stadium_ids = set() + for s in stadiums: + canonical_id = s.get('canonical_id', '') + if canonical_id in seen_stadium_ids: + errors.append(ValidationError( + severity='error', + category='duplicate_id', + message=f'Duplicate stadium canonical_id: {canonical_id}' + )) + seen_stadium_ids.add(canonical_id) + + # Teams + seen_team_ids = set() + for t in teams: + canonical_id = t.get('canonical_id', '') + if canonical_id in seen_team_ids: + errors.append(ValidationError( + severity='error', + category='duplicate_id', + message=f'Duplicate team canonical_id: {canonical_id}' + )) + seen_team_ids.add(canonical_id) + + # Games + seen_game_ids = set() + for g in games: + canonical_id = g.get('canonical_id', '') + if canonical_id in seen_game_ids: + errors.append(ValidationError( + severity='error', + category='duplicate_id', + message=f'Duplicate game canonical_id: {canonical_id}' + )) + seen_game_ids.add(canonical_id) + + return errors + + +def validate_team_stadium_references( + teams: list[dict], + stadium_ids: set[str] +) -> list[ValidationError]: + """Validate that all teams reference valid stadiums.""" + errors = [] + + for team in teams: + canonical_id = team.get('canonical_id', '') + stadium_id = team.get('stadium_canonical_id', '') + + if not stadium_id: + errors.append(ValidationError( + severity='error', + category='missing_reference', + message=f'Team {canonical_id} has no stadium_canonical_id' + )) + elif stadium_id.startswith('stadium_unknown'): + errors.append(ValidationError( + severity='warning', + category='unknown_stadium', + message=f'Team {canonical_id} has unknown stadium: {stadium_id}' + )) + elif stadium_id not in stadium_ids: + errors.append(ValidationError( + severity='error', + category='dangling_reference', + message=f'Team {canonical_id} references unknown stadium: {stadium_id}' + )) + + return errors + + +def validate_game_references( + games: list[dict], + team_ids: set[str], + stadium_ids: set[str] +) -> list[ValidationError]: + """Validate that all games reference valid teams and stadiums.""" + errors = [] + + for game in games: + canonical_id = game.get('canonical_id', '') + home_team_id = game.get('home_team_canonical_id', '') + away_team_id = game.get('away_team_canonical_id', '') + stadium_id = game.get('stadium_canonical_id', '') + + # Home team + if not home_team_id: + errors.append(ValidationError( + severity='error', + category='missing_reference', + message=f'Game {canonical_id} has no home_team_canonical_id' + )) + elif home_team_id not in team_ids: + errors.append(ValidationError( + severity='error', + category='dangling_reference', + message=f'Game {canonical_id} references unknown home team: {home_team_id}' + )) + + # Away team + if not away_team_id: + errors.append(ValidationError( + severity='error', + category='missing_reference', + message=f'Game {canonical_id} has no away_team_canonical_id' + )) + elif away_team_id not in team_ids: + errors.append(ValidationError( + severity='error', + category='dangling_reference', + message=f'Game {canonical_id} references unknown away team: {away_team_id}' + )) + + # Stadium + if not stadium_id: + errors.append(ValidationError( + severity='error', + category='missing_reference', + message=f'Game {canonical_id} has no stadium_canonical_id' + )) + elif stadium_id.startswith('stadium_unknown'): + errors.append(ValidationError( + severity='warning', + category='unknown_stadium', + message=f'Game {canonical_id} has unknown stadium: {stadium_id}' + )) + elif stadium_id not in stadium_ids: + errors.append(ValidationError( + severity='error', + category='dangling_reference', + message=f'Game {canonical_id} references unknown stadium: {stadium_id}' + )) + + return errors + + +def validate_no_cross_sport_references(games: list[dict]) -> list[ValidationError]: + """Validate that games don't have cross-sport team references.""" + errors = [] + + for game in games: + canonical_id = game.get('canonical_id', '') + game_sport = game.get('sport', '').lower() + home_team_id = game.get('home_team_canonical_id', '') + away_team_id = game.get('away_team_canonical_id', '') + + # Extract sport from team IDs (format: team_{sport}_{abbrev}) + def get_sport_from_id(team_id: str) -> Optional[str]: + parts = team_id.split('_') + if len(parts) >= 2: + return parts[1] + return None + + home_sport = get_sport_from_id(home_team_id) + away_sport = get_sport_from_id(away_team_id) + + if home_sport and home_sport != game_sport: + errors.append(ValidationError( + severity='error', + category='cross_sport', + message=f'Game {canonical_id} ({game_sport}) has cross-sport home team ({home_sport})' + )) + + if away_sport and away_sport != game_sport: + errors.append(ValidationError( + severity='error', + category='cross_sport', + message=f'Game {canonical_id} ({game_sport}) has cross-sport away team ({away_sport})' + )) + + return errors + + +def validate_stadium_aliases( + aliases: list[dict], + stadium_ids: set[str] +) -> list[ValidationError]: + """Validate that all stadium aliases reference valid stadiums.""" + errors = [] + + for alias in aliases: + alias_name = alias.get('alias_name', '') + stadium_id = alias.get('stadium_canonical_id', '') + + if not stadium_id: + errors.append(ValidationError( + severity='error', + category='missing_reference', + message=f'Stadium alias "{alias_name}" has no stadium_canonical_id' + )) + elif stadium_id not in stadium_ids: + errors.append(ValidationError( + severity='error', + category='dangling_reference', + message=f'Stadium alias "{alias_name}" references unknown stadium: {stadium_id}' + )) + + return errors + + +def validate_game_counts_per_team(games: list[dict]) -> list[ValidationError]: + """Validate that each team has expected number of games.""" + errors = [] + + # Count games per team + team_game_counts = defaultdict(int) + for game in games: + home_id = game.get('home_team_canonical_id', '') + away_id = game.get('away_team_canonical_id', '') + team_game_counts[home_id] += 1 + team_game_counts[away_id] += 1 + + # Check against expected counts + for team_id, count in team_game_counts.items(): + # Extract sport from team ID + parts = team_id.split('_') + if len(parts) < 2: + continue + + sport = parts[1] + if sport in EXPECTED_GAMES: + expected = EXPECTED_GAMES[sport] + if count < expected['min']: + errors.append(ValidationError( + severity='warning', + category='game_count', + message=f'Team {team_id} has only {count} games (expected ~{expected["expected"]})', + details={'count': count, 'expected': expected['expected'], 'min': expected['min']} + )) + elif count > expected['max']: + errors.append(ValidationError( + severity='warning', + category='game_count', + message=f'Team {team_id} has {count} games (expected ~{expected["expected"]})', + details={'count': count, 'expected': expected['expected'], 'max': expected['max']} + )) + + return errors + + +def validate_required_fields( + stadiums: list[dict], + teams: list[dict], + games: list[dict] +) -> list[ValidationError]: + """Validate that required fields are present.""" + errors = [] + + # Required stadium fields + stadium_required = ['canonical_id', 'name', 'sport', 'latitude', 'longitude'] + for s in stadiums: + for field in stadium_required: + if field not in s or s[field] is None: + errors.append(ValidationError( + severity='error', + category='missing_field', + message=f'Stadium {s.get("canonical_id", "unknown")} missing required field: {field}' + )) + + # Required team fields + team_required = ['canonical_id', 'name', 'abbreviation', 'sport', 'stadium_canonical_id'] + for t in teams: + for field in team_required: + if field not in t or t[field] is None: + errors.append(ValidationError( + severity='error', + category='missing_field', + message=f'Team {t.get("canonical_id", "unknown")} missing required field: {field}' + )) + + # Required game fields + game_required = ['canonical_id', 'sport', 'date', 'home_team_canonical_id', 'away_team_canonical_id', 'stadium_canonical_id'] + for g in games: + for field in game_required: + if field not in g or g[field] is None: + errors.append(ValidationError( + severity='error', + category='missing_field', + message=f'Game {g.get("canonical_id", "unknown")} missing required field: {field}' + )) + + return errors + + +# ============================================================================= +# MAIN VALIDATION +# ============================================================================= + +def validate_canonical_data( + stadiums: list[dict], + teams: list[dict], + games: list[dict], + stadium_aliases: list[dict], + verbose: bool = False +) -> ValidationResult: + """ + Stage 4: Validate all canonical data. + + Runs all validation checks and returns results. + + Args: + stadiums: List of canonical stadium dicts + teams: List of canonical team dicts + games: List of canonical game dicts + stadium_aliases: List of stadium alias dicts + verbose: Print detailed progress + + Returns: + ValidationResult with is_valid, error/warning counts, and error list + """ + all_errors = [] + + # Build ID sets for reference checking + stadium_ids = {s.get('canonical_id', '') for s in stadiums} + team_ids = {t.get('canonical_id', '') for t in teams} + + print("Running validation checks...") + + # 1. Duplicate IDs + if verbose: + print(" Checking for duplicate IDs...") + errors = validate_no_duplicate_ids(stadiums, teams, games) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} duplicate ID issues") + + # 2. Required fields + if verbose: + print(" Checking required fields...") + errors = validate_required_fields(stadiums, teams, games) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} missing field issues") + + # 3. Team -> Stadium references + if verbose: + print(" Checking team -> stadium references...") + errors = validate_team_stadium_references(teams, stadium_ids) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} team-stadium reference issues") + + # 4. Game -> Team/Stadium references + if verbose: + print(" Checking game -> team/stadium references...") + errors = validate_game_references(games, team_ids, stadium_ids) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} game reference issues") + + # 5. Cross-sport references + if verbose: + print(" Checking for cross-sport references...") + errors = validate_no_cross_sport_references(games) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} cross-sport reference issues") + + # 6. Stadium aliases + if verbose: + print(" Checking stadium alias references...") + errors = validate_stadium_aliases(stadium_aliases, stadium_ids) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} stadium alias issues") + + # 7. Game counts per team + if verbose: + print(" Checking game counts per team...") + errors = validate_game_counts_per_team(games) + all_errors.extend(errors) + if verbose and errors: + print(f" Found {len(errors)} game count issues") + + # Count by severity + error_count = sum(1 for e in all_errors if e.severity == 'error') + warning_count = sum(1 for e in all_errors if e.severity == 'warning') + + # Count by category + by_category = defaultdict(int) + for e in all_errors: + by_category[e.category] += 1 + + # Determine validity (no errors = valid, warnings are OK) + is_valid = error_count == 0 + + return ValidationResult( + is_valid=is_valid, + error_count=error_count, + warning_count=warning_count, + errors=[asdict(e) for e in all_errors], + summary={ + 'stadiums': len(stadiums), + 'teams': len(teams), + 'games': len(games), + 'aliases': len(stadium_aliases), + 'by_category': dict(by_category) + } + ) + + +# ============================================================================= +# MAIN +# ============================================================================= + +def main(): + parser = argparse.ArgumentParser( + description='Validate canonical data' + ) + parser.add_argument( + '--data-dir', type=str, default=None, + help='Directory containing all canonical JSON files' + ) + parser.add_argument( + '--stadiums', type=str, default=None, + help='Input canonical stadiums JSON file' + ) + parser.add_argument( + '--teams', type=str, default=None, + help='Input canonical teams JSON file' + ) + parser.add_argument( + '--games', type=str, default=None, + help='Input canonical games JSON file' + ) + parser.add_argument( + '--aliases', type=str, default=None, + help='Input stadium aliases JSON file' + ) + parser.add_argument( + '--output', type=str, default=None, + help='Output file for validation report' + ) + parser.add_argument( + '--verbose', '-v', action='store_true', + help='Verbose output' + ) + parser.add_argument( + '--strict', action='store_true', + help='Exit with error code if validation fails' + ) + + args = parser.parse_args() + + # Determine file paths + if args.data_dir: + data_dir = Path(args.data_dir) + stadiums_path = data_dir / 'stadiums_canonical.json' + teams_path = data_dir / 'teams_canonical.json' + games_path = data_dir / 'games_canonical.json' + aliases_path = data_dir / 'stadium_aliases.json' + else: + stadiums_path = Path(args.stadiums or './data/stadiums_canonical.json') + teams_path = Path(args.teams or './data/teams_canonical.json') + games_path = Path(args.games or './data/games_canonical.json') + aliases_path = Path(args.aliases or './data/stadium_aliases.json') + + # Load input files + print(f"Loading canonical data...") + + with open(stadiums_path) as f: + stadiums = json.load(f) + print(f" Loaded {len(stadiums)} stadiums from {stadiums_path}") + + with open(teams_path) as f: + teams = json.load(f) + print(f" Loaded {len(teams)} teams from {teams_path}") + + with open(games_path) as f: + games = json.load(f) + print(f" Loaded {len(games)} games from {games_path}") + + stadium_aliases = [] + if aliases_path.exists(): + with open(aliases_path) as f: + stadium_aliases = json.load(f) + print(f" Loaded {len(stadium_aliases)} aliases from {aliases_path}") + + # Validate + print() + result = validate_canonical_data( + stadiums, teams, games, stadium_aliases, + verbose=args.verbose + ) + + # Print results + print() + print("=" * 60) + print("VALIDATION RESULTS") + print("=" * 60) + print() + + if result.is_valid: + print(" STATUS: PASSED") + else: + print(" STATUS: FAILED") + + print() + print(f" Errors: {result.error_count}") + print(f" Warnings: {result.warning_count}") + print() + print(f" Data Summary:") + print(f" Stadiums: {result.summary['stadiums']}") + print(f" Teams: {result.summary['teams']}") + print(f" Games: {result.summary['games']}") + print(f" Aliases: {result.summary['aliases']}") + + if result.summary['by_category']: + print() + print(f" Issues by Category:") + for category, count in sorted(result.summary['by_category'].items()): + print(f" {category}: {count}") + + # Print errors (up to 20) + if result.errors: + errors_only = [e for e in result.errors if e['severity'] == 'error'] + warnings_only = [e for e in result.errors if e['severity'] == 'warning'] + + if errors_only: + print() + print(" ERRORS (must fix):") + for e in errors_only[:20]: + print(f" [{e['category']}] {e['message']}") + if len(errors_only) > 20: + print(f" ... and {len(errors_only) - 20} more errors") + + if warnings_only and args.verbose: + print() + print(" WARNINGS (informational):") + for e in warnings_only[:20]: + print(f" [{e['category']}] {e['message']}") + if len(warnings_only) > 20: + print(f" ... and {len(warnings_only) - 20} more warnings") + + # Export report + if args.output: + output_path = Path(args.output) + with open(output_path, 'w') as f: + json.dump(asdict(result), f, indent=2) + print() + print(f"Report exported to {output_path}") + + # Exit code + if args.strict and not result.is_valid: + print() + print("VALIDATION FAILED - Exiting with error code 1") + exit(1) + + +if __name__ == '__main__': + main() diff --git a/SportsTime/Core/Models/CloudKit/CKModels.swift b/SportsTime/Core/Models/CloudKit/CKModels.swift index 72aeee9..f434b28 100644 --- a/SportsTime/Core/Models/CloudKit/CKModels.swift +++ b/SportsTime/Core/Models/CloudKit/CKModels.swift @@ -24,11 +24,13 @@ enum CKRecordType { struct CKTeam { static let idKey = "teamId" + static let canonicalIdKey = "canonicalId" static let nameKey = "name" static let abbreviationKey = "abbreviation" static let sportKey = "sport" static let cityKey = "city" static let stadiumRefKey = "stadiumRef" + static let stadiumCanonicalIdKey = "stadiumCanonicalId" static let logoURLKey = "logoURL" static let primaryColorKey = "primaryColor" static let secondaryColorKey = "secondaryColor" @@ -53,6 +55,16 @@ struct CKTeam { self.record = record } + /// The canonical ID string from CloudKit (e.g., "team_nba_atl") + var canonicalId: String? { + record[CKTeam.canonicalIdKey] as? String + } + + /// The stadium canonical ID string from CloudKit (e.g., "stadium_nba_state_farm_arena") + var stadiumCanonicalId: String? { + record[CKTeam.stadiumCanonicalIdKey] as? String + } + var team: Team? { // Use teamId field, or fall back to record name let idString = (record[CKTeam.idKey] as? String) ?? record.recordID.recordName @@ -96,6 +108,7 @@ struct CKTeam { struct CKStadium { static let idKey = "stadiumId" + static let canonicalIdKey = "canonicalId" static let nameKey = "name" static let cityKey = "city" static let stateKey = "state" @@ -125,6 +138,11 @@ struct CKStadium { self.record = record } + /// The canonical ID string from CloudKit (e.g., "stadium_nba_state_farm_arena") + var canonicalId: String? { + record[CKStadium.canonicalIdKey] as? String + } + var stadium: Stadium? { // Use stadiumId field, or fall back to record name let idString = (record[CKStadium.idKey] as? String) ?? record.recordID.recordName @@ -160,9 +178,13 @@ struct CKStadium { struct CKGame { static let idKey = "gameId" + static let canonicalIdKey = "canonicalId" static let homeTeamRefKey = "homeTeamRef" static let awayTeamRefKey = "awayTeamRef" static let stadiumRefKey = "stadiumRef" + static let homeTeamCanonicalIdKey = "homeTeamCanonicalId" + static let awayTeamCanonicalIdKey = "awayTeamCanonicalId" + static let stadiumCanonicalIdKey = "stadiumCanonicalId" static let dateTimeKey = "dateTime" static let sportKey = "sport" static let seasonKey = "season" @@ -189,6 +211,26 @@ struct CKGame { self.record = record } + /// The canonical ID string from CloudKit (e.g., "game_nba_202526_20251021_hou_okc") + var canonicalId: String? { + record[CKGame.canonicalIdKey] as? String + } + + /// The home team canonical ID string from CloudKit (e.g., "team_nba_okc") + var homeTeamCanonicalId: String? { + record[CKGame.homeTeamCanonicalIdKey] as? String + } + + /// The away team canonical ID string from CloudKit (e.g., "team_nba_hou") + var awayTeamCanonicalId: String? { + record[CKGame.awayTeamCanonicalIdKey] as? String + } + + /// The stadium canonical ID string from CloudKit (e.g., "stadium_nba_paycom_center") + var stadiumCanonicalId: String? { + record[CKGame.stadiumCanonicalIdKey] as? String + } + func game(homeTeamId: UUID, awayTeamId: UUID, stadiumId: UUID) -> Game? { guard let idString = record[CKGame.idKey] as? String, let id = UUID(uuidString: idString), diff --git a/SportsTime/Core/Models/Domain/Game.swift b/SportsTime/Core/Models/Domain/Game.swift index 0b94a0b..752469c 100644 --- a/SportsTime/Core/Models/Domain/Game.swift +++ b/SportsTime/Core/Models/Domain/Game.swift @@ -17,7 +17,7 @@ struct Game: Identifiable, Codable, Hashable { let broadcastInfo: String? init( - id: UUID = UUID(), + id: UUID , homeTeamId: UUID, awayTeamId: UUID, stadiumId: UUID, diff --git a/SportsTime/Core/Models/Domain/Stadium.swift b/SportsTime/Core/Models/Domain/Stadium.swift index 10882b3..254d5d5 100644 --- a/SportsTime/Core/Models/Domain/Stadium.swift +++ b/SportsTime/Core/Models/Domain/Stadium.swift @@ -19,7 +19,7 @@ struct Stadium: Identifiable, Codable, Hashable { let imageURL: URL? init( - id: UUID = UUID(), + id: UUID, name: String, city: String, state: String, diff --git a/SportsTime/Core/Models/Domain/Team.swift b/SportsTime/Core/Models/Domain/Team.swift index f8380aa..a0ac4c4 100644 --- a/SportsTime/Core/Models/Domain/Team.swift +++ b/SportsTime/Core/Models/Domain/Team.swift @@ -17,7 +17,7 @@ struct Team: Identifiable, Codable, Hashable { let secondaryColor: String? init( - id: UUID = UUID(), + id: UUID, name: String, abbreviation: String, sport: Sport, diff --git a/SportsTime/Core/Models/Domain/TripStop.swift b/SportsTime/Core/Models/Domain/TripStop.swift index 523007e..7a36194 100644 --- a/SportsTime/Core/Models/Domain/TripStop.swift +++ b/SportsTime/Core/Models/Domain/TripStop.swift @@ -81,7 +81,7 @@ struct LodgingSuggestion: Identifiable, Codable, Hashable { let rating: Double? init( - id: UUID = UUID(), + id: UUID, name: String, type: LodgingType, address: String? = nil, diff --git a/SportsTime/Core/Services/BootstrapService.swift b/SportsTime/Core/Services/BootstrapService.swift index b0226c0..d3c8e77 100644 --- a/SportsTime/Core/Services/BootstrapService.swift +++ b/SportsTime/Core/Services/BootstrapService.swift @@ -33,6 +33,56 @@ actor BootstrapService { // MARK: - JSON Models (match bundled JSON structure) + // MARK: - Canonical JSON Models (from canonicalization pipeline) + + private struct JSONCanonicalStadium: Codable { + let canonical_id: String + let name: String + let city: String + let state: String + let latitude: Double + let longitude: Double + let capacity: Int + let sport: String + let primary_team_abbrevs: [String] + let year_opened: Int? + } + + private struct JSONCanonicalTeam: Codable { + let canonical_id: String + let name: String + let abbreviation: String + let sport: String + let city: String + let stadium_canonical_id: String + let conference_id: String? + let division_id: String? + let primary_color: String? + let secondary_color: String? + } + + private struct JSONCanonicalGame: Codable { + let canonical_id: String + let sport: String + let season: String + let date: String + let time: String? + let home_team_canonical_id: String + let away_team_canonical_id: String + let stadium_canonical_id: String + let is_playoff: Bool + let broadcast: String? + } + + private struct JSONStadiumAlias: Codable { + let alias_name: String + let stadium_canonical_id: String + let valid_from: String? + let valid_until: String? + } + + // MARK: - Legacy JSON Models (for backward compatibility) + private struct JSONStadium: Codable { let id: String let name: String @@ -86,6 +136,9 @@ actor BootstrapService { /// Bootstrap canonical data from bundled JSON if not already done. /// This is the main entry point called at app launch. + /// + /// Prefers new canonical format files (*_canonical.json) from the pipeline, + /// falls back to legacy format for backward compatibility. @MainActor func bootstrapIfNeeded(context: ModelContext) async throws { let syncState = SyncState.current(in: context) @@ -95,11 +148,20 @@ actor BootstrapService { return } - // Bootstrap in dependency order + // Bootstrap in dependency order: + // 1. Stadiums (no dependencies) + // 2. Stadium aliases (depends on stadiums) + // 3. League structure (no dependencies) + // 4. Teams (depends on stadiums) + // 5. Team aliases (depends on teams) + // 6. Games (depends on teams + stadiums) + try await bootstrapStadiums(context: context) + try await bootstrapStadiumAliases(context: context) try await bootstrapLeagueStructure(context: context) - try await bootstrapTeamsAndGames(context: context) + try await bootstrapTeams(context: context) try await bootstrapTeamAliases(context: context) + try await bootstrapGames(context: context) // Mark bootstrap complete syncState.bootstrapCompleted = true @@ -117,10 +179,49 @@ actor BootstrapService { @MainActor private func bootstrapStadiums(context: ModelContext) async throws { - guard let url = Bundle.main.url(forResource: "stadiums", withExtension: "json") else { - throw BootstrapError.bundledResourceNotFound("stadiums.json") + // Try canonical format first, fall back to legacy + if let url = Bundle.main.url(forResource: "stadiums_canonical", withExtension: "json") { + try await bootstrapStadiumsCanonical(url: url, context: context) + } else if let url = Bundle.main.url(forResource: "stadiums", withExtension: "json") { + try await bootstrapStadiumsLegacy(url: url, context: context) + } else { + throw BootstrapError.bundledResourceNotFound("stadiums_canonical.json or stadiums.json") + } + } + + @MainActor + private func bootstrapStadiumsCanonical(url: URL, context: ModelContext) async throws { + let data: Data + let stadiums: [JSONCanonicalStadium] + + do { + data = try Data(contentsOf: url) + stadiums = try JSONDecoder().decode([JSONCanonicalStadium].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("stadiums_canonical.json", error) } + for jsonStadium in stadiums { + let canonical = CanonicalStadium( + canonicalId: jsonStadium.canonical_id, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.stadiums, + source: .bundled, + name: jsonStadium.name, + city: jsonStadium.city, + state: jsonStadium.state.isEmpty ? stateFromCity(jsonStadium.city) : jsonStadium.state, + latitude: jsonStadium.latitude, + longitude: jsonStadium.longitude, + capacity: jsonStadium.capacity, + yearOpened: jsonStadium.year_opened, + sport: jsonStadium.sport + ) + context.insert(canonical) + } + } + + @MainActor + private func bootstrapStadiumsLegacy(url: URL, context: ModelContext) async throws { let data: Data let stadiums: [JSONStadium] @@ -131,7 +232,6 @@ actor BootstrapService { throw BootstrapError.jsonDecodingFailed("stadiums.json", error) } - // Convert and insert for jsonStadium in stadiums { let canonical = CanonicalStadium( canonicalId: jsonStadium.id, @@ -149,7 +249,7 @@ actor BootstrapService { ) context.insert(canonical) - // Create stadium alias for the current name (lowercase for matching) + // Legacy format: create stadium alias for the current name let alias = StadiumAlias( aliasName: jsonStadium.name, stadiumCanonicalId: jsonStadium.id, @@ -161,6 +261,51 @@ actor BootstrapService { } } + @MainActor + private func bootstrapStadiumAliases(context: ModelContext) async throws { + // Stadium aliases are loaded from stadium_aliases.json (from canonical pipeline) + guard let url = Bundle.main.url(forResource: "stadium_aliases", withExtension: "json") else { + // Aliases are optional - legacy format creates them inline + return + } + + let data: Data + let aliases: [JSONStadiumAlias] + + do { + data = try Data(contentsOf: url) + aliases = try JSONDecoder().decode([JSONStadiumAlias].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("stadium_aliases.json", error) + } + + // Build stadium lookup + let stadiumDescriptor = FetchDescriptor() + let stadiums = (try? context.fetch(stadiumDescriptor)) ?? [] + let stadiumsByCanonicalId = Dictionary(uniqueKeysWithValues: stadiums.map { ($0.canonicalId, $0) }) + + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd" + + for jsonAlias in aliases { + let alias = StadiumAlias( + aliasName: jsonAlias.alias_name, + stadiumCanonicalId: jsonAlias.stadium_canonical_id, + validFrom: jsonAlias.valid_from.flatMap { dateFormatter.date(from: $0) }, + validUntil: jsonAlias.valid_until.flatMap { dateFormatter.date(from: $0) }, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.stadiums + ) + + // Link to stadium if found + if let stadium = stadiumsByCanonicalId[jsonAlias.stadium_canonical_id] { + alias.stadium = stadium + } + + context.insert(alias) + } + } + @MainActor private func bootstrapLeagueStructure(context: ModelContext) async throws { // Load league structure if file exists @@ -205,11 +350,101 @@ actor BootstrapService { } @MainActor - private func bootstrapTeamsAndGames(context: ModelContext) async throws { - guard let url = Bundle.main.url(forResource: "games", withExtension: "json") else { - throw BootstrapError.bundledResourceNotFound("games.json") + private func bootstrapTeams(context: ModelContext) async throws { + // Try canonical format first, fall back to legacy extraction from games + if let url = Bundle.main.url(forResource: "teams_canonical", withExtension: "json") { + try await bootstrapTeamsCanonical(url: url, context: context) + } else { + // Legacy: Teams will be extracted from games during bootstrapGames + // This path is deprecated but maintained for backward compatibility + } + } + + @MainActor + private func bootstrapTeamsCanonical(url: URL, context: ModelContext) async throws { + let data: Data + let teams: [JSONCanonicalTeam] + + do { + data = try Data(contentsOf: url) + teams = try JSONDecoder().decode([JSONCanonicalTeam].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("teams_canonical.json", error) } + for jsonTeam in teams { + let team = CanonicalTeam( + canonicalId: jsonTeam.canonical_id, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.games, + source: .bundled, + name: jsonTeam.name, + abbreviation: jsonTeam.abbreviation, + sport: jsonTeam.sport, + city: jsonTeam.city, + stadiumCanonicalId: jsonTeam.stadium_canonical_id, + conferenceId: jsonTeam.conference_id, + divisionId: jsonTeam.division_id + ) + context.insert(team) + } + } + + @MainActor + private func bootstrapGames(context: ModelContext) async throws { + // Try canonical format first, fall back to legacy + if let url = Bundle.main.url(forResource: "games_canonical", withExtension: "json") { + try await bootstrapGamesCanonical(url: url, context: context) + } else if let url = Bundle.main.url(forResource: "games", withExtension: "json") { + try await bootstrapGamesLegacy(url: url, context: context) + } else { + throw BootstrapError.bundledResourceNotFound("games_canonical.json or games.json") + } + } + + @MainActor + private func bootstrapGamesCanonical(url: URL, context: ModelContext) async throws { + let data: Data + let games: [JSONCanonicalGame] + + do { + data = try Data(contentsOf: url) + games = try JSONDecoder().decode([JSONCanonicalGame].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("games_canonical.json", error) + } + + var seenGameIds = Set() + + for jsonGame in games { + // Deduplicate + guard !seenGameIds.contains(jsonGame.canonical_id) else { continue } + seenGameIds.insert(jsonGame.canonical_id) + + guard let dateTime = parseDateTime(date: jsonGame.date, time: jsonGame.time ?? "7:00p") else { + continue + } + + let game = CanonicalGame( + canonicalId: jsonGame.canonical_id, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.games, + source: .bundled, + homeTeamCanonicalId: jsonGame.home_team_canonical_id, + awayTeamCanonicalId: jsonGame.away_team_canonical_id, + stadiumCanonicalId: jsonGame.stadium_canonical_id, + dateTime: dateTime, + sport: jsonGame.sport, + season: jsonGame.season, + isPlayoff: jsonGame.is_playoff, + broadcastInfo: jsonGame.broadcast + ) + context.insert(game) + } + } + + @MainActor + private func bootstrapGamesLegacy(url: URL, context: ModelContext) async throws { let data: Data let games: [JSONGame] @@ -220,7 +455,7 @@ actor BootstrapService { throw BootstrapError.jsonDecodingFailed("games.json", error) } - // Build stadium lookup by venue name for game → stadium matching + // Build stadium lookup for legacy venue matching let stadiumDescriptor = FetchDescriptor() let canonicalStadiums = (try? context.fetch(stadiumDescriptor)) ?? [] var stadiumsByVenue: [String: CanonicalStadium] = [:] @@ -228,65 +463,72 @@ actor BootstrapService { stadiumsByVenue[stadium.name.lowercased()] = stadium } - // Extract unique teams from games and create CanonicalTeam entries - var teamsCreated: [String: CanonicalTeam] = [:] + // Check if teams already exist (from teams_canonical.json) + let teamDescriptor = FetchDescriptor() + let existingTeams = (try? context.fetch(teamDescriptor)) ?? [] + var teamsCreated: [String: CanonicalTeam] = Dictionary( + uniqueKeysWithValues: existingTeams.map { ($0.canonicalId, $0) } + ) + let teamsAlreadyLoaded = !existingTeams.isEmpty + var seenGameIds = Set() for jsonGame in games { let sport = jsonGame.sport.uppercased() - // Process home team - let homeTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.home_team_abbrev.lowercased())" - if teamsCreated[homeTeamCanonicalId] == nil { - let stadiumCanonicalId = findStadiumCanonicalId( - venue: jsonGame.venue, - sport: sport, - stadiumsByVenue: stadiumsByVenue - ) + // Legacy team extraction (only if teams not already loaded) + if !teamsAlreadyLoaded { + let homeTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.home_team_abbrev.lowercased())" + if teamsCreated[homeTeamCanonicalId] == nil { + let stadiumCanonicalId = findStadiumCanonicalId( + venue: jsonGame.venue, + sport: sport, + stadiumsByVenue: stadiumsByVenue + ) - let team = CanonicalTeam( - canonicalId: homeTeamCanonicalId, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - name: extractTeamName(from: jsonGame.home_team), - abbreviation: jsonGame.home_team_abbrev, - sport: sport, - city: extractCity(from: jsonGame.home_team), - stadiumCanonicalId: stadiumCanonicalId - ) - context.insert(team) - teamsCreated[homeTeamCanonicalId] = team + let team = CanonicalTeam( + canonicalId: homeTeamCanonicalId, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.games, + source: .bundled, + name: extractTeamName(from: jsonGame.home_team), + abbreviation: jsonGame.home_team_abbrev, + sport: sport, + city: extractCity(from: jsonGame.home_team), + stadiumCanonicalId: stadiumCanonicalId + ) + context.insert(team) + teamsCreated[homeTeamCanonicalId] = team + } + + let awayTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.away_team_abbrev.lowercased())" + if teamsCreated[awayTeamCanonicalId] == nil { + let team = CanonicalTeam( + canonicalId: awayTeamCanonicalId, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.games, + source: .bundled, + name: extractTeamName(from: jsonGame.away_team), + abbreviation: jsonGame.away_team_abbrev, + sport: sport, + city: extractCity(from: jsonGame.away_team), + stadiumCanonicalId: "unknown" + ) + context.insert(team) + teamsCreated[awayTeamCanonicalId] = team + } } - // Process away team - let awayTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.away_team_abbrev.lowercased())" - if teamsCreated[awayTeamCanonicalId] == nil { - // Away teams might not have a known stadium yet - let team = CanonicalTeam( - canonicalId: awayTeamCanonicalId, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - name: extractTeamName(from: jsonGame.away_team), - abbreviation: jsonGame.away_team_abbrev, - sport: sport, - city: extractCity(from: jsonGame.away_team), - stadiumCanonicalId: "unknown" // Will be filled in when they're home team - ) - context.insert(team) - teamsCreated[awayTeamCanonicalId] = team - } - - // Deduplicate games by ID + // Deduplicate games guard !seenGameIds.contains(jsonGame.id) else { continue } seenGameIds.insert(jsonGame.id) - // Create game guard let dateTime = parseDateTime(date: jsonGame.date, time: jsonGame.time ?? "7:00p") else { continue } + let homeTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.home_team_abbrev.lowercased())" + let awayTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.away_team_abbrev.lowercased())" let stadiumCanonicalId = findStadiumCanonicalId( venue: jsonGame.venue, sport: sport, diff --git a/SportsTime/Core/Services/CanonicalSyncService.swift b/SportsTime/Core/Services/CanonicalSyncService.swift index ab2c349..e4a8afb 100644 --- a/SportsTime/Core/Services/CanonicalSyncService.swift +++ b/SportsTime/Core/Services/CanonicalSyncService.swift @@ -210,21 +210,18 @@ actor CanonicalSyncService { context: ModelContext, since lastSync: Date? ) async throws -> (updated: Int, skippedIncompatible: Int, skippedOlder: Int) { - let remoteStadiums = try await cloudKitService.fetchStadiums() + // Use sync method that returns canonical IDs directly from CloudKit + let syncStadiums = try await cloudKitService.fetchStadiumsForSync() var updated = 0 var skippedIncompatible = 0 var skippedOlder = 0 - for remoteStadium in remoteStadiums { - // For now, fetch full list and merge - CloudKit public DB doesn't have delta sync - // In future, could add lastModified filtering on CloudKit query - - let canonicalId = "stadium_\(remoteStadium.sport.rawValue.lowercased())_\(remoteStadium.id.uuidString.prefix(8))" - + for syncStadium in syncStadiums { + // Use canonical ID directly from CloudKit - no UUID-based generation! let result = try mergeStadium( - remoteStadium, - canonicalId: canonicalId, + syncStadium.stadium, + canonicalId: syncStadium.canonicalId, context: context ) @@ -243,23 +240,23 @@ actor CanonicalSyncService { context: ModelContext, since lastSync: Date? ) async throws -> (updated: Int, skippedIncompatible: Int, skippedOlder: Int) { - // Fetch teams for all sports - var allTeams: [Team] = [] + // Use sync method that returns canonical IDs directly from CloudKit + var allSyncTeams: [CloudKitService.SyncTeam] = [] for sport in Sport.allCases { - let teams = try await cloudKitService.fetchTeams(for: sport) - allTeams.append(contentsOf: teams) + let syncTeams = try await cloudKitService.fetchTeamsForSync(for: sport) + allSyncTeams.append(contentsOf: syncTeams) } var updated = 0 var skippedIncompatible = 0 var skippedOlder = 0 - for remoteTeam in allTeams { - let canonicalId = "team_\(remoteTeam.sport.rawValue.lowercased())_\(remoteTeam.abbreviation.lowercased())" - + for syncTeam in allSyncTeams { + // Use canonical IDs directly from CloudKit - no UUID lookups! let result = try mergeTeam( - remoteTeam, - canonicalId: canonicalId, + syncTeam.team, + canonicalId: syncTeam.canonicalId, + stadiumCanonicalId: syncTeam.stadiumCanonicalId, context: context ) @@ -278,11 +275,11 @@ actor CanonicalSyncService { context: ModelContext, since lastSync: Date? ) async throws -> (updated: Int, skippedIncompatible: Int, skippedOlder: Int) { - // Fetch games for the next 6 months from all sports + // Use sync method that returns canonical IDs directly from CloudKit let startDate = lastSync ?? Date() let endDate = Calendar.current.date(byAdding: .month, value: 6, to: Date()) ?? Date() - let remoteGames = try await cloudKitService.fetchGames( + let syncGames = try await cloudKitService.fetchGamesForSync( sports: Set(Sport.allCases), startDate: startDate, endDate: endDate @@ -292,10 +289,14 @@ actor CanonicalSyncService { var skippedIncompatible = 0 var skippedOlder = 0 - for remoteGame in remoteGames { + for syncGame in syncGames { + // Use canonical IDs directly from CloudKit - no UUID lookups! let result = try mergeGame( - remoteGame, - canonicalId: remoteGame.id.uuidString, + syncGame.game, + canonicalId: syncGame.canonicalId, + homeTeamCanonicalId: syncGame.homeTeamCanonicalId, + awayTeamCanonicalId: syncGame.awayTeamCanonicalId, + stadiumCanonicalId: syncGame.stadiumCanonicalId, context: context ) @@ -427,10 +428,10 @@ actor CanonicalSyncService { return .applied } else { - // Insert new + // Insert new - let init() generate deterministic UUID from canonicalId let canonical = CanonicalStadium( canonicalId: canonicalId, - uuid: remote.id, + // uuid: omitted - will be generated deterministically from canonicalId schemaVersion: SchemaVersion.current, lastModified: Date(), source: .cloudKit, @@ -453,6 +454,7 @@ actor CanonicalSyncService { private func mergeTeam( _ remote: Team, canonicalId: String, + stadiumCanonicalId: String, context: ModelContext ) throws -> MergeResult { let descriptor = FetchDescriptor( @@ -460,13 +462,7 @@ actor CanonicalSyncService { ) let existing = try context.fetch(descriptor).first - // Find stadium canonical ID - let remoteStadiumId = remote.stadiumId - let stadiumDescriptor = FetchDescriptor( - predicate: #Predicate { $0.uuid == remoteStadiumId } - ) - let stadium = try context.fetch(stadiumDescriptor).first - let stadiumCanonicalId = stadium?.canonicalId ?? "unknown" + // Stadium canonical ID is passed directly from CloudKit - no UUID lookup needed! if let existing = existing { // Preserve user fields @@ -491,9 +487,10 @@ actor CanonicalSyncService { return .applied } else { + // Insert new - let init() generate deterministic UUID from canonicalId let canonical = CanonicalTeam( canonicalId: canonicalId, - uuid: remote.id, + // uuid: omitted - will be generated deterministically from canonicalId schemaVersion: SchemaVersion.current, lastModified: Date(), source: .cloudKit, @@ -515,6 +512,9 @@ actor CanonicalSyncService { private func mergeGame( _ remote: Game, canonicalId: String, + homeTeamCanonicalId: String, + awayTeamCanonicalId: String, + stadiumCanonicalId: String, context: ModelContext ) throws -> MergeResult { let descriptor = FetchDescriptor( @@ -522,28 +522,7 @@ actor CanonicalSyncService { ) let existing = try context.fetch(descriptor).first - // Look up canonical IDs for teams and stadium - let remoteHomeTeamId = remote.homeTeamId - let remoteAwayTeamId = remote.awayTeamId - let remoteStadiumId = remote.stadiumId - - let homeTeamDescriptor = FetchDescriptor( - predicate: #Predicate { $0.uuid == remoteHomeTeamId } - ) - let awayTeamDescriptor = FetchDescriptor( - predicate: #Predicate { $0.uuid == remoteAwayTeamId } - ) - let stadiumDescriptor = FetchDescriptor( - predicate: #Predicate { $0.uuid == remoteStadiumId } - ) - - let homeTeam = try context.fetch(homeTeamDescriptor).first - let awayTeam = try context.fetch(awayTeamDescriptor).first - let stadium = try context.fetch(stadiumDescriptor).first - - let homeTeamCanonicalId = homeTeam?.canonicalId ?? "unknown" - let awayTeamCanonicalId = awayTeam?.canonicalId ?? "unknown" - let stadiumCanonicalId = stadium?.canonicalId ?? "unknown" + // All canonical IDs are passed directly from CloudKit - no UUID lookups needed! if let existing = existing { // Preserve user fields @@ -568,9 +547,10 @@ actor CanonicalSyncService { return .applied } else { + // Insert new - let init() generate deterministic UUID from canonicalId let canonical = CanonicalGame( canonicalId: canonicalId, - uuid: remote.id, + // uuid: omitted - will be generated deterministically from canonicalId schemaVersion: SchemaVersion.current, lastModified: Date(), source: .cloudKit, diff --git a/SportsTime/Core/Services/CloudKitService.swift b/SportsTime/Core/Services/CloudKitService.swift index 3b61584..229305a 100644 --- a/SportsTime/Core/Services/CloudKitService.swift +++ b/SportsTime/Core/Services/CloudKitService.swift @@ -70,6 +70,27 @@ actor CloudKitService { self.publicDatabase = container.publicCloudDatabase } + // MARK: - Sync Types (include canonical IDs from CloudKit) + + struct SyncStadium { + let stadium: Stadium + let canonicalId: String + } + + struct SyncTeam { + let team: Team + let canonicalId: String + let stadiumCanonicalId: String + } + + struct SyncGame { + let game: Game + let canonicalId: String + let homeTeamCanonicalId: String + let awayTeamCanonicalId: String + let stadiumCanonicalId: String + } + // MARK: - Availability Check func isAvailable() async -> Bool { @@ -189,6 +210,97 @@ actor CloudKitService { return ckGame.game(homeTeamId: homeId, awayTeamId: awayId, stadiumId: stadiumId) } + // MARK: - Sync Fetch Methods (return canonical IDs directly from CloudKit) + + /// Fetch stadiums with canonical IDs for sync operations + func fetchStadiumsForSync() async throws -> [SyncStadium] { + let predicate = NSPredicate(value: true) + let query = CKQuery(recordType: CKRecordType.stadium, predicate: predicate) + + let (results, _) = try await publicDatabase.records(matching: query) + + return results.compactMap { result -> SyncStadium? in + guard case .success(let record) = result.1 else { return nil } + let ckStadium = CKStadium(record: record) + guard let stadium = ckStadium.stadium, + let canonicalId = ckStadium.canonicalId + else { return nil } + return SyncStadium(stadium: stadium, canonicalId: canonicalId) + } + } + + /// Fetch teams with canonical IDs for sync operations + func fetchTeamsForSync(for sport: Sport) async throws -> [SyncTeam] { + let predicate = NSPredicate(format: "sport == %@", sport.rawValue) + let query = CKQuery(recordType: CKRecordType.team, predicate: predicate) + + let (results, _) = try await publicDatabase.records(matching: query) + + return results.compactMap { result -> SyncTeam? in + guard case .success(let record) = result.1 else { return nil } + let ckTeam = CKTeam(record: record) + guard let team = ckTeam.team, + let canonicalId = ckTeam.canonicalId, + let stadiumCanonicalId = ckTeam.stadiumCanonicalId + else { return nil } + return SyncTeam(team: team, canonicalId: canonicalId, stadiumCanonicalId: stadiumCanonicalId) + } + } + + /// Fetch games with canonical IDs for sync operations + func fetchGamesForSync( + sports: Set, + startDate: Date, + endDate: Date + ) async throws -> [SyncGame] { + var allGames: [SyncGame] = [] + + for sport in sports { + let predicate = NSPredicate( + format: "sport == %@ AND dateTime >= %@ AND dateTime <= %@", + sport.rawValue, + startDate as NSDate, + endDate as NSDate + ) + let query = CKQuery(recordType: CKRecordType.game, predicate: predicate) + + let (results, _) = try await publicDatabase.records(matching: query) + + let games = results.compactMap { result -> SyncGame? in + guard case .success(let record) = result.1 else { return nil } + let ckGame = CKGame(record: record) + + // Extract canonical IDs directly from CloudKit + guard let canonicalId = ckGame.canonicalId, + let homeTeamCanonicalId = ckGame.homeTeamCanonicalId, + let awayTeamCanonicalId = ckGame.awayTeamCanonicalId, + let stadiumCanonicalId = ckGame.stadiumCanonicalId + else { return nil } + + // For the Game domain object, we still need UUIDs - use placeholder + // The sync service will use canonical IDs for relationships + let placeholderUUID = UUID() + guard let game = ckGame.game( + homeTeamId: placeholderUUID, + awayTeamId: placeholderUUID, + stadiumId: placeholderUUID + ) else { return nil } + + return SyncGame( + game: game, + canonicalId: canonicalId, + homeTeamCanonicalId: homeTeamCanonicalId, + awayTeamCanonicalId: awayTeamCanonicalId, + stadiumCanonicalId: stadiumCanonicalId + ) + } + + allGames.append(contentsOf: games) + } + + return allGames.sorted { $0.game.dateTime < $1.game.dateTime } + } + // MARK: - League Structure & Team Aliases func fetchLeagueStructure(for sport: Sport? = nil) async throws -> [LeagueStructureModel] { diff --git a/SportsTime/Core/Services/DataProvider.swift b/SportsTime/Core/Services/DataProvider.swift index 1c3f3ba..2c1c159 100644 --- a/SportsTime/Core/Services/DataProvider.swift +++ b/SportsTime/Core/Services/DataProvider.swift @@ -90,9 +90,19 @@ final class AppDataProvider: ObservableObject { self.teams = loadedTeams self.stadiums = loadedStadiums - // Build lookup dictionaries - self.teamsById = Dictionary(uniqueKeysWithValues: loadedTeams.map { ($0.id, $0) }) - self.stadiumsById = Dictionary(uniqueKeysWithValues: loadedStadiums.map { ($0.id, $0) }) + // Build lookup dictionaries (use reduce to handle potential duplicates gracefully) + self.teamsById = loadedTeams.reduce(into: [:]) { dict, team in + if dict[team.id] != nil { + print("⚠️ Duplicate team UUID: \(team.id) - \(team.name)") + } + dict[team.id] = team + } + self.stadiumsById = loadedStadiums.reduce(into: [:]) { dict, stadium in + if dict[stadium.id] != nil { + print("⚠️ Duplicate stadium UUID: \(stadium.id) - \(stadium.name)") + } + dict[stadium.id] = stadium + } } catch { self.error = error diff --git a/SportsTime/Core/Services/SuggestedTripsGenerator.swift b/SportsTime/Core/Services/SuggestedTripsGenerator.swift index 784d0a4..ff6bfc5 100644 --- a/SportsTime/Core/Services/SuggestedTripsGenerator.swift +++ b/SportsTime/Core/Services/SuggestedTripsGenerator.swift @@ -108,9 +108,9 @@ final class SuggestedTripsGenerator { return } - // Build lookups - let stadiumsById = Dictionary(uniqueKeysWithValues: dataProvider.stadiums.map { ($0.id, $0) }) - let teamsById = Dictionary(uniqueKeysWithValues: dataProvider.teams.map { ($0.id, $0) }) + // Build lookups (use reduce to handle potential duplicate UUIDs gracefully) + let stadiumsById = dataProvider.stadiums.reduce(into: [UUID: Stadium]()) { $0[$1.id] = $1 } + let teamsById = dataProvider.teams.reduce(into: [UUID: Team]()) { $0[$1.id] = $1 } var generatedTrips: [SuggestedTrip] = [] diff --git a/SportsTime/Features/Home/Views/SuggestedTripCard.swift b/SportsTime/Features/Home/Views/SuggestedTripCard.swift index a83d4a9..96dc6e8 100644 --- a/SportsTime/Features/Home/Views/SuggestedTripCard.swift +++ b/SportsTime/Features/Home/Views/SuggestedTripCard.swift @@ -126,9 +126,9 @@ struct SuggestedTripCard: View { name: "Test Trip", preferences: TripPreferences(), stops: [ - TripStop(stopNumber: 1, city: "New York", state: "NY", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false), - TripStop(stopNumber: 2, city: "Boston", state: "MA", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false), - TripStop(stopNumber: 3, city: "Philadelphia", state: "PA", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false) + TripStop(id: UUID(), stopNumber: 1, city: "New York", state: "NY", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false), + TripStop(id: UUID(),stopNumber: 2, city: "Boston", state: "MA", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false), + TripStop(id: UUID(),stopNumber: 3, city: "Philadelphia", state: "PA", coordinate: nil, arrivalDate: Date(), departureDate: Date(), games: [], isRestDay: false) ], totalGames: 5 ) diff --git a/SportsTime/Features/Progress/Views/VisitDetailView.swift b/SportsTime/Features/Progress/Views/VisitDetailView.swift index fbf2f0e..31966ab 100644 --- a/SportsTime/Features/Progress/Views/VisitDetailView.swift +++ b/SportsTime/Features/Progress/Views/VisitDetailView.swift @@ -523,6 +523,7 @@ extension VisitSource { #Preview { let stadium = Stadium( + id: UUID(), name: "Oracle Park", city: "San Francisco", state: "CA", diff --git a/SportsTime/Features/Trip/Views/TimelineItemView.swift b/SportsTime/Features/Trip/Views/TimelineItemView.swift index c3b0e91..26b4c65 100644 --- a/SportsTime/Features/Trip/Views/TimelineItemView.swift +++ b/SportsTime/Features/Trip/Views/TimelineItemView.swift @@ -423,48 +423,48 @@ struct HorizontalTimelineItemView: View { // MARK: - Preview -#Preview { - let stop1 = ItineraryStop( - city: "Los Angeles", - state: "CA", - coordinate: nil, - games: [], - arrivalDate: Date(), - departureDate: Date(), - location: LocationInput(name: "Los Angeles"), - firstGameStart: nil - ) - - let stop2 = ItineraryStop( - city: "San Francisco", - state: "CA", - coordinate: nil, - games: [], - arrivalDate: Date().addingTimeInterval(86400), - departureDate: Date().addingTimeInterval(86400), - location: LocationInput(name: "San Francisco"), - firstGameStart: nil - ) - - let segment = TravelSegment( - fromLocation: LocationInput(name: "Los Angeles"), - toLocation: LocationInput(name: "San Francisco"), - travelMode: .drive, - distanceMeters: 600000, - durationSeconds: 21600 - ) - - let option = ItineraryOption( - rank: 1, - stops: [stop1, stop2], - travelSegments: [segment], - totalDrivingHours: 6, - totalDistanceMiles: 380, - geographicRationale: "LA → SF" - ) - - return ScrollView { - TimelineView(option: option, games: [:]) - .padding() - } -} +//#Preview { +// let stop1 = ItineraryStop( +// city: "Los Angeles", +// state: "CA", +// coordinate: nil, +// games: [], +// arrivalDate: Date(), +// departureDate: Date(), +// location: LocationInput(name: "Los Angeles"), +// firstGameStart: nil +// ) +// +// let stop2 = ItineraryStop( +// city: "San Francisco", +// state: "CA", +// coordinate: nil, +// games: [], +// arrivalDate: Date().addingTimeInterval(86400), +// departureDate: Date().addingTimeInterval(86400), +// location: LocationInput(name: "San Francisco"), +// firstGameStart: nil +// ) +// +// let segment = TravelSegment( +// fromLocation: LocationInput(name: "Los Angeles"), +// toLocation: LocationInput(name: "San Francisco"), +// travelMode: .drive, +// distanceMeters: 600000, +// durationSeconds: 21600 +// ) +// +// let option = ItineraryOption( +// rank: 1, +// stops: [stop1, stop2], +// travelSegments: [segment], +// totalDrivingHours: 6, +// totalDistanceMiles: 380, +// geographicRationale: "LA → SF" +// ) +// +// return ScrollView { +// TimelineView(option: option, games: [:]) +// .padding() +// } +//} diff --git a/SportsTime/Features/Trip/Views/TripCreationView.swift b/SportsTime/Features/Trip/Views/TripCreationView.swift index ad96e5e..40c78d8 100644 --- a/SportsTime/Features/Trip/Views/TripCreationView.swift +++ b/SportsTime/Features/Trip/Views/TripCreationView.swift @@ -796,7 +796,7 @@ struct TripCreationView: View { } private func buildGamesDictionary() -> [UUID: RichGame] { - Dictionary(uniqueKeysWithValues: viewModel.availableGames.map { ($0.id, $0) }) + viewModel.availableGames.reduce(into: [:]) { $0[$1.id] = $1 } } } diff --git a/SportsTime/Resources/games_canonical.json b/SportsTime/Resources/games_canonical.json new file mode 100644 index 0000000..6c9adb7 --- /dev/null +++ b/SportsTime/Resources/games_canonical.json @@ -0,0 +1,59666 @@ +[ + { + "canonical_id": "game_nba_202526_20251021_hou_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251021_gsw_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_brk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_cle_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_phi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_tor_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_det_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_nop_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_was_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_lac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_sas_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_min_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251022_sac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251023_okc_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251023_den_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_mil_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "6:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_atl_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_cle_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_bos_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_det_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_sas_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_mia_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_was_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_min_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_gsw_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_uta_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251024_pho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-24", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_chi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_okc_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_cho_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_ind_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251025_pho_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_brk_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "2:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_bos_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "3:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_cho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_nyk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_mil_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_ind_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_tor_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_lal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251026_por_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_cle_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_orl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_atl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_brk_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_bos_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_tor_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_okc_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_pho_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_den_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_mem_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251027_por_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-27", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_phi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_cho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_nyk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_sac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251028_lac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-28", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_hou_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "6:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_cle_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_orl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_atl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_sac_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_ind_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_por_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_nop_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_lal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251029_mem_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_orl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_gsw_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_was_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251030_mia_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-30", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_atl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_bos_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_tor_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_nyk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_lal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_uta_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_den_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251031_nop_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-10-31", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_sac_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "5:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_min_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_gsw_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_orl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_hou_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251101_dal_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_nop_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_phi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_uta_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_atl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_mem_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_chi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_sas_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251102_mia_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-02", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_min_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_mil_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_uta_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_was_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_dal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_det_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_sac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_lal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251103_mia_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_mil_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_orl_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_phi_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_cho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_pho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251104_okc_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-04", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_phi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_uta_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_brk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_was_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_min_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_hou_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_nop_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_mia_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_okc_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251105_gsw_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251106_lac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_bos_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_cle_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_tor_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_det_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_hou_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_dal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_cho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_chi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_uta_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_gsw_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251107_okc_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_dal_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_tor_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_lal_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_chi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_por_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_nop_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_ind_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251108_pho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-08", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_hou_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_okc_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_brk_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_bos_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_det_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_ind_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251109_min_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_lal_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_was_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_por_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_cle_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_sas_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_mil_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_nop_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_min_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251110_atl_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_tor_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_mem_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_gsw_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_bos_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_ind_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251111_den_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-11", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_mil_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_chi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_orl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_mem_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_cle_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_was_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_gsw_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_pho_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_lal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_atl_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251112_den_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_tor_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_ind_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251113_atl_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_mia_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_brk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_phi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_por_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_cho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_sac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_lal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_lac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251114_gsw_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-14", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_mem_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "5:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_okc_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_tor_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_lal_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251115_den_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_lac_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_sac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "4:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_brk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_orl_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_gsw_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_por_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_atl_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251116_chi_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_mil_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_ind_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_lac_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_nyk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_cho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_dal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_okc_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251117_chi_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_gsw_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_det_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_bos_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_mem_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_uta_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251118_pho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-18", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_hou_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_cho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_tor_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_gsw_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_was_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_den_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_sac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_nyk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251119_chi_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_lac_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_sac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_phi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251120_atl_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_ind_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_brk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_was_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_mia_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_nop_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_min_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_den_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_por_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251121_okc_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_lac_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_nyk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_atl_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_was_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_det_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_mem_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251122_sac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_mia_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "1:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_cho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_orl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_lac_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_brk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_por_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_sas_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251123_lal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_det_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_cle_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_nyk_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_dal_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_den_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_por_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_chi_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_hou_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "9:30p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_uta_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251124_min_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-24", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_atl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_orl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251125_lac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-25", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_det_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "5:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_nyk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_mil_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_min_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_ind_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_mem_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_hou_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_sas_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251126_pho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_cle_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_phi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_chi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_orl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_was_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_mil_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_sas_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_sac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_mem_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251128_dal_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_bos_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "5:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_tor_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_chi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_det_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_brk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_nop_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_den_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251129_dal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_hou_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "3:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_bos_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_tor_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_atl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_okc_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_sas_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_mem_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251130_nop_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-11-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_cle_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_mil_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_cho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_lac_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_chi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_dal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_hou_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251201_pho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_was_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_por_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_nyk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_min_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_mem_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251202_okc_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-02", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_por_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_den_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_sas_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_lac_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_cho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_brk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_sac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_det_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251203_mia_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_gsw_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_bos_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_uta_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_lal_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251204_min_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_lal_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_den_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_sas_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_por_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_uta_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_cho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_ind_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_pho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_lac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_phi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251205_dal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-05", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_nop_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "5:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_atl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_gsw_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_mil_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_sac_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_lac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251206_hou_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-06", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_orl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "12:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_bos_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_den_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_por_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_gsw_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_lal_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251207_okc_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_sac_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_pho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251208_sas_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251209_mia_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-09", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251209_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-09", + "time": "8:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251210_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251210_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251211_den_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_chi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_ind_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_cle_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_uta_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_brk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251212_min_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251213_nyk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-13", + "time": "5:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251213_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-13", + "time": "9:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_was_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "3:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_cho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_phi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_mil_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_nop_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_sac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251214_gsw_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-14", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_det_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_tor_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_dal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251215_mem_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-15", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251216_sas_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-16", + "time": "8:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251217_cle_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251217_mem_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_atl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_nyk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_mia_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_tor_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_hou_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_lac_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_was_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_det_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_orl_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_gsw_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_lal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251218_sac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-18", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_mia_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_phi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_sas_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_chi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251219_okc_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-19", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "5:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_ind_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_dal_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_bos_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_cho_det", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_was_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_pho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_orl_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_por_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251220_lal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-20", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_chi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "3:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_tor_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_mia_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_mil_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_sas_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251221_hou_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_cho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_ind_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_dal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_uta_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_mem_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_orl_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251222_det_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_was_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_brk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_chi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_nop_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_mil_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_tor_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_den_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_nyk_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_okc_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_mem_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_orl_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_det_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251223_hou_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-23", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_cle_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "12:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "2:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_dal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "5:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_hou_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251225_min_den", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-25", + "time": "10:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_mia_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_bos_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_cho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_tor_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_phi_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_mil_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_pho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_det_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251226_lac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_dal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "5:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_pho_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_den_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_nyk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_mil_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_cle_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_ind_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_brk_min", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251227_uta_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_phi_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_gsw_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_bos_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_mem_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_det_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251228_sac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_mil_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_pho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_gsw_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_den_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_orl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_min_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_ind_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_nyk_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_atl_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_cle_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251229_dal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-29", + "time": "10:30p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_phi_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_bos_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_det_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251230_sac_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-30", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_gsw_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_min_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_orl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_pho_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_nop_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_nyk_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_den_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_was_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20251231_por_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2025-12-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_hou_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_mia_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_phi_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_bos_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260101_uta_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-01", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_sas_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_brk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_den_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_atl_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_orl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_cho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_por_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_sac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_okc_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260102_mem_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-02", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_min_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "5:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_phi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_atl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_cho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_por_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_hou_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_uta_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260103_bos_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_det_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "2:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_ind_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_den_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_nop_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_min_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_okc_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_mil_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260104_mem_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_nyk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_chi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_atl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_pho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_cho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_den_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_gsw_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260105_uta_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_cle_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_orl_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_sas_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_mia_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_lal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260106_dal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-06", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_den_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_tor_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_chi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_was_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_nop_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_orl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_lac_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_pho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_uta_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_lal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_mil_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260107_hou_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_ind_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_cle_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260108_dal_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_tor_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_phi_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_nop_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_lac_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_okc_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_atl_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_nyk_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_sac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_hou_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260109_mil_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-09", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_min_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_mia_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_lac_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_sas_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_dal_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260110_cho_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-10", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_nop_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "3:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_brk_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_nyk_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_phi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_sas_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_mia_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_mil_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_was_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_atl_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260111_hou_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_uta_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_bos_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_phi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_brk_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_lal_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260112_cho_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_pho_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_chi_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_min_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_den_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_sas_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_atl_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260113_por_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-13", + "time": "11:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_tor_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_cle_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_uta_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_brk_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_den_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_nyk_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260114_was_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-14", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_mem_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "2:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_pho_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_okc_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_bos_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_mil_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_uta_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_nyk_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_atl_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260115_cho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-15", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_nop_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_cle_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_chi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_lac_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_min_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260116_was_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-16", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_uta_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "5:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_bos_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_ind_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_pho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_okc_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_min_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_cho_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_was_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260117_lal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-17", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_orl_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "12:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_brk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_nop_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_cho_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_por_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260118_tor_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-18", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_mil_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "1:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_okc_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "2:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_lac_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "3:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_dal_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "5:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_uta_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "5:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_ind_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_pho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_bos_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260119_mia_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_pho_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_lac_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_sas_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_min_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_lal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_tor_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260120_mia_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_cle_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_ind_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_brk_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_atl_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_det_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_okc_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260121_tor_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_cho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_hou_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_den_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_gsw_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_chi_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_sas_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_lal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260122_mia_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-22", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_hou_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_pho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_bos_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_sac_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_nop_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_ind_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_den_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260123_tor_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_nyk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "3:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_gsw_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "5:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_was_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_cle_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_bos_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_lal_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260124_mia_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-24", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_sac_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "3:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_den_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_dal_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_tor_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_nop_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_mia_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260125_brk_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_phi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_orl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_ind_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_por_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_lal_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_mem_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260126_gsw_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-26", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_por_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_sac_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_nop_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_mil_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_det_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_brk_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260127_lac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_lal_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_chi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_atl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_orl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_cho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_min_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_gsw_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260128_sas_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_sac_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_mil_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_hou_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_cho_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_brk_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_det_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260129_okc_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-29", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_tor_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_lal_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_sac_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_mem_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_por_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_chi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_lac_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_cle_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_brk_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260130_det_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-30", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_sas_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "3:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_atl_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_nop_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_min_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260131_dal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-01-31", + "time": "8:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_mil_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_orl_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "4:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_brk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_chi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_uta_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_sac_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_lal_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_lac_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_cle_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260201_okc_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-01", + "time": "9:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_nop_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_hou_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_min_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260202_phi_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_den_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_uta_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_nyk_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_lal_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_atl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_bos_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_chi_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_orl_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_phi_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260203_pho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-03", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_den_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_min_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_bos_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_nop_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_okc_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_mem_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260204_cle_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-04", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_was_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_brk_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_uta_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_chi_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_cho_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_sas_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_gsw_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260205_phi_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_mia_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_nyk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_ind_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_nop_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_mem_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260206_lac_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-06", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_was_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "3:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_hou_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "3:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_dal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_uta_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_cho_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_den_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_gsw_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_phi_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_mem_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260207_cle_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_nyk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "12:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_mia_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "2:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_lac_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "3:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260208_ind_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-08", + "time": "3:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_det_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_chi_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_uta_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_mil_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_atl_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_sac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_cle_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_mem_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_okc_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260209_phi_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_ind_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_dal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260210_sas_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_atl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_was_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mil_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_chi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_ind_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_nyk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_det_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_lac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_por_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mia_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_okc_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_sac_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_mem_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260211_sas_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_mil_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_por_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260212_dal_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-12", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_hou_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_brk_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_atl_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_ind_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_det_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_tor_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_pho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_bos_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_orl_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260219_den_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-19", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_cle_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_uta_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_ind_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_mia_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_dal_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_mil_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_brk_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_lac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260220_den_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-20", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_orl_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "5:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_phi_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_det_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_mem_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_sac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260221_hou_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_cle_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "1:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_brk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_den_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_tor_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_dal_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_cho_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "6:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_bos_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "6:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_phi_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_nyk_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_por_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260222_orl_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_sas_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_sac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260223_uta_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_phi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_was_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_dal_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_okc_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_cho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_nyk_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_mia_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_gsw_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_bos_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_orl_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260224_min_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-24", + "time": "11:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_okc_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_gsw_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_sas_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_sac_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_cle_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260225_bos_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_cho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_mia_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_was_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_sas_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_hou_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_por_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_sac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_lal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_nop_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260226_min_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-26", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_cle_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_brk_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_nyk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_mem_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260227_den_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-27", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_por_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_hou_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_tor_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_lal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "8:30p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260228_nop_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-02-28", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_sas_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "1:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_cle_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_mil_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_min_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "3:30p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_mem_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_por_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_phi_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_det_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "6:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_okc_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_nop_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260301_sac_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-01", + "time": "9:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_hou_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_den_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260302_lac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_dal_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_det_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_was_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_brk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_nyk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_okc_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_mem_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_sas_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_nop_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260303_pho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-03", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_okc_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_cho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_uta_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "7:30p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_por_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_atl_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "9:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260304_ind_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-04", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_dal_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_uta_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_gsw_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_brk_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_tor_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_det_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_chi_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_lal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260305_nop_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_dal_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_mia_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_por_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_nyk_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_nop_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_lac_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "9:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260306_ind_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-06", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_orl_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "3:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_brk_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "6:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_phi_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_lac_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_uta_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260307_gsw_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-07", + "time": "8:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_bos_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "1:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_nyk_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "3:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_det_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_dal_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_was_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_orl_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_hou_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_cho_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_ind_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260308_chi_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_phi_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_mem_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_den_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_gsw_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260309_nyk_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_mem_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_det_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_was_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_dal_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_tor_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_pho_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_bos_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_chi_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_cho_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_ind_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260310_min_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-10", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_cle_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_tor_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_nyk_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_hou_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_cho_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260311_min_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-11", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_phi_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_pho_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_was_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_brk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_mil_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_den_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_bos_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260312_chi_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-12", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_mem_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_nyk_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_pho_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_nop_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_cle_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_min_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_uta_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260313_chi_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-13", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_brk_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "1:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_mil_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "3:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_was_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_orl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_cho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_den_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260314_sac_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-14", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_min_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "1:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_dal_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_ind_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_det_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "3:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_por_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_gsw_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260315_uta_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-15", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_orl_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_gsw_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_por_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_pho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_mem_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_dal_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_lal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "9:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260316_sas_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-16", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_mia_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_okc_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_det_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_ind_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_cle_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_pho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_phi_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260317_sas_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-17", + "time": "11:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_gsw_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_okc_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_por_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_tor_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_nyk_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_uta_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_lac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_atl_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260318_lal_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-18", + "time": "9:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_orl_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_det_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_cle_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_lal_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_lac_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_pho_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_mil_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260319_phi_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-19", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_nyk_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_gsw_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_atl_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_bos_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_por_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260320_tor_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-20", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_okc_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "5:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mem_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_cle_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_lal_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_gsw_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mia_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_ind_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_lac_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_phi_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260321_mil_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-21", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_por_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "5:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_brk_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "6:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_was_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_min_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "8:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260322_tor_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-22", + "time": "9:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_mem_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_lal_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_ind_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_okc_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_sas_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_hou_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_tor_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_gsw_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "9:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_brk_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260323_mil_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-23", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_sac_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_nop_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_orl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "8:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260324_den_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-24", + "time": "11:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_atl_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_lal_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_chi_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_okc_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_mia_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_sas_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_was_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_hou_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "9:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_dal_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_brk_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_mil_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260325_tor_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-25", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_nyk_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_nop_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260326_sac_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-26", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_lac_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_atl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_mia_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "7:30p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_hou_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_chi_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_nop_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "8:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_uta_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_was_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_dal_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260327_brk_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-27", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_sas_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_phi_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_sac_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_chi_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_det_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "8:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260328_uta_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-28", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_lac_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_mia_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "5:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_sac_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_bos_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_was_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_orl_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_hou_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_nyk_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260329_gsw_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-29", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_phi_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "7:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_bos_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_pho_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_chi_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_min_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_cle_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_det_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "9:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260330_was_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-30", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_pho_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_cho_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_tor_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_nyk_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_cle_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260331_por_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-03-31", + "time": "11:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_phi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_bos_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_atl_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "7:30p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_ind_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_mil_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_dal_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_sac_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "8:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_den_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "9:00p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260401_sas_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-01", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_pho_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_min_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:00p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_lal_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "7:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_cle_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_nop_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260402_sas_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-02", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_ind_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_min_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_atl_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_chi_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_uta_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_tor_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_bos_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_orl_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260403_nop_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-03", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_was_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_sas_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "3:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260404_det_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-04", + "time": "7:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_tor_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_was_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_pho_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_mem_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "3:30p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_ind_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_cho_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_orl_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_uta_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:00p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_lal_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "7:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_lac_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "9:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260405_hou_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-05", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_nyk_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_det_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_cle_mem", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_fedexforum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_phi_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260406_por_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-06", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_chi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_cho_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_mil_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_mia_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "7:30p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_min_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_uta_nop", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "8:00p", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_sac_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_okc_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_dal_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260407_hou_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-07", + "time": "11:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_hou", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_atl_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_min_orl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:00p", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_kia_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_mil_det", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "7:30p", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_por_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_mem_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "9:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_okc_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "10:00p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260408_dal_pho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-08", + "time": "10:00p", + "home_team_canonical_id": "team_nba_pho", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_footprint_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_mia_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_chi_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_ind_brk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "stadium_canonical_id": "stadium_nba_barclays_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_bos_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_phi_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260409_lal_gsw", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-09", + "time": "10:00p", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "stadium_canonical_id": "stadium_nba_chase_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_mia_was", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mia", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_det_cho", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:00p", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_nop_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_phi_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phi", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_cle_atl", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_tor_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "7:30p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_orl_chi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_min_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_brk_mil", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_dal_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "8:00p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_dal", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_mem_uta", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "9:30p", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_okc_den", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "stadium_canonical_id": "stadium_nba_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_lac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_gsw_sac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:00p", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260410_pho_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-10", + "time": "10:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_orl_bos", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "stadium_canonical_id": "stadium_nba_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_was_cle", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_was", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_det_ind", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_atl_mia", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_cho_nyk", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_mil_phi", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mil", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_brk_tor", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "6:00p", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_chi_dal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_chi", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_mem_hou", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mem", + "stadium_canonical_id": "stadium_nba_toyota_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_gsw_lac", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_uta_lal", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_nop_min", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nop", + "stadium_canonical_id": "stadium_nba_target_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_pho_okc", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_pho", + "stadium_canonical_id": "stadium_nba_paycom_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_sac_por", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "stadium_canonical_id": "stadium_nba_moda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nba_202526_20260412_den_sas", + "sport": "NBA", + "season": "2025-26", + "date": "2026-04-12", + "time": "8:30p", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260325_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-25", + "time": "00:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "19:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "20:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "00:30", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260326_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "20:35", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260327_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-27", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_nyy_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_det_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260328_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_min_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_kcr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_oak_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_bos_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_col_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_chw_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_tbr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_cle_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260329_wsn_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260330_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260331_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_oak_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_tex_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_col_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_chw_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_nyy_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_cle_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "00:20", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_laa_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260401_bos_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260402_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-02", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "18:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "20:12", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260403_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "17:05", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260404_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_bal_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_sdp_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_stl_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_mil_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_cin_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_nym_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_atl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260405_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260406_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260407_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_sdp_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_mil_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_bal_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_lad_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_hou_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_phi_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_atl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_chc_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260408_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_oak_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_ari_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260409_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260410_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260411_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_sfg_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_ari_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_min_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_mia_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_bos_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260412_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260413_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260414_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_ari_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_cle_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_bos_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_chc_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_nym_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260415_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_sfg_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_laa_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tbr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_sea_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260416_col_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260417_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260418_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_sfg_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_kcr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_cin_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_sdp_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tor_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_bal_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_nym_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260419_stl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_det_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "15:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260420_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260421_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_cin_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_bal_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_tor_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "19:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_hou_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260422_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_mil_det", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "22:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_min_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_pit_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260423_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260424_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "09:33", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260425_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_cle_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_col_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_laa_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_sea_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_mia_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_chc_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_nyy_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260426_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "09:33", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260427_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260428_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_nyy_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_mia_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "19:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_chc_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260429_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_det_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_hou_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_col_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_sfg_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_ari_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_kcr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260430_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260501_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260502_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_sfg_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_tor_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_lad_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_atl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_cle_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_nym_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_kcr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_chw_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260503_ari_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260504_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260505_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_nym_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_atl_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260506_lad_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_tex_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "16:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_min_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_bal_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260507_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260508_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260509_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_oak_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_col_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_laa_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_pit_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_nym_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_stl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_atl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260510_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260511_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260512_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_ari_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260513_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-13", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_col_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_wsn_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_det_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sdp_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_stl_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_phi_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_chc_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260514_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260515_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260516_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_tor_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_mia_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_chc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_kcr_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_sfg_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_lad_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_sdp_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_cin_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260517_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260518_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260519_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_cin_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_chw_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_bos_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260520_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260521_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260522_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "02:05", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260523_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_det_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_cle_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_pit_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_sea_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_lad_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_chw_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_oak_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260524_hou_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "19:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "21:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260525_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-25", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260526_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_mia_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "17:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_phi_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_cin_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_nyy_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260527_wsn_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_laa_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_atl_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260528_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-28", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260529_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260530_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_sdp_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_min_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_atl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_kcr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_nyy_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_ari_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_bos_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260531_mil_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260601_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260602_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_det_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_nym_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "19:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_kcr_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_tex_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260603_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_sdp_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_cle_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_sfg_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_oak_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260604_pit_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260605_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "23:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "23:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260606_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_sea_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_tbr_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_cle_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_mil_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_wsn_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_nym_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260607_sfg_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260608_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260609_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_wsn_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_cin_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_phi_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_mil_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "01:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260610_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_ari_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_tex_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_chc_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_sea_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260611_atl_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260612_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260613_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_sdp_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_mia_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_ari_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_hou_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_col_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_chc_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_tbr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260614_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260615_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260616_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_nym_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_kcr_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_sdp_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_tbr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_laa_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_col_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260617_det_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_cle_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_bal_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_chw_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_sfg_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260618_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260619_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bos_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bos_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "23:15", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "01:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "02:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260620_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_cin_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_mil_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_sfg_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_stl_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_sdp_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_pit_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_bal_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_bos_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_min_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_cle_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260621_tor_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260622_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260623_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_bos_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_bal_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_hou_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_atl_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260624_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_kcr_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "16:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_oak_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_chc_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260625_ari_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260626_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "17:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "20:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260627_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_wsn_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_cin_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_tex_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_hou_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_ari_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_col_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_kcr_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_atl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_oak_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_lad_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260628_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260629_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260630_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_chw_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_det_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_nym_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_sfg_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_sdp_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260701_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_pit_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "16:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_mia_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_stl_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_tbr_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260702_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260703_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "15:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "20:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:08", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_min_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_bal_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_det_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_sfg_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_mia_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_bos_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_tor_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "23:20", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260705_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_phi_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260706_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260707_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_tor_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_hou_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_col_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260708_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_atl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_kcr_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_bos_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_chc_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_mil_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260709_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-09", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260710_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:05", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "22:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260711_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_kcr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_nyy_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_bos_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_laa_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_atl_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_hou_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_ari_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260712_tor_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260716_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260717_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "00:08", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260718_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_chw_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sdp_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_cin_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_det_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sfg_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_stl_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_lad_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "23:20", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_bal_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260719_min_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260720_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260721_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_pit_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_sfg_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_nym_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_wsn_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_cin_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "19:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_stl_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_bal_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_chw_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260722_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_sdp_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_tbr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260723_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-23", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260724_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260725_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_ari_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_kcr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_cle_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_sdp_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_col_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_cin_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260726_laa_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_sea_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260727_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260728_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "16:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_ari_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_tor_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_atl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_mil_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_col_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_hou_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260729_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "16:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_kcr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_nyy_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_chc_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_bos_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260730_sea_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "22:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260731_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260801_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_stl_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_kcr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_det_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_bos_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_sfg_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_min_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_ari_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260802_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260803_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260804_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sfg_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_tbr_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_stl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_lad_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260805_tor_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_laa_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "16:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_det_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_chw_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_mia_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_min_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_sdp_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260806_nym_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260807_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260808_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "01:50", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_cin_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_nym_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_atl_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_laa_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_chc_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_cle_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_col_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_bal_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_det_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_hou_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tbr_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260810_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260811_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_bal_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_phi_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_col_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_hou_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_mil_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_nym_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260812_kcr_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_sea_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_cin_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_bos_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_chc_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "23:30", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260813_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-13", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260814_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260815_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_ari_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_nyy_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_wsn_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_phi_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_col_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_kcr_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_mil_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_sdp_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_sea_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260816_stl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_bal_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260817_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260818_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_det_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sdp_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "17:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_atl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_ari_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_lad_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260819_chw_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_oak_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_nyy_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_wsn_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_sfg_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260820_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260821_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260822_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_sfg_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_stl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_det_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_nym_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_cle_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_cin_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_pit_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_chc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_min_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_atl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260823_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260824_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260825_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_chc_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_cin_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_cle_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_pit_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_bos_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_tex_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260826_min_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-26", + "time": "01:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_col_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_bal_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_hou_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_kcr_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_mil_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_lad_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260827_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-27", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260828_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "20:10", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "23:15", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "02:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260829_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bos_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_sea_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_lad_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_hou_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_sdp_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_chw_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_tex_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bal_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_ari_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_phi_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_kcr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260830_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260831_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sdp_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_atl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "17:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_oak_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_bal_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_phi_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "19:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_nym_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_det_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_nyy_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_sfg_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_mia_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_stl_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_chw_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260903_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-03", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260904_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260905_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "16:10", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:35", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_sfg_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_chc_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_tor_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_min_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_tbr_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_stl_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_oak_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_nyy_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_wsn_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260906_ari_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_atl_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "21:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "22:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260907_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "02:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260908_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tor_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_stl_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_wsn_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_cle_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_laa_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_ari_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260909_cin_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "16:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_hou_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "17:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_tex_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_col_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260910_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-10", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "07:33", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260911_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "22:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260912_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-12", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_kcr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_laa_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:35", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_bal_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:37", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_col_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_hou_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "17:40", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_cin_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_chw_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_sea_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_sdp_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260913_pit_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260914_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "23:45", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260915_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sfg_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "17:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "17:40", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_det_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_phi_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_bal_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_mia_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_chw_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260916_atl_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_mil_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "16:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "17:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_sdp_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "23:15", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_bos_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260917_kcr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "00:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "01:40", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260918_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:05", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "20:10", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "23:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "01:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "01:38", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260919_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_kcr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kcr", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_mil_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_bos_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_bos", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "17:40", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "stadium_canonical_id": "stadium_mlb_citi_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_det_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_det", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_wsn_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:15", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_tor_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sea_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_min_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:07", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sfg_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sfg", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_mia_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "20:10", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "stadium_canonical_id": "stadium_mlb_chase_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "07:33", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260920_atl_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "08:33", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260921_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-21", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "01:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260922_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_wsn_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_wsn", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_min_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "19:45", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_min", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:35", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "00:05", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "00:40", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_laa_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_hou_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260923_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "16:35", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_chw_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "18:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_chw", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_nym_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "18:35", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_ari_col", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "19:10", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_coors_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_mil_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mil", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_cle_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "22:45", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_cin_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "23:15", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_truist_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_sdp_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "02:10", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sdp", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260924_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-24", + "time": "08:33", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:40", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "22:45", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:05", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "23:40", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "00:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "02:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260925_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "02:15", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "17:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "20:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "22:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "23:15", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "00:40", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "01:40", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "07:33", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260926_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "10:33", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_chc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_lad_sfg", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_sfg", + "away_team_canonical_id": "team_mlb_lad", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:05", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_cin_tor", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:07", + "home_team_canonical_id": "team_mlb_tor", + "away_team_canonical_id": "team_mlb_cin", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_cle_kcr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_kcr", + "away_team_canonical_id": "team_mlb_cle", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_ari_sdp", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_sdp", + "away_team_canonical_id": "team_mlb_ari", + "stadium_canonical_id": "stadium_mlb_petco_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_laa_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_tex_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "stadium_canonical_id": "stadium_mlb_target_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:10", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_mlb_2026_20260927_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "19:20", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_chi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_col_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251007_pit_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_cgy_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_mtl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_lak_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251008_bos_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-08", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_chi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_nyr_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_njd_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ari_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_mtl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_phi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_cbj_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_nyi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ana_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_vgk_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_min_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_ott_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_cgy_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251009_dal_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_buf_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_phi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_stl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_mtl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_dal_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_tor_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_van_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ott_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_cbj_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ari_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_wsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_nyr_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_vgk_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_ana_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_njd_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251011_lak_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251012_wsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_tbl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_col_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_njd_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_ari_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_lak_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_wpg_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_nsh_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_fla_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_det_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251013_stl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-13", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_pit_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_vgk_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_min_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_sea_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_edm_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_car_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_nsh_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251014_tbl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-14", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_ott_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_fla_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_chi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251015_cgy_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-15", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_car_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_col_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_van_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_pit_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_nsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_fla_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_edm_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_sea_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_wpg_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_nyr_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251016_bos_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-16", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_van_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_tbl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_sjs_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251017_min_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_fla_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_tbl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_bos_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_car_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nyr_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_edm_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nyi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_min_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_pit_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_dal_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_sea_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_cgy_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251018_nsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-18", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_ana_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_edm_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_bos_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251019_van_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-19", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_wpg_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_buf_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_min_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_sea_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251020_car_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-20", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_fla_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_cbj_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_ana_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_sjs_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_edm_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_van_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_lak_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_njd_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_col_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251021_sea_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-21", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_det_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_mtl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251022_min_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-22", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_ana_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_car_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_lak_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_mtl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_pit_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_van_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_det_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_sjs_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_phi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_ari_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_chi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251023_sea_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-23", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_tor_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_wsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_sjs_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251024_cgy_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_col_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_car_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_stl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_vgk_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ari_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_lak_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_nyi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_cbj_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_edm_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ana_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_buf_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_mtl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251025_ott_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-25", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_nyr_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_lak_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_sjs_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_col_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_dal_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_vgk_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_edm_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251026_ari_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-26", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251027_bos_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-27", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251027_stl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-27", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_nyi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_cbj_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_vgk_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ott_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_njd_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_wsh_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ari_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_ana_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_wpg_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_tbl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_pit_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_mtl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_lak_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_det_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_cgy_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251028_nyr_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-28", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251029_tor_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-29", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_buf_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nyi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nyr_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_det_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_pit_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_cgy_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_nsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_njd_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_van_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_dal_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251030_chi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-30", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_det_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_col_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251031_nyi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-10-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_car_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_wsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_stl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_chi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_dal_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_njd_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_van_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_ott_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_cgy_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_tor_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_nyr_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_col_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251101_pit_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-01", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_njd_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_cbj_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_cgy_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_det_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251102_tbl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-02", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_van_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_chi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_edm_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251103_pit_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-03", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_fla_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_ari_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_tbl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_edm_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_wpg_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_nsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_phi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_bos_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_car_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251104_det_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-04", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_cbj_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_sjs_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_ari_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_chi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251105_stl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_ott_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_stl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_min_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_ana_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_fla_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_mtl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_phi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_wsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251106_tbl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-06", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_chi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_nyr_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_min_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251107_wpg_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-07", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_buf_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_col_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ari_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_pit_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_dal_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_nyi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ott_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_fla_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_sea_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_wsh_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_bos_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_cbj_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251108_ana_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_wpg_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_sea_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_chi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_cgy_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_ari_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_lak_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_car_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251109_col_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_cbj_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_nyi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_nsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251110_fla_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-10", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_tor_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_wsh_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_ana_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_sjs_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_lak_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_dal_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_cbj_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_cgy_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251111_wpg_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-11", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_njd_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_edm_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_nyr_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251112_buf_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_edm_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_sjs_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_buf_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_ana_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_wsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_dal_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_bos_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_wpg_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_lak_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251113_nyi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-13", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_van_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_pit_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_phi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251114_nyi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_edm_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_nyr_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_wpg_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_tor_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_phi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_buf_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_tbl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_ana_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_bos_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_lak_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_sjs_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_vgk_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251115_njd_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-15", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_nyi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_vgk_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_det_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_nsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251116_van_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-16", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_ari_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_car_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_edm_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_mtl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_van_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251117_lak_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_cgy_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_nyi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_sea_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_ari_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_njd_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_stl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_nyr_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251118_cbj_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-18", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_bos_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_cgy_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_car_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251119_edm_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-19", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_ott_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_sea_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_nyr_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_nyi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_njd_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_wsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_stl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_lak_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_edm_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_cbj_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_vgk_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251120_dal_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-20", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_chi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_bos_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_min_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251121_car_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-21", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_vgk_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_dal_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_cbj_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_edm_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_tor_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_col_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_stl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_njd_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_sea_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_ott_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_nyr_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251122_tbl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-22", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_car_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_col_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_sea_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_bos_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_cgy_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251123_min_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-23", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_ott_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_det_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_fla_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_stl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_phi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_vgk_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251124_cbj_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-24", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251125_dal_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-25", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_van_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_nyr_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_tor_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_min_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_sjs_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_nsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_phi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_stl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_bos_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_buf_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_dal_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_cgy_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_mtl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_ott_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251126_wpg_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-26", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_lak_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_nyr_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_njd_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_wpg_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_pit_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_nsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_ari_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_tbl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_cgy_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_col_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_phi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_van_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_ott_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_mtl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251128_tor_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-28", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_det_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_mtl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_van_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_buf_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_phi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_wpg_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_tbl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_tor_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_edm_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_ari_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251129_sjs_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_cgy_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_ana_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_ott_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251130_wsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-11-30", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_wpg_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_cbj_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_pit_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_ari_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251201_ana_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-01", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_van_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_bos_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_min_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_tor_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_wsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_ott_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_cgy_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_tbl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_dal_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251202_chi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-02", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_ari_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_wpg_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_dal_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_buf_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251203_wsh_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_stl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_tor_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_det_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_min_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_sea_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_nsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_chi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_col_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_nyr_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251204_pit_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-04", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_wsh_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_sjs_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_vgk_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_ari_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251205_buf_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-05", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_njd_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_nsh_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_ari_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_wpg_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_cbj_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_chi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_col_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_stl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_det_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_nyi_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_mtl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251206_min_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-06", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_chi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_sjs_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_pit_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_nyi_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_stl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_vgk_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_col_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251207_cbj_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-07", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_buf_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_min_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_tbl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_lak_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251208_det_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-08", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_cbj_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_buf_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_tbl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_col_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_vgk_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_njd_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_sjs_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_ana_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_bos_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251209_dal_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_det_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_nyr_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_lak_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251210_fla_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-10", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_ott_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_fla_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_det_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_dal_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_tbl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_stl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_ana_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_vgk_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_mtl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_sjs_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_buf_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_bos_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251211_car_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-11", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251212_chi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-12", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251212_sea_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_vgk_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_det_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_nsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_fla_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_cgy_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_ott_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_ana_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_tbl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_mtl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_car_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_sjs_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_edm_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251213_wsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-13", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_phi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_bos_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_edm_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_van_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_ari_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251214_buf_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-14", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_lak_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_ana_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_nsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_fla_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251215_ott_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-15", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_ari_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_ana_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_nyi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_wsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_phi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_van_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_edm_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_col_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_cgy_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251216_chi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-16", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_ari_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_lak_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_car_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_wpg_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251217_njd_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_edm_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_phi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_min_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_sea_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_chi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_pit_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_dal_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_nyr_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_lak_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251218_tor_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-18", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_dal_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_wpg_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_car_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_van_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251219_njd_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-19", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_cbj_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_van_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_nyi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_vgk_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_stl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_edm_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_pit_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_tor_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_phi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_chi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_sea_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_car_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251220_det_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-20", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_ott_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_tor_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_wsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_vgk_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_col_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_buf_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_nyr_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_mtl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251221_wpg_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_sea_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_cbj_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_van_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251222_stl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-22", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_mtl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_fla_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_phi_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_ari_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_dal_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_cgy_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_sea_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_nsh_min", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_njd_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_buf_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_pit_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_sjs_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251223_nyr_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-23", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_bos_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_det_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_edm_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_chi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_tbl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_ana_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_wsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_nyr_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_nsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_ott_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_sjs_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_col_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251227_min_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-27", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_nyi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_pit_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_tor_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_phi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251228_mtl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_sjs_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_nyr_car", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_bos_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_lak_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_wsh_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_cbj_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_van_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_buf_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_nsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_min_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251229_edm_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-29", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_nyi_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_mtl_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_car_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_njd_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251230_phi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-30", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_tbl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_njd_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_phi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_stl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_buf_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_wpg_det", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_bos_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_min_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_nsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20251231_nyr_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2025-12-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_mtl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_dal_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_tbl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_ari_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_wsh_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_det_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_nsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260101_wpg_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-01", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_min_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_nyr_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_vgk_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260102_sea_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-02", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_col_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_buf_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_nsh_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_pit_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_phi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_min_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_ari_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_tor_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_wpg_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_tbl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_mtl_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_bos_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260103_chi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-03", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_pit_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_vgk_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_mtl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_col_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260104_car_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_sea_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_min_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_ari_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_det_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260105_ana_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_van_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_dal_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_nsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_njd_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_ana_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_bos_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_cbj_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_col_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_fla_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260106_vgk_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-06", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_stl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_sjs_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_cgy_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_ott_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260107_dal_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-07", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_cgy_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_ana_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_ott_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_van_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_fla_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_nyi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_buf_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_tor_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_njd_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_min_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_cbj_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260108_edm_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-08", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_wsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_stl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260109_lak_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-09", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_nyr_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_ana_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_sea_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_cbj_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_lak_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_nyi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_det_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_chi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_fla_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_tbl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_cgy_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_dal_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_van_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260110_stl_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-10", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_pit_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_wsh_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_vgk_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_cbj_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260111_njd_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_fla_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_edm_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_tor_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_car_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_dal_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_njd_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_van_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_sea_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260112_tbl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-12", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_dal_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_det_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_cgy_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_edm_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_van_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_tbl_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_car_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_tor_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_nyi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260113_mtl_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-13", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_phi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_vgk_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_sea_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260114_ott_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_sea_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_mtl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_van_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_cgy_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_nyi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_wpg_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_phi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_dal_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_tor_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260115_sjs_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-15", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_fla_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_nsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_sjs_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_ana_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260116_tbl_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-16", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_lak_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_min_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nyi_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_bos_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_car_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_mtl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nyr_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_cbj_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_sea_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_edm_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_nsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_tor_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260117_fla_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-17", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_tbl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_ott_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260118_stl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-18", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_nyr_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_buf_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_njd_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_wpg_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_wsh_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_sjs_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_pit_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_min_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_nyi_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260119_phi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-19", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_ott_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_bos_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_njd_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_nyr_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_min_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_buf_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_sjs_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260120_stl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-20", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_pit_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_ana_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_nyi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_det_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_phi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260121_wsh_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-21", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_vgk_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_chi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_dal_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_pit_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_det_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_buf_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_ott_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260122_fla_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-22", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_wsh_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_tbl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_phi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_stl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_ana_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_nyr_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_vgk_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260123_njd_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-23", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_mtl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_tbl_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_wsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_fla_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_ari_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_buf_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_car_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_lak_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260124_det_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_ana_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_fla_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_vgk_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_njd_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_col_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260125_pit_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_lak_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_ana_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_bos_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_nyi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260126_ari_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_nsh_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_lak_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_ari_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_chi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_vgk_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_wpg_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_wsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_dal_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_buf_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260127_sjs_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-27", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_phi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_nyr_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260128_col_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-28", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_phi_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_lak_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_ari_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_wsh_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_sjs_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_cgy_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_col_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_nsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_nyi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_chi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_tor_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_fla_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_wpg_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_ana_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260129_dal_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-29", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260130_cbj_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-30", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_mtl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_sjs_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_col_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_min_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_wpg_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_nsh_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_njd_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_lak_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_nyr_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_cbj_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_dal_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_tor_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_sea_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260131_car_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-01-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_vgk_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_lak_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260201_bos_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-01", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_tor_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_sjs_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_det_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_wpg_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_buf_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_mtl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_stl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_ott_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_van_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260202_nyi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-02", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_sea_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_ott_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_tor_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_cbj_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_pit_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_wsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260203_buf_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-03", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_chi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_edm_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_sjs_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_stl_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_bos_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_sea_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_min_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_det_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_van_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260204_mtl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-04", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_pit_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_nyi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_car_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_ott_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_fla_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_lak_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260205_nsh_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-05", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_edm_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_sea_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_vgk_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_buf_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_tor_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_col_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_wpg_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260225_phi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-25", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_cbj_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_tbl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_min_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_tor_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_edm_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_nyi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_chi_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_phi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_det_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_njd_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_cgy_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260226_sea_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-26", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_wpg_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_buf_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_min_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260227_vgk_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-27", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_det_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_nyi_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_chi_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_nsh_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_cgy_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_wsh_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_pit_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_bos_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_van_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_edm_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_njd_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_buf_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260228_ott_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-02-28", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_cgy_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_stl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_fla_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_vgk_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_wpg_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260301_chi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-01", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_col_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_det_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_cbj_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_car_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_phi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260302_dal_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-02", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_col_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_pit_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_vgk_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_nsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_dal_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_ott_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_tbl_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_fla_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_mtl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_chi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260303_ari_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-03", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_nyi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_vgk_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_tor_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_stl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260304_car_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-04", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_fla_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_ott_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_nyi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_bos_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_tor_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_ari_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_buf_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260305_tbl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-05", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_mtl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_van_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_col_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_fla_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_car_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_stl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260306_min_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-06", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_wsh_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_ari_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_car_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_mtl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nyr_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_phi_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_ott_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_nyi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_tbl_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260307_van_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-07", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_stl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_tbl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_min_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_chi_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_det_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_bos_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260308_edm_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-08", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_ari_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_nyr_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_ott_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260309_cgy_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-09", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_lak_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_sjs_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_pit_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_edm_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_vgk_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_det_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_ari_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_tor_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_cgy_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_nsh_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_nyi_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_cbj_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260310_ana_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-10", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260311_mtl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-11", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260311_wsh_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-11", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_sjs_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_wsh_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_stl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_edm_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_cbj_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_phi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_cgy_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_col_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_det_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_ana_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_chi_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_nsh_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_pit_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260312_nyr_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-12", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260313_lak_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-13", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260313_edm_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_tor_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_det_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_nyr_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_sjs_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_lak_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_cgy_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_ana_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_cbj_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_car_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_pit_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_sea_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_chi_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_col_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260314_bos_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-14", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_nsh_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_tor_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_ana_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_sjs_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_fla_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260315_stl_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-15", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_pit_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_ari_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_cgy_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_bos_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260316_lak_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-16", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_car_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_min_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_sjs_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_bos_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_tbl_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_nyi_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_fla_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_buf_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260317_nsh_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-17", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_phi_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_pit_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_stl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_dal_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_njd_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260318_ott_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-18", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_wpg_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_nyr_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_mtl_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_fla_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_phi_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_chi_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_sea_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_nyi_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_buf_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_tbl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260319_ari_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-19", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_fla_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_col_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_car_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_ana_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260320_njd_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-20", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_sea_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_bos_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_tbl_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_buf_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_dal_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_nyi_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_vgk_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_tor_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_wpg_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_phi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260321_stl_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-21", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_buf_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_tbl_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_nsh_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_vgk_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_cbj_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_wpg_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_car_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_lak_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260322_col_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-22", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260323_ott_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-23", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_tor_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_lak_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_njd_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_ott_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_sea_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_car_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_sjs_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_chi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_cbj_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_col_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_wsh_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_min_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_edm_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_ana_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260324_vgk_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-24", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260325_bos_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-25", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260325_nyr_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-25", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_ana_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_min_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_cbj_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_njd_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_dal_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_pit_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_chi_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_sjs_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_sea_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_wsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_lak_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_edm_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260326_col_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-26", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260327_det_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-27", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260327_chi_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-27", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_min_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_sea_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_njd_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_sjs_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_van_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_wpg_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_phi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ana_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ari_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_mtl_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_fla_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_dal_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_tor_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_ott_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260328_wsh_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-28", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_mtl_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_bos_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_chi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_fla_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_dal_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260329_nsh_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-29", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_tor_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_cgy_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_pit_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_stl_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260330_van_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-30", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_dal_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_nyi_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_car_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_wpg_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_sea_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_ott_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_njd_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_det_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_mtl_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260331_phi_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-03-31", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_van_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_stl_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260401_ana_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-01", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_cbj_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_wpg_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_chi_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_bos_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_nsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_van_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_wsh_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_mtl_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_buf_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_det_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_ari_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_tor_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_pit_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260402_cgy_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-02", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260403_stl_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-03", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260403_phi_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-03", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_cgy_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_nyi_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_wpg_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_col_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_vgk_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_tor_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_mtl_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_det_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_min_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_fla_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_chi_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_nsh_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_bos_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_ari_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260404_buf_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-04", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_stl_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_min_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_njd_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_wsh_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_car_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_bos_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260405_fla_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-05", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_tbl_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_nsh_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_chi_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_chi", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260406_sea_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-06", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_nsh_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_bos_car", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_cgy_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_cbj_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_sea_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_fla_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_phi_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_tbl_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_col_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_edm_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260407_vgk_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-07", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_buf_nyr", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_edm_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260408_wsh_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-08", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_sjs_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_cbj_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_car_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_cgy_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_min_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_phi_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_van_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_tbl_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_pit_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_tor_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_fla_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_vgk_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_wpg_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260409_nsh_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-09", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_tbl_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tbl", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_stl_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_vgk_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_vgk", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_nyr_dal", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_njd_det", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_edm_lak", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_lak", + "away_team_canonical_id": "team_nhl_edm", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_cbj_mtl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_min_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_ott_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_wsh_pit", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_cgy_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_cgy", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_van_sjs", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_sjs", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_sap_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_fla_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_car_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260411_phi_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-11", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_phi", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_van_ana", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_honda_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_bos_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_ari_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ari", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_ott_njd", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ott", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_mtl_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260412_pit_wsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-12", + "time": null, + "home_team_canonical_id": "team_nhl_wsh", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_buf_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_buf", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_col_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_nyr_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_sjs_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_car_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_lak_sea", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_min_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_det_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_dal_tor", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260413_wpg_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-13", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_njd_bos", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "stadium_canonical_id": "stadium_nhl_td_garden", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_wsh_cbj", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wsh", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_col_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_col", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_ana_min", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_car_nyi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_car", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_mtl_phi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_mtl", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_pit_stl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_pit", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_wpg_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260414_lak_van", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-14", + "time": null, + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_dal_buf", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_dal", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_sjs_chi", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_united_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_det_fla", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_tor_ott", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_nyr_tbl", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_tbl", + "away_team_canonical_id": "team_nhl_nyr", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260415_sea_vgk", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-15", + "time": null, + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_lak_cgy", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_lak", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_sea_col", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sea", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_van_edm", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_van", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_ana_nsh", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ana", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_stl_ari", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_stl", + "stadium_canonical_id": "stadium_nhl_delta_center", + "is_playoff": false, + "broadcast": null + }, + { + "canonical_id": "game_nhl_202526_20260416_sjs_wpg", + "sport": "NHL", + "season": "2025-26", + "date": "2026-04-16", + "time": null, + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sjs", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "is_playoff": false, + "broadcast": null + } +] \ No newline at end of file diff --git a/SportsTime/Resources/stadium_aliases.json b/SportsTime/Resources/stadium_aliases.json new file mode 100644 index 0000000..77d3819 --- /dev/null +++ b/SportsTime/Resources/stadium_aliases.json @@ -0,0 +1,782 @@ +[ + { + "alias_name": "state farm arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "barclays center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "spectrum center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nba_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rocket mortgage fieldhouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase center", + "stadium_canonical_id": "stadium_nba_chase_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "toyota center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gainbridge fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "intuit dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fedexforum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kaseya center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fiserv forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "target center", + "stadium_canonical_id": "stadium_nba_target_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "smoothie king center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paycom center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kia center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "footprint center", + "stadium_canonical_id": "stadium_nba_footprint_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "moda center", + "stadium_canonical_id": "stadium_nba_moda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "golden 1 center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "frost bank center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "truist park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oriole park at camden yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fenway park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wrigley field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "guaranteed rate field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "great american ball park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "progressive field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "coors field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "comerica park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "minute maid park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "kauffman stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "angel stadium", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dodger stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "loandepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american family field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "target field", + "stadium_canonical_id": "stadium_mlb_target_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citi field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "yankee stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sutter health park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citizens bank park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "pnc park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "petco park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oracle park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "busch stadium", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tropicana field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "globe life field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers centre", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nationals park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "honda center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "keybank center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "pnc arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nhl_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nationwide arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amerant bank arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "xcel energy center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bell centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bridgestone arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "prudential center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ubs arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canadian tire centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ppg paints arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sap center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "climate pledge arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "enterprise center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amalie arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canada life centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "daikin park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "enron field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2000-04-01", + "valid_until": "2002-02-28" + }, + { + "alias_name": "astros field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2002-03-01", + "valid_until": "2002-06-04" + }, + { + "alias_name": "rate field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "2024-01-01", + "valid_until": null + }, + { + "alias_name": "us cellular field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "2003-01-01", + "valid_until": "2016-08-24" + }, + { + "alias_name": "comiskey park ii", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "1991-04-01", + "valid_until": "2002-12-31" + }, + { + "alias_name": "new comiskey park", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "valid_from": "1991-04-01", + "valid_until": "2002-12-31" + }, + { + "alias_name": "suntrust park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": "2017-04-01", + "valid_until": "2020-01-13" + }, + { + "alias_name": "jacobs field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "the jake", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "miller park", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "valid_from": "2001-04-01", + "valid_until": "2020-12-31" + }, + { + "alias_name": "skydome", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "valid_from": "1989-06-01", + "valid_until": "2005-02-01" + }, + { + "alias_name": "marlins park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "valid_from": "2012-04-01", + "valid_until": "2021-03-31" + }, + { + "alias_name": "att park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2006-01-01", + "valid_until": "2019-01-08" + }, + { + "alias_name": "sbc park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2004-01-01", + "valid_until": "2005-12-31" + }, + { + "alias_name": "pac bell park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": "2000-04-01", + "valid_until": "2003-12-31" + }, + { + "alias_name": "choctaw stadium", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "valid_from": "2020-01-01", + "valid_until": null + }, + { + "alias_name": "philips arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": "1999-09-01", + "valid_until": "2018-06-25" + }, + { + "alias_name": "ftx arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "2021-06-01", + "valid_until": "2023-03-31" + }, + { + "alias_name": "american airlines arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "1999-12-01", + "valid_until": "2021-05-31" + }, + { + "alias_name": "bankers life fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "2011-01-01", + "valid_until": "2021-12-31" + }, + { + "alias_name": "conseco fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "1999-11-01", + "valid_until": "2010-12-31" + }, + { + "alias_name": "quicken loans arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "2005-08-01", + "valid_until": "2019-08-08" + }, + { + "alias_name": "gund arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "1994-10-01", + "valid_until": "2005-07-31" + }, + { + "alias_name": "amway center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": "2010-10-01", + "valid_until": "2023-07-12" + }, + { + "alias_name": "att center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": "2002-10-01", + "valid_until": "2023-10-01" + }, + { + "alias_name": "vivint arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2020-12-01", + "valid_until": "2023-07-01" + }, + { + "alias_name": "vivint smart home arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2015-11-01", + "valid_until": "2020-11-30" + }, + { + "alias_name": "energysolutions arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2006-11-01", + "valid_until": "2015-10-31" + }, + { + "alias_name": "fla live arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2021-10-01", + "valid_until": "2024-05-31" + }, + { + "alias_name": "bb&t center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2012-06-01", + "valid_until": "2021-09-30" + }, + { + "alias_name": "bankatlantic center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2005-10-01", + "valid_until": "2012-05-31" + }, + { + "alias_name": "keyarena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1995-01-01", + "valid_until": "2018-10-01" + }, + { + "alias_name": "seattle center coliseum", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1962-01-01", + "valid_until": "1994-12-31" + } +] \ No newline at end of file diff --git a/SportsTime/Resources/stadiums_canonical.json b/SportsTime/Resources/stadiums_canonical.json new file mode 100644 index 0000000..a12dc81 --- /dev/null +++ b/SportsTime/Resources/stadiums_canonical.json @@ -0,0 +1,1290 @@ +[ + { + "canonical_id": "stadium_nba_state_farm_arena", + "name": "State Farm Arena", + "city": "Atlanta", + "state": "", + "latitude": 33.7573, + "longitude": -84.3963, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_barclays_center", + "name": "Barclays Center", + "city": "Brooklyn", + "state": "", + "latitude": 40.6826, + "longitude": -73.9754, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "BRK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_spectrum_center", + "name": "Spectrum Center", + "city": "Charlotte", + "state": "", + "latitude": 35.2251, + "longitude": -80.8392, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHO" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_united_center", + "name": "United Center", + "city": "Chicago", + "state": "", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "name": "Rocket Mortgage FieldHouse", + "city": "Cleveland", + "state": "", + "latitude": 41.4965, + "longitude": -81.6882, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DEN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_chase_center", + "name": "Chase Center", + "city": "San Francisco", + "state": "", + "latitude": 37.768, + "longitude": -122.3879, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "GSW" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_toyota_center", + "name": "Toyota Center", + "city": "Houston", + "state": "", + "latitude": 29.7508, + "longitude": -95.3621, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_gainbridge_fieldhouse", + "name": "Gainbridge Fieldhouse", + "city": "Indianapolis", + "state": "", + "latitude": 39.764, + "longitude": -86.1555, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "IND" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_intuit_dome", + "name": "Intuit Dome", + "city": "Inglewood", + "state": "", + "latitude": 33.9425, + "longitude": -118.3419, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "LAC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "LAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_fedexforum", + "name": "FedExForum", + "city": "Memphis", + "state": "", + "latitude": 35.1382, + "longitude": -90.0506, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MEM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_kaseya_center", + "name": "Kaseya Center", + "city": "Miami", + "state": "", + "latitude": 25.7814, + "longitude": -80.187, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_fiserv_forum", + "name": "Fiserv Forum", + "city": "Milwaukee", + "state": "", + "latitude": 43.0451, + "longitude": -87.9174, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_target_center", + "name": "Target Center", + "city": "Minneapolis", + "state": "", + "latitude": 44.9795, + "longitude": -93.2761, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_smoothie_king_center", + "name": "Smoothie King Center", + "city": "New Orleans", + "state": "", + "latitude": 29.949, + "longitude": -90.0821, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "NOP" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "NYK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_paycom_center", + "name": "Paycom Center", + "city": "Oklahoma City", + "state": "", + "latitude": 35.4634, + "longitude": -97.5151, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "OKC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_kia_center", + "name": "Kia Center", + "city": "Orlando", + "state": "", + "latitude": 28.5392, + "longitude": -81.3839, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "ORL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_footprint_center", + "name": "Footprint Center", + "city": "Phoenix", + "state": "", + "latitude": 33.4457, + "longitude": -112.0712, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHO" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_moda_center", + "name": "Moda Center", + "city": "Portland", + "state": "", + "latitude": 45.5316, + "longitude": -122.6668, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "POR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_golden_1_center", + "name": "Golden 1 Center", + "city": "Sacramento", + "state": "", + "latitude": 38.5802, + "longitude": -121.4997, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_frost_bank_center", + "name": "Frost Bank Center", + "city": "San Antonio", + "state": "", + "latitude": 29.427, + "longitude": -98.4375, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "UTA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nba_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "", + "latitude": 38.8982, + "longitude": -77.0209, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_chase_field", + "name": "Chase Field", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4453, + "longitude": -112.0667, + "capacity": 48686, + "sport": "MLB", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_truist_park", + "name": "Truist Park", + "city": "Atlanta", + "state": "GA", + "latitude": 33.8907, + "longitude": -84.4678, + "capacity": 41084, + "sport": "MLB", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "name": "Oriole Park at Camden Yards", + "city": "Baltimore", + "state": "MD", + "latitude": 39.2838, + "longitude": -76.6218, + "capacity": 45971, + "sport": "MLB", + "primary_team_abbrevs": [ + "BAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_fenway_park", + "name": "Fenway Park", + "city": "Boston", + "state": "MA", + "latitude": 42.3467, + "longitude": -71.0972, + "capacity": 37755, + "sport": "MLB", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_wrigley_field", + "name": "Wrigley Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.9484, + "longitude": -87.6553, + "capacity": 41649, + "sport": "MLB", + "primary_team_abbrevs": [ + "CHC" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_guaranteed_rate_field", + "name": "Guaranteed Rate Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.8299, + "longitude": -87.6338, + "capacity": 40615, + "sport": "MLB", + "primary_team_abbrevs": [ + "CHW" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_great_american_ball_park", + "name": "Great American Ball Park", + "city": "Cincinnati", + "state": "OH", + "latitude": 39.0979, + "longitude": -84.5082, + "capacity": 42319, + "sport": "MLB", + "primary_team_abbrevs": [ + "CIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_progressive_field", + "name": "Progressive Field", + "city": "Cleveland", + "state": "OH", + "latitude": 41.4962, + "longitude": -81.6852, + "capacity": 34830, + "sport": "MLB", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_coors_field", + "name": "Coors Field", + "city": "Denver", + "state": "CO", + "latitude": 39.7559, + "longitude": -104.9942, + "capacity": 50144, + "sport": "MLB", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_comerica_park", + "name": "Comerica Park", + "city": "Detroit", + "state": "MI", + "latitude": 42.339, + "longitude": -83.0485, + "capacity": 41083, + "sport": "MLB", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_minute_maid_park", + "name": "Minute Maid Park", + "city": "Houston", + "state": "TX", + "latitude": 29.7573, + "longitude": -95.3555, + "capacity": 41168, + "sport": "MLB", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_kauffman_stadium", + "name": "Kauffman Stadium", + "city": "Kansas City", + "state": "MO", + "latitude": 39.0517, + "longitude": -94.4803, + "capacity": 37903, + "sport": "MLB", + "primary_team_abbrevs": [ + "KCR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_angel_stadium", + "name": "Angel Stadium", + "city": "Anaheim", + "state": "CA", + "latitude": 33.8003, + "longitude": -117.8827, + "capacity": 45517, + "sport": "MLB", + "primary_team_abbrevs": [ + "LAA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_dodger_stadium", + "name": "Dodger Stadium", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0739, + "longitude": -118.24, + "capacity": 56000, + "sport": "MLB", + "primary_team_abbrevs": [ + "LAD" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_loandepot_park", + "name": "LoanDepot Park", + "city": "Miami", + "state": "FL", + "latitude": 25.7781, + "longitude": -80.2196, + "capacity": 36742, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_american_family_field", + "name": "American Family Field", + "city": "Milwaukee", + "state": "WI", + "latitude": 43.028, + "longitude": -87.9712, + "capacity": 41900, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_target_field", + "name": "Target Field", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9817, + "longitude": -93.2776, + "capacity": 38544, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_citi_field", + "name": "Citi Field", + "city": "New York", + "state": "NY", + "latitude": 40.7571, + "longitude": -73.8458, + "capacity": 41922, + "sport": "MLB", + "primary_team_abbrevs": [ + "NYM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_yankee_stadium", + "name": "Yankee Stadium", + "city": "New York", + "state": "NY", + "latitude": 40.8296, + "longitude": -73.9262, + "capacity": 46537, + "sport": "MLB", + "primary_team_abbrevs": [ + "NYY" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_sutter_health_park", + "name": "Sutter Health Park", + "city": "Sacramento", + "state": "CA", + "latitude": 38.5802, + "longitude": -121.5097, + "capacity": 14014, + "sport": "MLB", + "primary_team_abbrevs": [ + "OAK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_citizens_bank_park", + "name": "Citizens Bank Park", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9061, + "longitude": -75.1665, + "capacity": 42792, + "sport": "MLB", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_pnc_park", + "name": "PNC Park", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4469, + "longitude": -80.0057, + "capacity": 38362, + "sport": "MLB", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_petco_park", + "name": "Petco Park", + "city": "San Diego", + "state": "CA", + "latitude": 32.7076, + "longitude": -117.157, + "capacity": 40209, + "sport": "MLB", + "primary_team_abbrevs": [ + "SDP" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_oracle_park", + "name": "Oracle Park", + "city": "San Francisco", + "state": "CA", + "latitude": 37.7786, + "longitude": -122.3893, + "capacity": 41265, + "sport": "MLB", + "primary_team_abbrevs": [ + "SFG" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_tmobile_park", + "name": "T-Mobile Park", + "city": "Seattle", + "state": "WA", + "latitude": 47.5914, + "longitude": -122.3325, + "capacity": 47929, + "sport": "MLB", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_busch_stadium", + "name": "Busch Stadium", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6226, + "longitude": -90.1928, + "capacity": 45494, + "sport": "MLB", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_tropicana_field", + "name": "Tropicana Field", + "city": "St. Petersburg", + "state": "FL", + "latitude": 27.7682, + "longitude": -82.6534, + "capacity": 25000, + "sport": "MLB", + "primary_team_abbrevs": [ + "TBR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_globe_life_field", + "name": "Globe Life Field", + "city": "Arlington", + "state": "TX", + "latitude": 32.7473, + "longitude": -97.0845, + "capacity": 40300, + "sport": "MLB", + "primary_team_abbrevs": [ + "TEX" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_rogers_centre", + "name": "Rogers Centre", + "city": "Toronto", + "state": "ON", + "latitude": 43.6414, + "longitude": -79.3894, + "capacity": 49282, + "sport": "MLB", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_mlb_nationals_park", + "name": "Nationals Park", + "city": "Washington", + "state": "DC", + "latitude": 38.873, + "longitude": -77.0074, + "capacity": 41339, + "sport": "MLB", + "primary_team_abbrevs": [ + "WSN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_honda_center", + "name": "Honda Center", + "city": "Anaheim", + "state": "CA", + "latitude": 33.8078, + "longitude": -117.8765, + "capacity": 17174, + "sport": "NHL", + "primary_team_abbrevs": [ + "ANA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "UT", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 18306, + "sport": "NHL", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "MA", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 17565, + "sport": "NHL", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_keybank_center", + "name": "KeyBank Center", + "city": "Buffalo", + "state": "NY", + "latitude": 42.875, + "longitude": -78.8764, + "capacity": 19070, + "sport": "NHL", + "primary_team_abbrevs": [ + "BUF" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_scotiabank_saddledome", + "name": "Scotiabank Saddledome", + "city": "Calgary", + "state": "AB", + "latitude": 51.0374, + "longitude": -114.0519, + "capacity": 19289, + "sport": "NHL", + "primary_team_abbrevs": [ + "CGY" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_pnc_arena", + "name": "PNC Arena", + "city": "Raleigh", + "state": "NC", + "latitude": 35.8034, + "longitude": -78.722, + "capacity": 18680, + "sport": "NHL", + "primary_team_abbrevs": [ + "CAR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_united_center", + "name": "United Center", + "city": "Chicago", + "state": "IL", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 19717, + "sport": "NHL", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "CO", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 18007, + "sport": "NHL", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_nationwide_arena", + "name": "Nationwide Arena", + "city": "Columbus", + "state": "OH", + "latitude": 39.9693, + "longitude": -83.0061, + "capacity": 18500, + "sport": "NHL", + "primary_team_abbrevs": [ + "CBJ" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "TX", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 18532, + "sport": "NHL", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "MI", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 19515, + "sport": "NHL", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_rogers_place", + "name": "Rogers Place", + "city": "Edmonton", + "state": "AB", + "latitude": 53.5469, + "longitude": -113.4978, + "capacity": 18347, + "sport": "NHL", + "primary_team_abbrevs": [ + "EDM" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_amerant_bank_arena", + "name": "Amerant Bank Arena", + "city": "Sunrise", + "state": "FL", + "latitude": 26.1584, + "longitude": -80.3256, + "capacity": 19250, + "sport": "NHL", + "primary_team_abbrevs": [ + "FLA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 18230, + "sport": "NHL", + "primary_team_abbrevs": [ + "LAK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_xcel_energy_center", + "name": "Xcel Energy Center", + "city": "St. Paul", + "state": "MN", + "latitude": 44.9448, + "longitude": -93.101, + "capacity": 17954, + "sport": "NHL", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_bell_centre", + "name": "Bell Centre", + "city": "Montreal", + "state": "QC", + "latitude": 45.4961, + "longitude": -73.5693, + "capacity": 21302, + "sport": "NHL", + "primary_team_abbrevs": [ + "MTL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_bridgestone_arena", + "name": "Bridgestone Arena", + "city": "Nashville", + "state": "TN", + "latitude": 36.1592, + "longitude": -86.7785, + "capacity": 17159, + "sport": "NHL", + "primary_team_abbrevs": [ + "NSH" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_prudential_center", + "name": "Prudential Center", + "city": "Newark", + "state": "NJ", + "latitude": 40.7334, + "longitude": -74.1712, + "capacity": 16514, + "sport": "NHL", + "primary_team_abbrevs": [ + "NJD" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ubs_arena", + "name": "UBS Arena", + "city": "Elmont", + "state": "NY", + "latitude": 40.7161, + "longitude": -73.7246, + "capacity": 17255, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "NY", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 18006, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_canadian_tire_centre", + "name": "Canadian Tire Centre", + "city": "Ottawa", + "state": "ON", + "latitude": 45.2969, + "longitude": -75.9272, + "capacity": 18652, + "sport": "NHL", + "primary_team_abbrevs": [ + "OTT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 19543, + "sport": "NHL", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_ppg_paints_arena", + "name": "PPG Paints Arena", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4395, + "longitude": -79.9892, + "capacity": 18387, + "sport": "NHL", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_sap_center", + "name": "SAP Center", + "city": "San Jose", + "state": "CA", + "latitude": 37.3327, + "longitude": -121.901, + "capacity": 17562, + "sport": "NHL", + "primary_team_abbrevs": [ + "SJS" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_climate_pledge_arena", + "name": "Climate Pledge Arena", + "city": "Seattle", + "state": "WA", + "latitude": 47.6221, + "longitude": -122.354, + "capacity": 17100, + "sport": "NHL", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_enterprise_center", + "name": "Enterprise Center", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6268, + "longitude": -90.2025, + "capacity": 18096, + "sport": "NHL", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_amalie_arena", + "name": "Amalie Arena", + "city": "Tampa", + "state": "FL", + "latitude": 27.9426, + "longitude": -82.4519, + "capacity": 19092, + "sport": "NHL", + "primary_team_abbrevs": [ + "TBL" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "ON", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 18819, + "sport": "NHL", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_rogers_arena", + "name": "Rogers Arena", + "city": "Vancouver", + "state": "BC", + "latitude": 49.2778, + "longitude": -123.1089, + "capacity": 18910, + "sport": "NHL", + "primary_team_abbrevs": [ + "VAN" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_tmobile_arena", + "name": "T-Mobile Arena", + "city": "Las Vegas", + "state": "NV", + "latitude": 36.1028, + "longitude": -115.1784, + "capacity": 17500, + "sport": "NHL", + "primary_team_abbrevs": [ + "VGK" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "DC", + "latitude": 38.8982, + "longitude": -77.0209, + "capacity": 18573, + "sport": "NHL", + "primary_team_abbrevs": [ + "WSH" + ], + "year_opened": null + }, + { + "canonical_id": "stadium_nhl_canada_life_centre", + "name": "Canada Life Centre", + "city": "Winnipeg", + "state": "MB", + "latitude": 49.8928, + "longitude": -97.1436, + "capacity": 15321, + "sport": "NHL", + "primary_team_abbrevs": [ + "WPG" + ], + "year_opened": null + } +] \ No newline at end of file diff --git a/SportsTime/Resources/teams_canonical.json b/SportsTime/Resources/teams_canonical.json new file mode 100644 index 0000000..68ee9c4 --- /dev/null +++ b/SportsTime/Resources/teams_canonical.json @@ -0,0 +1,1106 @@ +[ + { + "canonical_id": "team_nba_atl", + "name": "Atlanta Hawks", + "abbreviation": "ATL", + "sport": "NBA", + "city": "Atlanta", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_bos", + "name": "Boston Celtics", + "abbreviation": "BOS", + "sport": "NBA", + "city": "Boston", + "stadium_canonical_id": "stadium_nba_td_garden", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_brk", + "name": "Brooklyn Nets", + "abbreviation": "BRK", + "sport": "NBA", + "city": "Brooklyn", + "stadium_canonical_id": "stadium_nba_barclays_center", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_cho", + "name": "Charlotte Hornets", + "abbreviation": "CHO", + "sport": "NBA", + "city": "Charlotte", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_chi", + "name": "Chicago Bulls", + "abbreviation": "CHI", + "sport": "NBA", + "city": "Chicago", + "stadium_canonical_id": "stadium_nba_united_center", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_cle", + "name": "Cleveland Cavaliers", + "abbreviation": "CLE", + "sport": "NBA", + "city": "Cleveland", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_dal", + "name": "Dallas Mavericks", + "abbreviation": "DAL", + "sport": "NBA", + "city": "Dallas", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_den", + "name": "Denver Nuggets", + "abbreviation": "DEN", + "sport": "NBA", + "city": "Denver", + "stadium_canonical_id": "stadium_nba_ball_arena", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_det", + "name": "Detroit Pistons", + "abbreviation": "DET", + "sport": "NBA", + "city": "Detroit", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_gsw", + "name": "Golden State Warriors", + "abbreviation": "GSW", + "sport": "NBA", + "city": "San Francisco", + "stadium_canonical_id": "stadium_nba_chase_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_hou", + "name": "Houston Rockets", + "abbreviation": "HOU", + "sport": "NBA", + "city": "Houston", + "stadium_canonical_id": "stadium_nba_toyota_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_ind", + "name": "Indiana Pacers", + "abbreviation": "IND", + "sport": "NBA", + "city": "Indianapolis", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_lac", + "name": "Los Angeles Clippers", + "abbreviation": "LAC", + "sport": "NBA", + "city": "Inglewood", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_lal", + "name": "Los Angeles Lakers", + "abbreviation": "LAL", + "sport": "NBA", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mem", + "name": "Memphis Grizzlies", + "abbreviation": "MEM", + "sport": "NBA", + "city": "Memphis", + "stadium_canonical_id": "stadium_nba_fedexforum", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mia", + "name": "Miami Heat", + "abbreviation": "MIA", + "sport": "NBA", + "city": "Miami", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_mil", + "name": "Milwaukee Bucks", + "abbreviation": "MIL", + "sport": "NBA", + "city": "Milwaukee", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "conference_id": "nba_eastern", + "division_id": "nba_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_min", + "name": "Minnesota Timberwolves", + "abbreviation": "MIN", + "sport": "NBA", + "city": "Minneapolis", + "stadium_canonical_id": "stadium_nba_target_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_nop", + "name": "New Orleans Pelicans", + "abbreviation": "NOP", + "sport": "NBA", + "city": "New Orleans", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_nyk", + "name": "New York Knicks", + "abbreviation": "NYK", + "sport": "NBA", + "city": "New York", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_okc", + "name": "Oklahoma City Thunder", + "abbreviation": "OKC", + "sport": "NBA", + "city": "Oklahoma City", + "stadium_canonical_id": "stadium_nba_paycom_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_orl", + "name": "Orlando Magic", + "abbreviation": "ORL", + "sport": "NBA", + "city": "Orlando", + "stadium_canonical_id": "stadium_nba_kia_center", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_phi", + "name": "Philadelphia 76ers", + "abbreviation": "PHI", + "sport": "NBA", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_pho", + "name": "Phoenix Suns", + "abbreviation": "PHO", + "sport": "NBA", + "city": "Phoenix", + "stadium_canonical_id": "stadium_nba_footprint_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_por", + "name": "Portland Trail Blazers", + "abbreviation": "POR", + "sport": "NBA", + "city": "Portland", + "stadium_canonical_id": "stadium_nba_moda_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_sac", + "name": "Sacramento Kings", + "abbreviation": "SAC", + "sport": "NBA", + "city": "Sacramento", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "conference_id": "nba_western", + "division_id": "nba_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_sas", + "name": "San Antonio Spurs", + "abbreviation": "SAS", + "sport": "NBA", + "city": "San Antonio", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "conference_id": "nba_western", + "division_id": "nba_southwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_tor", + "name": "Toronto Raptors", + "abbreviation": "TOR", + "sport": "NBA", + "city": "Toronto", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "conference_id": "nba_eastern", + "division_id": "nba_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_uta", + "name": "Utah Jazz", + "abbreviation": "UTA", + "sport": "NBA", + "city": "Salt Lake City", + "stadium_canonical_id": "stadium_nba_delta_center", + "conference_id": "nba_western", + "division_id": "nba_northwest", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nba_was", + "name": "Washington Wizards", + "abbreviation": "WAS", + "sport": "NBA", + "city": "Washington", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "conference_id": "nba_eastern", + "division_id": "nba_southeast", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_ari", + "name": "Arizona Diamondbacks", + "abbreviation": "ARI", + "sport": "MLB", + "city": "Phoenix", + "stadium_canonical_id": "stadium_mlb_chase_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_atl", + "name": "Atlanta Braves", + "abbreviation": "ATL", + "sport": "MLB", + "city": "Atlanta", + "stadium_canonical_id": "stadium_mlb_truist_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_bal", + "name": "Baltimore Orioles", + "abbreviation": "BAL", + "sport": "MLB", + "city": "Baltimore", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_bos", + "name": "Boston Red Sox", + "abbreviation": "BOS", + "sport": "MLB", + "city": "Boston", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_chc", + "name": "Chicago Cubs", + "abbreviation": "CHC", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_chw", + "name": "Chicago White Sox", + "abbreviation": "CHW", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_cin", + "name": "Cincinnati Reds", + "abbreviation": "CIN", + "sport": "MLB", + "city": "Cincinnati", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_cle", + "name": "Cleveland Guardians", + "abbreviation": "CLE", + "sport": "MLB", + "city": "Cleveland", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_col", + "name": "Colorado Rockies", + "abbreviation": "COL", + "sport": "MLB", + "city": "Denver", + "stadium_canonical_id": "stadium_mlb_coors_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_det", + "name": "Detroit Tigers", + "abbreviation": "DET", + "sport": "MLB", + "city": "Detroit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_hou", + "name": "Houston Astros", + "abbreviation": "HOU", + "sport": "MLB", + "city": "Houston", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_kcr", + "name": "Kansas City Royals", + "abbreviation": "KCR", + "sport": "MLB", + "city": "Kansas City", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_laa", + "name": "Los Angeles Angels", + "abbreviation": "LAA", + "sport": "MLB", + "city": "Anaheim", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_lad", + "name": "Los Angeles Dodgers", + "abbreviation": "LAD", + "sport": "MLB", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_mia", + "name": "Miami Marlins", + "abbreviation": "MIA", + "sport": "MLB", + "city": "Miami", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_mil", + "name": "Milwaukee Brewers", + "abbreviation": "MIL", + "sport": "MLB", + "city": "Milwaukee", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_min", + "name": "Minnesota Twins", + "abbreviation": "MIN", + "sport": "MLB", + "city": "Minneapolis", + "stadium_canonical_id": "stadium_mlb_target_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_nym", + "name": "New York Mets", + "abbreviation": "NYM", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_citi_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_nyy", + "name": "New York Yankees", + "abbreviation": "NYY", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_oak", + "name": "Oakland Athletics", + "abbreviation": "OAK", + "sport": "MLB", + "city": "Sacramento", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_phi", + "name": "Philadelphia Phillies", + "abbreviation": "PHI", + "sport": "MLB", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_pit", + "name": "Pittsburgh Pirates", + "abbreviation": "PIT", + "sport": "MLB", + "city": "Pittsburgh", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sdp", + "name": "San Diego Padres", + "abbreviation": "SDP", + "sport": "MLB", + "city": "San Diego", + "stadium_canonical_id": "stadium_mlb_petco_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sfg", + "name": "San Francisco Giants", + "abbreviation": "SFG", + "sport": "MLB", + "city": "San Francisco", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_sea", + "name": "Seattle Mariners", + "abbreviation": "SEA", + "sport": "MLB", + "city": "Seattle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_stl", + "name": "St. Louis Cardinals", + "abbreviation": "STL", + "sport": "MLB", + "city": "St. Louis", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tbr", + "name": "Tampa Bay Rays", + "abbreviation": "TBR", + "sport": "MLB", + "city": "St. Petersburg", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tex", + "name": "Texas Rangers", + "abbreviation": "TEX", + "sport": "MLB", + "city": "Arlington", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_tor", + "name": "Toronto Blue Jays", + "abbreviation": "TOR", + "sport": "MLB", + "city": "Toronto", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_mlb_wsn", + "name": "Washington Nationals", + "abbreviation": "WSN", + "sport": "MLB", + "city": "Washington", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ana", + "name": "Anaheim Ducks", + "abbreviation": "ANA", + "sport": "NHL", + "city": "Anaheim", + "stadium_canonical_id": "stadium_nhl_honda_center", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ari", + "name": "Utah Hockey Club", + "abbreviation": "ARI", + "sport": "NHL", + "city": "Salt Lake City", + "stadium_canonical_id": "stadium_nhl_delta_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_bos", + "name": "Boston Bruins", + "abbreviation": "BOS", + "sport": "NHL", + "city": "Boston", + "stadium_canonical_id": "stadium_nhl_td_garden", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_buf", + "name": "Buffalo Sabres", + "abbreviation": "BUF", + "sport": "NHL", + "city": "Buffalo", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_cgy", + "name": "Calgary Flames", + "abbreviation": "CGY", + "sport": "NHL", + "city": "Calgary", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_car", + "name": "Carolina Hurricanes", + "abbreviation": "CAR", + "sport": "NHL", + "city": "Raleigh", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_chi", + "name": "Chicago Blackhawks", + "abbreviation": "CHI", + "sport": "NHL", + "city": "Chicago", + "stadium_canonical_id": "stadium_nhl_united_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_col", + "name": "Colorado Avalanche", + "abbreviation": "COL", + "sport": "NHL", + "city": "Denver", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_cbj", + "name": "Columbus Blue Jackets", + "abbreviation": "CBJ", + "sport": "NHL", + "city": "Columbus", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_dal", + "name": "Dallas Stars", + "abbreviation": "DAL", + "sport": "NHL", + "city": "Dallas", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_det", + "name": "Detroit Red Wings", + "abbreviation": "DET", + "sport": "NHL", + "city": "Detroit", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_edm", + "name": "Edmonton Oilers", + "abbreviation": "EDM", + "sport": "NHL", + "city": "Edmonton", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_fla", + "name": "Florida Panthers", + "abbreviation": "FLA", + "sport": "NHL", + "city": "Sunrise", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_lak", + "name": "Los Angeles Kings", + "abbreviation": "LAK", + "sport": "NHL", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_min", + "name": "Minnesota Wild", + "abbreviation": "MIN", + "sport": "NHL", + "city": "St. Paul", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_mtl", + "name": "Montreal Canadiens", + "abbreviation": "MTL", + "sport": "NHL", + "city": "Montreal", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nsh", + "name": "Nashville Predators", + "abbreviation": "NSH", + "sport": "NHL", + "city": "Nashville", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_njd", + "name": "New Jersey Devils", + "abbreviation": "NJD", + "sport": "NHL", + "city": "Newark", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nyi", + "name": "New York Islanders", + "abbreviation": "NYI", + "sport": "NHL", + "city": "Elmont", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_nyr", + "name": "New York Rangers", + "abbreviation": "NYR", + "sport": "NHL", + "city": "New York", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_ott", + "name": "Ottawa Senators", + "abbreviation": "OTT", + "sport": "NHL", + "city": "Ottawa", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_phi", + "name": "Philadelphia Flyers", + "abbreviation": "PHI", + "sport": "NHL", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_pit", + "name": "Pittsburgh Penguins", + "abbreviation": "PIT", + "sport": "NHL", + "city": "Pittsburgh", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_sjs", + "name": "San Jose Sharks", + "abbreviation": "SJS", + "sport": "NHL", + "city": "San Jose", + "stadium_canonical_id": "stadium_nhl_sap_center", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_sea", + "name": "Seattle Kraken", + "abbreviation": "SEA", + "sport": "NHL", + "city": "Seattle", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_stl", + "name": "St. Louis Blues", + "abbreviation": "STL", + "sport": "NHL", + "city": "St. Louis", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_tbl", + "name": "Tampa Bay Lightning", + "abbreviation": "TBL", + "sport": "NHL", + "city": "Tampa", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_tor", + "name": "Toronto Maple Leafs", + "abbreviation": "TOR", + "sport": "NHL", + "city": "Toronto", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_atlantic", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_van", + "name": "Vancouver Canucks", + "abbreviation": "VAN", + "sport": "NHL", + "city": "Vancouver", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_vgk", + "name": "Vegas Golden Knights", + "abbreviation": "VGK", + "sport": "NHL", + "city": "Las Vegas", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "conference_id": "nhl_western", + "division_id": "nhl_pacific", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_wsh", + "name": "Washington Capitals", + "abbreviation": "WSH", + "sport": "NHL", + "city": "Washington", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "conference_id": "nhl_eastern", + "division_id": "nhl_metropolitan", + "primary_color": null, + "secondary_color": null + }, + { + "canonical_id": "team_nhl_wpg", + "name": "Winnipeg Jets", + "abbreviation": "WPG", + "sport": "NHL", + "city": "Winnipeg", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": null, + "secondary_color": null + } +] \ No newline at end of file