From 999b5a1190f69d05ad2a6380874411a87b064a97 Mon Sep 17 00:00:00 2001 From: Trey t Date: Thu, 19 Feb 2026 11:43:39 -0600 Subject: [PATCH] Fix game times with UTC data, restructure schedule by date - Update games_canonical.json to use ISO 8601 UTC timestamps (game_datetime_utc) - Fix BootstrapService timezone-aware parsing for venue-local fallback - Fix thread-unsafe shared DateFormatter in RichGame local time display - Bump SchemaVersion to 4 to force re-bootstrap with correct UTC data - Restructure schedule view: group by date instead of sport, with sport icons on each row and date section headers showing game counts - Fix schedule row backgrounds using Theme.cardBackground instead of black - Sort games by UTC time with local-time tiebreaker for same-instant games Co-Authored-By: Claude Opus 4.6 --- .../xcschemes/SportsTime.xcscheme | 3 +- SportsTime/Core/Models/Domain/Game.swift | 8 +- .../Core/Models/Local/CanonicalModels.swift | 2 +- .../Core/Services/BootstrapService.swift | 45 +- .../ViewModels/ScheduleViewModel.swift | 27 +- .../Schedule/Views/ScheduleListView.swift | 149 +- .../Trip/Views/AddItem/CategoryPicker.swift | 176 - .../Features/Trip/Views/AddItemSheet.swift | 85 +- .../Features/Trip/Views/TripDetailView.swift | 16 +- SportsTime/Resources/games_canonical.json | 19875 ++++++---------- .../Export/POISearchServiceTests.swift | 3 +- sportstime_export/games_canonical.json | 19875 ++++++---------- 12 files changed, 13387 insertions(+), 26877 deletions(-) delete mode 100644 SportsTime/Features/Trip/Views/AddItem/CategoryPicker.swift diff --git a/SportsTime.xcodeproj/xcshareddata/xcschemes/SportsTime.xcscheme b/SportsTime.xcodeproj/xcshareddata/xcschemes/SportsTime.xcscheme index f670ef8..aca9703 100644 --- a/SportsTime.xcodeproj/xcshareddata/xcschemes/SportsTime.xcscheme +++ b/SportsTime.xcodeproj/xcshareddata/xcschemes/SportsTime.xcscheme @@ -42,8 +42,7 @@ + skipped = "NO"> ())) ?? [] let stadiumByTeamId = Dictionary(uniqueKeysWithValues: teams.map { ($0.canonicalId, $0.stadiumCanonicalId) }) + // Build stadium timezone lookup for correct local time parsing + let stadiums = (try? context.fetch(FetchDescriptor())) ?? [] + let timezoneByStadiumId: [String: TimeZone] = stadiums.reduce(into: [:]) { dict, stadium in + if let tzId = stadium.timezoneIdentifier, let tz = TimeZone(identifier: tzId) { + dict[stadium.canonicalId] = tz + } + } + for jsonGame in games { // Deduplicate guard !seenGameIds.contains(jsonGame.canonical_id) else { continue } seenGameIds.insert(jsonGame.canonical_id) - // Parse datetime: prefer ISO 8601 format, fall back to date+time - let dateTime: Date? - if let iso8601String = jsonGame.game_datetime_utc { - dateTime = parseISO8601(iso8601String) - } else if let date = jsonGame.date { - dateTime = parseDateTime(date: date, time: jsonGame.time ?? "7:00p") - } else { - dateTime = nil - } - - guard let dateTime else { continue } - + // Resolve stadium ID first (needed for timezone lookup) let explicitStadium = jsonGame.stadium_canonical_id? .trimmingCharacters(in: .whitespacesAndNewlines) let resolvedStadiumCanonicalId: String @@ -445,6 +442,20 @@ final class BootstrapService { resolvedStadiumCanonicalId = "stadium_placeholder_\(jsonGame.canonical_id)" } + // Parse datetime: prefer ISO 8601 format, fall back to date+time + // Times in JSON are venue-local, so parse in the stadium's timezone + let venueTimeZone = timezoneByStadiumId[resolvedStadiumCanonicalId] + let dateTime: Date? + if let iso8601String = jsonGame.game_datetime_utc { + dateTime = parseISO8601(iso8601String) + } else if let date = jsonGame.date { + dateTime = parseDateTime(date: date, time: jsonGame.time ?? "7:00p", timeZone: venueTimeZone) + } else { + dateTime = nil + } + + guard let dateTime else { continue } + let game = CanonicalGame( canonicalId: jsonGame.canonical_id, schemaVersion: SchemaVersion.current, @@ -534,10 +545,14 @@ final class BootstrapService { return formatter.date(from: string) } - nonisolated private func parseDateTime(date: String, time: String) -> Date? { + nonisolated private func parseDateTime(date: String, time: String, timeZone: TimeZone? = nil) -> Date? { let formatter = DateFormatter() formatter.locale = Locale(identifier: "en_US_POSIX") + // Use the venue's timezone so "1:05p" is interpreted as 1:05 PM at the stadium + let tz = timeZone ?? .current + formatter.timeZone = tz + // Parse date formatter.dateFormat = "yyyy-MM-dd" guard let dateOnly = formatter.date(from: date) else { return nil } @@ -563,7 +578,9 @@ final class BootstrapService { minute = m } - return Calendar.current.date(bySettingHour: hour, minute: minute, second: 0, of: dateOnly) + var calendar = Calendar.current + calendar.timeZone = tz + return calendar.date(bySettingHour: hour, minute: minute, second: 0, of: dateOnly) } nonisolated private func stateFromCity(_ city: String) -> String { diff --git a/SportsTime/Features/Schedule/ViewModels/ScheduleViewModel.swift b/SportsTime/Features/Schedule/ViewModels/ScheduleViewModel.swift index a6a6b97..5889a98 100644 --- a/SportsTime/Features/Schedule/ViewModels/ScheduleViewModel.swift +++ b/SportsTime/Features/Schedule/ViewModels/ScheduleViewModel.swift @@ -32,8 +32,8 @@ final class ScheduleViewModel { // MARK: - Pre-computed Groupings (avoid computed property overhead) - /// Games grouped by sport - pre-computed to avoid re-grouping on every render - private(set) var gamesBySport: [(sport: Sport, games: [RichGame])] = [] + /// Games grouped by date - pre-computed to avoid re-grouping on every render + private(set) var gamesByDate: [(date: Date, games: [RichGame])] = [] /// All games matching current filters (before any display limiting) private var filteredGames: [RichGame] = [] @@ -193,15 +193,20 @@ final class ScheduleViewModel { } } - // Step 2: Pre-compute grouping by sport (done once, not per-render) - let grouped = Dictionary(grouping: filteredGames) { $0.game.sport } - gamesBySport = grouped - .sorted { lhs, rhs in - let lhsIndex = Sport.allCases.firstIndex(of: lhs.key) ?? 0 - let rhsIndex = Sport.allCases.firstIndex(of: rhs.key) ?? 0 - return lhsIndex < rhsIndex - } - .map { (sport: $0.key, games: $0.value.sorted { $0.game.dateTime < $1.game.dateTime }) } + // Step 2: Pre-compute grouping by date (done once, not per-render) + let calendar = Calendar.current + let grouped = Dictionary(grouping: filteredGames) { calendar.startOfDay(for: $0.game.dateTime) } + gamesByDate = grouped + .sorted { $0.key < $1.key } + .map { (date: $0.key, games: $0.value.sorted { lhs, rhs in + if lhs.game.dateTime == rhs.game.dateTime { + // Same UTC time: sort by local display time (earlier local times first) + let lhsOffset = lhs.stadium.timeZone?.secondsFromGMT(for: lhs.game.dateTime) ?? 0 + let rhsOffset = rhs.stadium.timeZone?.secondsFromGMT(for: rhs.game.dateTime) ?? 0 + return lhsOffset < rhsOffset + } + return lhs.game.dateTime < rhs.game.dateTime + }) } } } diff --git a/SportsTime/Features/Schedule/Views/ScheduleListView.swift b/SportsTime/Features/Schedule/Views/ScheduleListView.swift index 6b06d2e..b8bef4b 100644 --- a/SportsTime/Features/Schedule/Views/ScheduleListView.swift +++ b/SportsTime/Features/Schedule/Views/ScheduleListView.swift @@ -12,7 +12,7 @@ struct ScheduleListView: View { @State private var showDiagnostics = false private var hasGames: Bool { - !viewModel.gamesBySport.isEmpty + !viewModel.gamesByDate.isEmpty } var body: some View { @@ -109,16 +109,31 @@ struct ScheduleListView: View { .listRowBackground(Color.clear) } - ForEach(viewModel.gamesBySport, id: \.sport) { sportGroup in + ForEach(viewModel.gamesByDate, id: \.date) { dateGroup in Section { - ForEach(sportGroup.games) { richGame in - GameRowView(game: richGame, showDate: true, showLocation: true) + ForEach(dateGroup.games) { richGame in + GameRowView(game: richGame, showSport: true, showLocation: true) } } header: { - HStack(spacing: 8) { - Image(systemName: sportGroup.sport.iconName) - .accessibilityHidden(true) - Text(sportGroup.sport.rawValue) + HStack { + Text(formatSectionDate(dateGroup.date)) + + if Calendar.current.isDateInToday(dateGroup.date) { + Text("TODAY") + .font(.caption2) + .fontWeight(.bold) + .foregroundStyle(.white) + .padding(.horizontal, 6) + .padding(.vertical, 2) + .background(Color.orange) + .clipShape(Capsule()) + } + + Spacer() + + Text("\(dateGroup.games.count) games") + .font(.caption) + .foregroundStyle(.secondary) } .font(.headline) } @@ -233,98 +248,70 @@ struct SportFilterChip: View { // MARK: - Game Row View struct GameRowView: View { + @Environment(\.colorScheme) private var colorScheme let game: RichGame - var showDate: Bool = false + var showSport: Bool = false var showLocation: Bool = false - // Static formatter to avoid allocation per row (significant performance improvement) - private static let dateFormatter: DateFormatter = { - let formatter = DateFormatter() - formatter.dateFormat = "EEE, MMM d" - return formatter - }() - - // Cache isToday check to avoid repeated Calendar calls - private var isToday: Bool { - Calendar.current.isDateInToday(game.game.dateTime) - } - var body: some View { - VStack(alignment: .leading, spacing: 8) { - // Date (when grouped by sport) - if showDate { - HStack(spacing: 6) { - Text(Self.dateFormatter.string(from: game.game.dateTime)) - .font(.caption) - .fontWeight(.medium) - .foregroundStyle(.secondary) - - if isToday { - Text("TODAY") - .font(.caption2) - .fontWeight(.bold) - .foregroundStyle(.white) - .padding(.horizontal, 6) - .padding(.vertical, 2) - .background(Color.orange) - .clipShape(Capsule()) - } - } + HStack(spacing: 12) { + // Sport icon + if showSport { + Image(systemName: game.game.sport.iconName) + .font(.title3) + .foregroundStyle(game.game.sport.themeColor) + .frame(width: 28) + .accessibilityLabel(game.game.sport.rawValue) } - // Teams - HStack { - VStack(alignment: .leading, spacing: 4) { - HStack(spacing: 8) { - TeamBadge(team: game.awayTeam, isHome: false) - Text("@") + VStack(alignment: .leading, spacing: 6) { + // Teams + HStack(spacing: 8) { + TeamBadge(team: game.awayTeam, isHome: false) + Text("@") + .font(.caption) + .foregroundStyle(.secondary) + TeamBadge(team: game.homeTeam, isHome: true) + } + + // Game info + HStack(spacing: 12) { + Label(game.localGameTimeShort, systemImage: "clock") + Label(game.stadium.name, systemImage: "building.2") + .lineLimit(1) + + if let broadcast = game.game.broadcastInfo { + Label(broadcast, systemImage: "tv") + } + } + .font(.caption) + .foregroundStyle(.secondary) + + // Location + if showLocation { + HStack(spacing: 4) { + Image(systemName: "mappin.circle.fill") + .font(.caption2) + .foregroundStyle(.tertiary) + .accessibilityHidden(true) + Text(game.stadium.city) .font(.caption) .foregroundStyle(.secondary) - TeamBadge(team: game.homeTeam, isHome: true) } } - - Spacer() - } - - // Game info - HStack(spacing: 12) { - Label(game.localGameTimeShort, systemImage: "clock") - Label(game.stadium.name, systemImage: "building.2") - - if let broadcast = game.game.broadcastInfo { - Label(broadcast, systemImage: "tv") - } - } - .font(.caption) - .foregroundStyle(.secondary) - - // Location info (when grouped by game) - if showLocation { - HStack(spacing: 4) { - Image(systemName: "mappin.circle.fill") - .font(.caption2) - .foregroundStyle(.tertiary) - .accessibilityHidden(true) - Text(game.stadium.city) - .font(.caption) - .foregroundStyle(.secondary) - } } } .padding(.vertical, 4) - .listRowBackground(isToday ? Color.orange.opacity(0.1) : nil) .accessibilityElement(children: .ignore) .accessibilityLabel(gameAccessibilityLabel) } private var gameAccessibilityLabel: String { - var parts = ["\(game.awayTeam.name) at \(game.homeTeam.name)"] - parts.append(game.stadium.name) + var parts: [String] = [] + if showSport { parts.append(game.game.sport.rawValue) } + parts.append("\(game.awayTeam.name) at \(game.homeTeam.name)") parts.append(game.localGameTimeShort) - if showDate { - parts.append(Self.dateFormatter.string(from: game.game.dateTime)) - } + parts.append(game.stadium.name) return parts.joined(separator: ", ") } } diff --git a/SportsTime/Features/Trip/Views/AddItem/CategoryPicker.swift b/SportsTime/Features/Trip/Views/AddItem/CategoryPicker.swift deleted file mode 100644 index a20dce3..0000000 --- a/SportsTime/Features/Trip/Views/AddItem/CategoryPicker.swift +++ /dev/null @@ -1,176 +0,0 @@ -// -// CategoryPicker.swift -// SportsTime -// -// Polished category picker for custom itinerary items -// - -import SwiftUI - -/// Category picker with labeled pills in a grid layout -struct CategoryPicker: View { - @Binding var selectedCategory: ItemCategory - @Environment(\.colorScheme) private var colorScheme - - /// Dynamic columns that adapt to accessibility text sizes - private var columns: [GridItem] { - [ - GridItem(.flexible(), spacing: Theme.Spacing.sm), - GridItem(.flexible(), spacing: Theme.Spacing.sm), - GridItem(.flexible(), spacing: Theme.Spacing.sm) - ] - } - - var body: some View { - LazyVGrid(columns: columns, spacing: Theme.Spacing.sm) { - ForEach(ItemCategory.allCases, id: \.self) { category in - CategoryPill( - category: category, - isSelected: selectedCategory == category, - colorScheme: colorScheme - ) { - Theme.Animation.withMotion(Theme.Animation.spring) { - selectedCategory = category - } - } - } - } - } -} - -/// Individual category pill with emoji icon and label -private struct CategoryPill: View { - let category: ItemCategory - let isSelected: Bool - let colorScheme: ColorScheme - let onTap: () -> Void - - var body: some View { - Button(action: onTap) { - VStack(spacing: Theme.Spacing.xs) { - // Emoji with background circle - ZStack { - Circle() - .fill(emojiBackground) - .frame(width: 44, height: 44) - - Text(category.icon) - .font(.system(size: 24)) - } - .shadow( - color: isSelected ? Theme.warmOrange.opacity(0.3) : .clear, - radius: 6, - y: 2 - ) - - Text(category.label) - .font(.caption) - .fontWeight(isSelected ? .semibold : .medium) - .foregroundStyle(labelColor) - } - .frame(maxWidth: .infinity) - .padding(.vertical, Theme.Spacing.md) - .padding(.horizontal, Theme.Spacing.xs) - .background(pillBackground) - .clipShape(RoundedRectangle(cornerRadius: Theme.CornerRadius.medium)) - .overlay( - RoundedRectangle(cornerRadius: Theme.CornerRadius.medium) - .strokeBorder(borderColor, lineWidth: isSelected ? 2 : 1) - ) - .shadow( - color: isSelected ? Theme.warmOrange.opacity(0.15) : .clear, - radius: 8, - y: 4 - ) - } - .buttonStyle(CategoryPillButtonStyle()) - .accessibilityLabel(category.label) - .accessibilityHint("Category for \(category.label.lowercased()) items") - .accessibilityAddTraits(isSelected ? [.isButton, .isSelected] : .isButton) - } - - private var emojiBackground: Color { - if isSelected { - return Theme.warmOrange.opacity(0.2) - } else { - return Theme.cardBackgroundElevated(colorScheme) - } - } - - private var pillBackground: Color { - if isSelected { - return Theme.warmOrange.opacity(0.08) - } else { - return Theme.cardBackground(colorScheme) - } - } - - private var borderColor: Color { - if isSelected { - return Theme.warmOrange - } else { - return Theme.surfaceGlow(colorScheme) - } - } - - private var labelColor: Color { - if isSelected { - return Theme.warmOrange - } else { - return Theme.textSecondary(colorScheme) - } - } -} - -/// Custom button style with scale effect on press -private struct CategoryPillButtonStyle: ButtonStyle { - func makeBody(configuration: Configuration) -> some View { - configuration.label - .scaleEffect(configuration.isPressed ? 0.95 : 1.0) - .animation(Theme.Animation.prefersReducedMotion ? nil : .spring(response: 0.3, dampingFraction: 0.7), value: configuration.isPressed) - } -} - -// MARK: - Previews - -#Preview("Light Mode") { - struct PreviewWrapper: View { - @State private var selected: ItemCategory = .restaurant - - var body: some View { - VStack(spacing: 20) { - CategoryPicker(selectedCategory: $selected) - .padding() - - Text("Selected: \(selected.label)") - .foregroundStyle(.secondary) - } - .padding() - .background(Color(.systemGroupedBackground)) - } - } - - return PreviewWrapper() - .preferredColorScheme(.light) -} - -#Preview("Dark Mode") { - struct PreviewWrapper: View { - @State private var selected: ItemCategory = .attraction - - var body: some View { - VStack(spacing: 20) { - CategoryPicker(selectedCategory: $selected) - .padding() - - Text("Selected: \(selected.label)") - .foregroundStyle(.secondary) - } - .padding() - .background(Color(.systemGroupedBackground)) - } - } - - return PreviewWrapper() - .preferredColorScheme(.dark) -} diff --git a/SportsTime/Features/Trip/Views/AddItemSheet.swift b/SportsTime/Features/Trip/Views/AddItemSheet.swift index a392ae1..211626b 100644 --- a/SportsTime/Features/Trip/Views/AddItemSheet.swift +++ b/SportsTime/Features/Trip/Views/AddItemSheet.swift @@ -8,35 +8,6 @@ import SwiftUI import MapKit -/// Category for custom itinerary items with emoji icons -enum ItemCategory: String, CaseIterable { - case restaurant - case attraction - case fuel - case hotel - case other - - var icon: String { - switch self { - case .restaurant: return "\u{1F37D}" // 🍽️ - case .attraction: return "\u{1F3A2}" // 🎢 - case .fuel: return "\u{26FD}" // ⛽ - case .hotel: return "\u{1F3E8}" // 🏨 - case .other: return "\u{1F4CC}" // 📌 - } - } - - var label: String { - switch self { - case .restaurant: return "Eat" - case .attraction: return "See" - case .fuel: return "Fuel" - case .hotel: return "Stay" - case .other: return "Other" - } - } -} - /// Legacy sheet for adding/editing custom itinerary items. /// - Note: Use `QuickAddItemSheet` instead for new code. @available(*, deprecated, message: "Use QuickAddItemSheet instead") @@ -56,7 +27,6 @@ struct AddItemSheet: View { } @State private var entryMode: EntryMode = .searchPlaces - @State private var selectedCategory: ItemCategory = .restaurant @State private var title: String = "" @State private var isSaving = false @@ -71,9 +41,6 @@ struct AddItemSheet: View { var body: some View { NavigationStack { VStack(spacing: Theme.Spacing.lg) { - // Category picker - categoryPicker - // Entry mode picker (only for new items) if !isEditing { Picker("Entry Mode", selection: $entryMode) { @@ -113,8 +80,6 @@ struct AddItemSheet: View { } .onAppear { if let existing = existingItem, let info = existing.customInfo { - // Find matching category by icon, default to .other - selectedCategory = ItemCategory.allCases.first { $0.icon == info.icon } ?? .other title = info.title // If editing a mappable item, switch to custom mode entryMode = .custom @@ -264,20 +229,6 @@ struct AddItemSheet: View { return components.isEmpty ? nil : components.joined(separator: ", ") } - @ViewBuilder - private var categoryPicker: some View { - HStack(spacing: Theme.Spacing.md) { - ForEach(ItemCategory.allCases, id: \.self) { category in - CategoryButton( - category: category, - isSelected: selectedCategory == category - ) { - selectedCategory = category - } - } - } - } - private func saveItem() { isSaving = true @@ -290,7 +241,7 @@ struct AddItemSheet: View { let customInfo = CustomInfo( title: trimmedTitle, - icon: selectedCategory.icon, + icon: "\u{1F4CC}", time: existingInfo.time, latitude: existingInfo.latitude, longitude: existingInfo.longitude, @@ -312,7 +263,7 @@ struct AddItemSheet: View { let customInfo = CustomInfo( title: placeName, - icon: selectedCategory.icon, + icon: "\u{1F4CC}", time: nil, latitude: coordinate.latitude, longitude: coordinate.longitude, @@ -333,7 +284,7 @@ struct AddItemSheet: View { let customInfo = CustomInfo( title: trimmedTitle, - icon: selectedCategory.icon, + icon: "\u{1F4CC}", time: nil ) @@ -403,36 +354,6 @@ private struct PlaceResultRow: View { } } -// MARK: - Category Button - -private struct CategoryButton: View { - let category: ItemCategory - let isSelected: Bool - let action: () -> Void - - var body: some View { - Button(action: action) { - VStack(spacing: 4) { - Text(category.icon) - .font(.title2) - Text(category.label) - .font(.caption2) - } - .frame(maxWidth: .infinity) - .padding(.vertical, 12) - .background(isSelected ? Theme.warmOrange.opacity(0.2) : Color.clear) - .cornerRadius(8) - .overlay( - RoundedRectangle(cornerRadius: 8) - .stroke(isSelected ? Theme.warmOrange : Color.secondary.opacity(0.3), lineWidth: isSelected ? 2 : 1) - ) - } - .buttonStyle(.plain) - .accessibilityValue(isSelected ? "Selected" : "Not selected") - .accessibilityAddTraits(isSelected ? .isSelected : []) - } -} - #Preview { AddItemSheet( tripId: UUID(), diff --git a/SportsTime/Features/Trip/Views/TripDetailView.swift b/SportsTime/Features/Trip/Views/TripDetailView.swift index 36f39d6..6031d3f 100644 --- a/SportsTime/Features/Trip/Views/TripDetailView.swift +++ b/SportsTime/Features/Trip/Views/TripDetailView.swift @@ -269,7 +269,8 @@ struct TripDetailView: View { Task { await deleteItineraryItem(item) } }, onAddButtonTapped: { day in - addItemAnchor = AddItemAnchor(day: day) + let coord = coordinateForDay(day) + addItemAnchor = AddItemAnchor(day: day, regionCoordinate: coord) } ) .ignoresSafeArea(edges: .bottom) @@ -692,7 +693,8 @@ struct TripDetailView: View { DropTargetIndicator() } InlineAddButton { - addItemAnchor = AddItemAnchor(day: day) + let coord = coordinateForDay(day) + addItemAnchor = AddItemAnchor(day: day, regionCoordinate: coord) } } .onDrop(of: [.text, .plainText, .utf8PlainText], isTargeted: Binding( @@ -1285,6 +1287,12 @@ struct TripDetailView: View { return allItems } + /// Returns the coordinate of the first stop on the given day, for location-biased search. + private func coordinateForDay(_ day: Int) -> CLLocationCoordinate2D? { + let tripDay = trip.itineraryDays().first { $0.dayNumber == day } + return tripDay?.stops.first?.coordinate + } + private func toggleSaved() { if isSaved { unsaveTrip() @@ -1615,6 +1623,7 @@ enum ItinerarySection { struct AddItemAnchor: Identifiable { let id = UUID() let day: Int + let regionCoordinate: CLLocationCoordinate2D? } // MARK: - Inline Add Button @@ -2100,7 +2109,8 @@ private struct SheetModifiers: ViewModifier { QuickAddItemSheet( tripId: tripId, day: anchor.day, - existingItem: nil + existingItem: nil, + regionCoordinate: anchor.regionCoordinate ) { item in Task { await saveItineraryItem(item) } } diff --git a/SportsTime/Resources/games_canonical.json b/SportsTime/Resources/games_canonical.json index e451633..55d75e4 100644 --- a/SportsTime/Resources/games_canonical.json +++ b/SportsTime/Resources/games_canonical.json @@ -3,8 +3,7 @@ "canonical_id": "game_nfl_2026_20250801_lac_det", "sport": "NFL", "season": "2025", - "date": "2025-07-31", - "time": "8p", + "game_datetime_utc": "2025-08-01T00:00:00Z", "home_team": "Detroit Lions", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DET", @@ -21,8 +20,7 @@ "canonical_id": "game_nfl_2026_20250807_ind_bal", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7p", + "game_datetime_utc": "2025-08-07T23:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Indianapolis Colts", "home_team_abbrev": "BAL", @@ -39,8 +37,7 @@ "canonical_id": "game_nfl_2026_20250807_cin_phi", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7:30p", + "game_datetime_utc": "2025-08-07T23:30:00Z", "home_team": "Philadelphia Eagles", "away_team": "Cincinnati Bengals", "home_team_abbrev": "PHI", @@ -57,8 +54,7 @@ "canonical_id": "game_nfl_2026_20250808_lv_sea", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7p", + "game_datetime_utc": "2025-08-08T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Las Vegas Raiders", "home_team_abbrev": "SEA", @@ -75,8 +71,7 @@ "canonical_id": "game_nfl_2026_20250808_det_atl", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7p", + "game_datetime_utc": "2025-08-08T23:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Detroit Lions", "home_team_abbrev": "ATL", @@ -93,8 +88,7 @@ "canonical_id": "game_nfl_2026_20250808_cle_car", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7p", + "game_datetime_utc": "2025-08-08T23:00:00Z", "home_team": "Carolina Panthers", "away_team": "Cleveland Browns", "home_team_abbrev": "CAR", @@ -111,8 +105,7 @@ "canonical_id": "game_nfl_2026_20250808_was_ne", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7:30p", + "game_datetime_utc": "2025-08-08T23:30:00Z", "home_team": "New England Patriots", "away_team": "Washington Commanders", "home_team_abbrev": "NE", @@ -129,8 +122,7 @@ "canonical_id": "game_nfl_2026_20250809_nyg_buf", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "1p", + "game_datetime_utc": "2025-08-09T17:00:00Z", "home_team": "Buffalo Bills", "away_team": "New York Giants", "home_team_abbrev": "BUF", @@ -147,8 +139,7 @@ "canonical_id": "game_nfl_2026_20250809_hou_min", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "3p", + "game_datetime_utc": "2025-08-09T20:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Houston Texans", "home_team_abbrev": "MIN", @@ -165,8 +156,7 @@ "canonical_id": "game_nfl_2026_20250809_dal_lar", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "4p", + "game_datetime_utc": "2025-08-09T23:00:00Z", "home_team": "Los Angeles Rams", "away_team": "Dallas Cowboys", "home_team_abbrev": "LAR", @@ -183,8 +173,7 @@ "canonical_id": "game_nfl_2026_20250809_pit_jax", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7p", + "game_datetime_utc": "2025-08-09T23:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "JAX", @@ -201,8 +190,7 @@ "canonical_id": "game_nfl_2026_20250809_ten_tb", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7:30p", + "game_datetime_utc": "2025-08-09T23:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Tennessee Titans", "home_team_abbrev": "TB", @@ -219,8 +207,7 @@ "canonical_id": "game_nfl_2026_20250810_kc_ari", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "5p", + "game_datetime_utc": "2025-08-10T00:00:00Z", "home_team": "Arizona Cardinals", "away_team": "Kansas City Chiefs", "home_team_abbrev": "ARI", @@ -237,8 +224,7 @@ "canonical_id": "game_nfl_2026_20250810_nyj_gb", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7p", + "game_datetime_utc": "2025-08-10T00:00:00Z", "home_team": "Green Bay Packers", "away_team": "New York Jets", "home_team_abbrev": "GB", @@ -255,8 +241,7 @@ "canonical_id": "game_nfl_2026_20250810_den_sf", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "5:30p", + "game_datetime_utc": "2025-08-10T00:30:00Z", "home_team": "San Francisco 49ers", "away_team": "Denver Broncos", "home_team_abbrev": "SF", @@ -273,8 +258,7 @@ "canonical_id": "game_nfl_2026_20250810_mia_chi", "sport": "NFL", "season": "2025", - "date": "2025-08-10", - "time": "12p", + "game_datetime_utc": "2025-08-10T17:00:00Z", "home_team": "Chicago Bears", "away_team": "Miami Dolphins", "home_team_abbrev": "CHI", @@ -291,8 +275,7 @@ "canonical_id": "game_nfl_2026_20250810_no_lac", "sport": "NFL", "season": "2025", - "date": "2025-08-10", - "time": "1p", + "game_datetime_utc": "2025-08-10T20:00:00Z", "home_team": "Los Angeles Chargers", "away_team": "New Orleans Saints", "home_team_abbrev": "LAC", @@ -309,8 +292,7 @@ "canonical_id": "game_nfl_2026_20250815_ten_atl", "sport": "NFL", "season": "2025", - "date": "2025-08-15", - "time": "7p", + "game_datetime_utc": "2025-08-15T23:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Tennessee Titans", "home_team_abbrev": "ATL", @@ -327,8 +309,7 @@ "canonical_id": "game_nfl_2026_20250816_kc_sea", "sport": "NFL", "season": "2025", - "date": "2025-08-15", - "time": "7p", + "game_datetime_utc": "2025-08-16T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Kansas City Chiefs", "home_team_abbrev": "SEA", @@ -345,8 +326,7 @@ "canonical_id": "game_nfl_2026_20250816_gb_ind", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Green Bay Packers", "home_team_abbrev": "IND", @@ -363,8 +343,7 @@ "canonical_id": "game_nfl_2026_20250816_ne_min", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "12p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "New England Patriots", "home_team_abbrev": "MIN", @@ -381,8 +360,7 @@ "canonical_id": "game_nfl_2026_20250816_cle_phi", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Cleveland Browns", "home_team_abbrev": "PHI", @@ -399,8 +377,7 @@ "canonical_id": "game_nfl_2026_20250816_mia_det", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Miami Dolphins", "home_team_abbrev": "DET", @@ -417,8 +394,7 @@ "canonical_id": "game_nfl_2026_20250816_car_hou", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "12p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Houston Texans", "away_team": "Carolina Panthers", "home_team_abbrev": "HOU", @@ -435,8 +411,7 @@ "canonical_id": "game_nfl_2026_20250816_sf_lv", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1:05p", + "game_datetime_utc": "2025-08-16T20:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "San Francisco 49ers", "home_team_abbrev": "LV", @@ -453,8 +428,7 @@ "canonical_id": "game_nfl_2026_20250816_tb_pit", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "PIT", @@ -471,8 +445,7 @@ "canonical_id": "game_nfl_2026_20250816_bal_dal", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "6p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Baltimore Ravens", "home_team_abbrev": "DAL", @@ -489,8 +462,7 @@ "canonical_id": "game_nfl_2026_20250816_lac_lar", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "4p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Los Angeles Rams", "away_team": "Los Angeles Chargers", "home_team_abbrev": "LAR", @@ -507,8 +479,7 @@ "canonical_id": "game_nfl_2026_20250816_nyj_nyg", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "New York Giants", "away_team": "New York Jets", "home_team_abbrev": "NYG", @@ -525,8 +496,7 @@ "canonical_id": "game_nfl_2026_20250817_ari_den", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7:30p", + "game_datetime_utc": "2025-08-17T01:30:00Z", "home_team": "Denver Broncos", "away_team": "Arizona Cardinals", "home_team_abbrev": "DEN", @@ -543,8 +513,7 @@ "canonical_id": "game_nfl_2026_20250817_jax_no", "sport": "NFL", "season": "2025", - "date": "2025-08-17", - "time": "12p", + "game_datetime_utc": "2025-08-17T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "NO", @@ -561,8 +530,7 @@ "canonical_id": "game_nfl_2026_20250818_buf_chi", "sport": "NFL", "season": "2025", - "date": "2025-08-17", - "time": "7p", + "game_datetime_utc": "2025-08-18T00:00:00Z", "home_team": "Chicago Bears", "away_team": "Buffalo Bills", "home_team_abbrev": "CHI", @@ -579,8 +547,7 @@ "canonical_id": "game_nfl_2026_20250819_cin_was", "sport": "NFL", "season": "2025", - "date": "2025-08-18", - "time": "8p", + "game_datetime_utc": "2025-08-19T00:00:00Z", "home_team": "Washington Commanders", "away_team": "Cincinnati Bengals", "home_team_abbrev": "WAS", @@ -597,8 +564,7 @@ "canonical_id": "game_nfl_2026_20250821_pit_car", "sport": "NFL", "season": "2025", - "date": "2025-08-21", - "time": "7p", + "game_datetime_utc": "2025-08-21T23:00:00Z", "home_team": "Carolina Panthers", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CAR", @@ -615,8 +581,7 @@ "canonical_id": "game_nfl_2026_20250822_ne_nyg", "sport": "NFL", "season": "2025", - "date": "2025-08-21", - "time": "8p", + "game_datetime_utc": "2025-08-22T00:00:00Z", "home_team": "New York Giants", "away_team": "New England Patriots", "home_team_abbrev": "NYG", @@ -633,8 +598,7 @@ "canonical_id": "game_nfl_2026_20250822_phi_nyj", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7:30p", + "game_datetime_utc": "2025-08-22T23:30:00Z", "home_team": "New York Jets", "away_team": "Philadelphia Eagles", "home_team_abbrev": "NYJ", @@ -651,8 +615,7 @@ "canonical_id": "game_nfl_2026_20250823_min_ten", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7p", + "game_datetime_utc": "2025-08-23T00:00:00Z", "home_team": "Tennessee Titans", "away_team": "Minnesota Vikings", "home_team_abbrev": "TEN", @@ -669,8 +632,7 @@ "canonical_id": "game_nfl_2026_20250823_atl_dal", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7p", + "game_datetime_utc": "2025-08-23T00:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Atlanta Falcons", "home_team_abbrev": "DAL", @@ -687,8 +649,7 @@ "canonical_id": "game_nfl_2026_20250823_chi_kc", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7:20p", + "game_datetime_utc": "2025-08-23T00:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Chicago Bears", "home_team_abbrev": "KC", @@ -705,8 +666,7 @@ "canonical_id": "game_nfl_2026_20250823_bal_was", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "12p", + "game_datetime_utc": "2025-08-23T16:00:00Z", "home_team": "Washington Commanders", "away_team": "Baltimore Ravens", "home_team_abbrev": "WAS", @@ -723,8 +683,7 @@ "canonical_id": "game_nfl_2026_20250823_hou_det", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Houston Texans", "home_team_abbrev": "DET", @@ -741,8 +700,7 @@ "canonical_id": "game_nfl_2026_20250823_ind_cin", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Indianapolis Colts", "home_team_abbrev": "CIN", @@ -759,8 +717,7 @@ "canonical_id": "game_nfl_2026_20250823_lar_cle", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Los Angeles Rams", "home_team_abbrev": "CLE", @@ -777,8 +734,7 @@ "canonical_id": "game_nfl_2026_20250823_den_no", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "12p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Denver Broncos", "home_team_abbrev": "NO", @@ -795,8 +751,7 @@ "canonical_id": "game_nfl_2026_20250823_sea_gb", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "3p", + "game_datetime_utc": "2025-08-23T20:00:00Z", "home_team": "Green Bay Packers", "away_team": "Seattle Seahawks", "home_team_abbrev": "GB", @@ -813,8 +768,7 @@ "canonical_id": "game_nfl_2026_20250823_jax_mia", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7p", + "game_datetime_utc": "2025-08-23T23:00:00Z", "home_team": "Miami Dolphins", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "MIA", @@ -831,8 +785,7 @@ "canonical_id": "game_nfl_2026_20250823_buf_tb", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7:30p", + "game_datetime_utc": "2025-08-23T23:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Buffalo Bills", "home_team_abbrev": "TB", @@ -849,8 +802,7 @@ "canonical_id": "game_nfl_2026_20250824_lac_sf", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "5:30p", + "game_datetime_utc": "2025-08-24T00:30:00Z", "home_team": "San Francisco 49ers", "away_team": "Los Angeles Chargers", "home_team_abbrev": "SF", @@ -867,8 +819,7 @@ "canonical_id": "game_nfl_2026_20250824_lv_ari", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7p", + "game_datetime_utc": "2025-08-24T02:00:00Z", "home_team": "Arizona Cardinals", "away_team": "Las Vegas Raiders", "home_team_abbrev": "ARI", @@ -885,8 +836,7 @@ "canonical_id": "game_nfl_2026_20250905_dal_phi", "sport": "NFL", "season": "2025", - "date": "2025-09-04", - "time": "8:20p", + "game_datetime_utc": "2025-09-05T00:20:00Z", "home_team": "Philadelphia Eagles", "away_team": "Dallas Cowboys", "home_team_abbrev": "PHI", @@ -903,8 +853,7 @@ "canonical_id": "game_nfl_2026_20250906_kc_lac", "sport": "NFL", "season": "2025", - "date": "2025-09-05", - "time": "9p", + "game_datetime_utc": "2025-09-06T00:00:00Z", "home_team": "Los Angeles Chargers", "away_team": "Kansas City Chiefs", "home_team_abbrev": "LAC", @@ -921,8 +870,7 @@ "canonical_id": "game_nfl_2026_20250907_nyg_was", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Washington Commanders", "away_team": "New York Giants", "home_team_abbrev": "WAS", @@ -939,8 +887,7 @@ "canonical_id": "game_nfl_2026_20250907_car_jax", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Carolina Panthers", "home_team_abbrev": "JAX", @@ -957,8 +904,7 @@ "canonical_id": "game_nfl_2026_20250907_tb_atl", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "ATL", @@ -975,8 +921,7 @@ "canonical_id": "game_nfl_2026_20250907_cin_cle", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Cincinnati Bengals", "home_team_abbrev": "CLE", @@ -993,8 +938,7 @@ "canonical_id": "game_nfl_2026_20250907_mia_ind", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Miami Dolphins", "home_team_abbrev": "IND", @@ -1011,8 +955,7 @@ "canonical_id": "game_nfl_2026_20250907_lv_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New England Patriots", "away_team": "Las Vegas Raiders", "home_team_abbrev": "NE", @@ -1029,8 +972,7 @@ "canonical_id": "game_nfl_2026_20250907_ari_no", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "12p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Arizona Cardinals", "home_team_abbrev": "NO", @@ -1047,8 +989,7 @@ "canonical_id": "game_nfl_2026_20250907_pit_nyj", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New York Jets", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "NYJ", @@ -1065,8 +1006,7 @@ "canonical_id": "game_nfl_2026_20250907_sf_sea", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1:05p", + "game_datetime_utc": "2025-09-07T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "San Francisco 49ers", "home_team_abbrev": "SEA", @@ -1083,8 +1023,7 @@ "canonical_id": "game_nfl_2026_20250907_ten_den", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "2:05p", + "game_datetime_utc": "2025-09-07T20:05:00Z", "home_team": "Denver Broncos", "away_team": "Tennessee Titans", "home_team_abbrev": "DEN", @@ -1101,8 +1040,7 @@ "canonical_id": "game_nfl_2026_20250907_det_gb", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "3:25p", + "game_datetime_utc": "2025-09-07T20:25:00Z", "home_team": "Green Bay Packers", "away_team": "Detroit Lions", "home_team_abbrev": "GB", @@ -1119,8 +1057,7 @@ "canonical_id": "game_nfl_2026_20250907_hou_lar", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1:25p", + "game_datetime_utc": "2025-09-07T20:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Houston Texans", "home_team_abbrev": "LAR", @@ -1137,8 +1074,7 @@ "canonical_id": "game_nfl_2026_20250908_bal_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "8:20p", + "game_datetime_utc": "2025-09-08T00:20:00Z", "home_team": "Buffalo Bills", "away_team": "Baltimore Ravens", "home_team_abbrev": "BUF", @@ -1155,8 +1091,7 @@ "canonical_id": "game_nfl_2026_20250909_min_chi", "sport": "NFL", "season": "2025", - "date": "2025-09-08", - "time": "7:15p", + "game_datetime_utc": "2025-09-09T00:15:00Z", "home_team": "Chicago Bears", "away_team": "Minnesota Vikings", "home_team_abbrev": "CHI", @@ -1173,8 +1108,7 @@ "canonical_id": "game_nfl_2026_20250912_was_gb", "sport": "NFL", "season": "2025", - "date": "2025-09-11", - "time": "7:15p", + "game_datetime_utc": "2025-09-12T00:15:00Z", "home_team": "Green Bay Packers", "away_team": "Washington Commanders", "home_team_abbrev": "GB", @@ -1191,8 +1125,7 @@ "canonical_id": "game_nfl_2026_20250914_nyg_dal", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Dallas Cowboys", "away_team": "New York Giants", "home_team_abbrev": "DAL", @@ -1209,8 +1142,7 @@ "canonical_id": "game_nfl_2026_20250914_jax_cin", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "CIN", @@ -1227,8 +1159,7 @@ "canonical_id": "game_nfl_2026_20250914_chi_det", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Chicago Bears", "home_team_abbrev": "DET", @@ -1245,8 +1176,7 @@ "canonical_id": "game_nfl_2026_20250914_lar_ten", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "Los Angeles Rams", "home_team_abbrev": "TEN", @@ -1263,8 +1193,7 @@ "canonical_id": "game_nfl_2026_20250914_ne_mia", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Miami Dolphins", "away_team": "New England Patriots", "home_team_abbrev": "MIA", @@ -1281,8 +1210,7 @@ "canonical_id": "game_nfl_2026_20250914_sf_no", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "San Francisco 49ers", "home_team_abbrev": "NO", @@ -1299,8 +1227,7 @@ "canonical_id": "game_nfl_2026_20250914_buf_nyj", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "New York Jets", "away_team": "Buffalo Bills", "home_team_abbrev": "NYJ", @@ -1317,8 +1244,7 @@ "canonical_id": "game_nfl_2026_20250914_sea_pit", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Seattle Seahawks", "home_team_abbrev": "PIT", @@ -1335,8 +1261,7 @@ "canonical_id": "game_nfl_2026_20250914_cle_bal", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Cleveland Browns", "home_team_abbrev": "BAL", @@ -1353,8 +1278,7 @@ "canonical_id": "game_nfl_2026_20250914_car_ari", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1:05p", + "game_datetime_utc": "2025-09-14T20:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Carolina Panthers", "home_team_abbrev": "ARI", @@ -1371,8 +1295,7 @@ "canonical_id": "game_nfl_2026_20250914_den_ind", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "4:05p", + "game_datetime_utc": "2025-09-14T20:05:00Z", "home_team": "Indianapolis Colts", "away_team": "Denver Broncos", "home_team_abbrev": "IND", @@ -1389,8 +1312,7 @@ "canonical_id": "game_nfl_2026_20250914_phi_kc", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "3:25p", + "game_datetime_utc": "2025-09-14T20:25:00Z", "home_team": "Kansas City Chiefs", "away_team": "Philadelphia Eagles", "home_team_abbrev": "KC", @@ -1407,8 +1329,7 @@ "canonical_id": "game_nfl_2026_20250915_atl_min", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "7:20p", + "game_datetime_utc": "2025-09-15T00:20:00Z", "home_team": "Minnesota Vikings", "away_team": "Atlanta Falcons", "home_team_abbrev": "MIN", @@ -1425,8 +1346,7 @@ "canonical_id": "game_nfl_2026_20250915_tb_hou", "sport": "NFL", "season": "2025", - "date": "2025-09-15", - "time": "6p", + "game_datetime_utc": "2025-09-15T23:00:00Z", "home_team": "Houston Texans", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "HOU", @@ -1443,8 +1363,7 @@ "canonical_id": "game_nfl_2026_20250916_lac_lv", "sport": "NFL", "season": "2025", - "date": "2025-09-15", - "time": "7p", + "game_datetime_utc": "2025-09-16T02:00:00Z", "home_team": "Las Vegas Raiders", "away_team": "Los Angeles Chargers", "home_team_abbrev": "LV", @@ -1461,8 +1380,7 @@ "canonical_id": "game_nfl_2026_20250919_mia_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-18", - "time": "8:15p", + "game_datetime_utc": "2025-09-19T00:15:00Z", "home_team": "Buffalo Bills", "away_team": "Miami Dolphins", "home_team_abbrev": "BUF", @@ -1479,8 +1397,7 @@ "canonical_id": "game_nfl_2026_20250921_nyj_tb", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New York Jets", "home_team_abbrev": "TB", @@ -1497,8 +1414,7 @@ "canonical_id": "game_nfl_2026_20250921_cin_min", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "12p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Cincinnati Bengals", "home_team_abbrev": "MIN", @@ -1515,8 +1431,7 @@ "canonical_id": "game_nfl_2026_20250921_ind_ten", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "12p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "Indianapolis Colts", "home_team_abbrev": "TEN", @@ -1533,8 +1448,7 @@ "canonical_id": "game_nfl_2026_20250921_lv_was", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Washington Commanders", "away_team": "Las Vegas Raiders", "home_team_abbrev": "WAS", @@ -1551,8 +1465,7 @@ "canonical_id": "game_nfl_2026_20250921_hou_jax", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Houston Texans", "home_team_abbrev": "JAX", @@ -1569,8 +1482,7 @@ "canonical_id": "game_nfl_2026_20250921_atl_car", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Atlanta Falcons", "home_team_abbrev": "CAR", @@ -1587,8 +1499,7 @@ "canonical_id": "game_nfl_2026_20250921_lar_phi", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Los Angeles Rams", "home_team_abbrev": "PHI", @@ -1605,8 +1516,7 @@ "canonical_id": "game_nfl_2026_20250921_pit_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "New England Patriots", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "NE", @@ -1623,8 +1533,7 @@ "canonical_id": "game_nfl_2026_20250921_gb_cle", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Green Bay Packers", "home_team_abbrev": "CLE", @@ -1641,8 +1550,7 @@ "canonical_id": "game_nfl_2026_20250921_den_lac", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:05p", + "game_datetime_utc": "2025-09-21T20:05:00Z", "home_team": "Los Angeles Chargers", "away_team": "Denver Broncos", "home_team_abbrev": "LAC", @@ -1659,8 +1567,7 @@ "canonical_id": "game_nfl_2026_20250921_no_sea", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:05p", + "game_datetime_utc": "2025-09-21T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "New Orleans Saints", "home_team_abbrev": "SEA", @@ -1677,8 +1584,7 @@ "canonical_id": "game_nfl_2026_20250921_dal_chi", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "3:25p", + "game_datetime_utc": "2025-09-21T20:25:00Z", "home_team": "Chicago Bears", "away_team": "Dallas Cowboys", "home_team_abbrev": "CHI", @@ -1695,8 +1601,7 @@ "canonical_id": "game_nfl_2026_20250921_ari_sf", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:25p", + "game_datetime_utc": "2025-09-21T20:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Arizona Cardinals", "home_team_abbrev": "SF", @@ -1713,8 +1618,7 @@ "canonical_id": "game_nfl_2026_20250922_kc_nyg", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "8:20p", + "game_datetime_utc": "2025-09-22T00:20:00Z", "home_team": "New York Giants", "away_team": "Kansas City Chiefs", "home_team_abbrev": "NYG", @@ -1731,8 +1635,7 @@ "canonical_id": "game_nfl_2026_20250923_det_bal", "sport": "NFL", "season": "2025", - "date": "2025-09-22", - "time": "8:15p", + "game_datetime_utc": "2025-09-23T00:15:00Z", "home_team": "Baltimore Ravens", "away_team": "Detroit Lions", "home_team_abbrev": "BAL", @@ -1749,8 +1652,7 @@ "canonical_id": "game_nfl_2026_20250926_sea_ari", "sport": "NFL", "season": "2025", - "date": "2025-09-25", - "time": "5:15p", + "game_datetime_utc": "2025-09-26T00:15:00Z", "home_team": "Arizona Cardinals", "away_team": "Seattle Seahawks", "home_team_abbrev": "ARI", @@ -1767,8 +1669,7 @@ "canonical_id": "game_nfl_2026_20250928_min_pit", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "2:30p", + "game_datetime_utc": "2025-09-28T13:30:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Minnesota Vikings", "home_team_abbrev": "PIT", @@ -1785,8 +1686,7 @@ "canonical_id": "game_nfl_2026_20250928_car_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "New England Patriots", "away_team": "Carolina Panthers", "home_team_abbrev": "NE", @@ -1803,8 +1703,7 @@ "canonical_id": "game_nfl_2026_20250928_was_atl", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Washington Commanders", "home_team_abbrev": "ATL", @@ -1821,8 +1720,7 @@ "canonical_id": "game_nfl_2026_20250928_ten_hou", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "12p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Houston Texans", "away_team": "Tennessee Titans", "home_team_abbrev": "HOU", @@ -1839,8 +1737,7 @@ "canonical_id": "game_nfl_2026_20250928_no_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Buffalo Bills", "away_team": "New Orleans Saints", "home_team_abbrev": "BUF", @@ -1857,8 +1754,7 @@ "canonical_id": "game_nfl_2026_20250928_phi_tb", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "TB", @@ -1875,8 +1771,7 @@ "canonical_id": "game_nfl_2026_20250928_lac_nyg", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "New York Giants", "away_team": "Los Angeles Chargers", "home_team_abbrev": "NYG", @@ -1893,8 +1788,7 @@ "canonical_id": "game_nfl_2026_20250928_cle_det", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Cleveland Browns", "home_team_abbrev": "DET", @@ -1911,8 +1805,7 @@ "canonical_id": "game_nfl_2026_20250928_jax_sf", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:05p", + "game_datetime_utc": "2025-09-28T20:05:00Z", "home_team": "San Francisco 49ers", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "SF", @@ -1929,8 +1822,7 @@ "canonical_id": "game_nfl_2026_20250928_ind_lar", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:05p", + "game_datetime_utc": "2025-09-28T20:05:00Z", "home_team": "Los Angeles Rams", "away_team": "Indianapolis Colts", "home_team_abbrev": "LAR", @@ -1947,8 +1839,7 @@ "canonical_id": "game_nfl_2026_20250928_bal_kc", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "3:25p", + "game_datetime_utc": "2025-09-28T20:25:00Z", "home_team": "Kansas City Chiefs", "away_team": "Baltimore Ravens", "home_team_abbrev": "KC", @@ -1965,8 +1856,7 @@ "canonical_id": "game_nfl_2026_20250928_chi_lv", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:25p", + "game_datetime_utc": "2025-09-28T20:25:00Z", "home_team": "Las Vegas Raiders", "away_team": "Chicago Bears", "home_team_abbrev": "LV", @@ -1983,8 +1873,7 @@ "canonical_id": "game_nfl_2026_20250929_gb_dal", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "7:20p", + "game_datetime_utc": "2025-09-29T00:20:00Z", "home_team": "Dallas Cowboys", "away_team": "Green Bay Packers", "home_team_abbrev": "DAL", @@ -2001,8 +1890,7 @@ "canonical_id": "game_nfl_2026_20250929_nyj_mia", "sport": "NFL", "season": "2025", - "date": "2025-09-29", - "time": "7:15p", + "game_datetime_utc": "2025-09-29T23:15:00Z", "home_team": "Miami Dolphins", "away_team": "New York Jets", "home_team_abbrev": "MIA", @@ -2019,8 +1907,7 @@ "canonical_id": "game_nfl_2026_20250930_cin_den", "sport": "NFL", "season": "2025", - "date": "2025-09-29", - "time": "6:15p", + "game_datetime_utc": "2025-09-30T00:15:00Z", "home_team": "Denver Broncos", "away_team": "Cincinnati Bengals", "home_team_abbrev": "DEN", @@ -2037,8 +1924,7 @@ "canonical_id": "game_nfl_2026_20251003_sf_lar", "sport": "NFL", "season": "2025", - "date": "2025-10-02", - "time": "5:15p", + "game_datetime_utc": "2025-10-03T00:15:00Z", "home_team": "Los Angeles Rams", "away_team": "San Francisco 49ers", "home_team_abbrev": "LAR", @@ -2055,8 +1941,7 @@ "canonical_id": "game_nfl_2026_20251005_lv_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Las Vegas Raiders", "home_team_abbrev": "IND", @@ -2073,8 +1958,7 @@ "canonical_id": "game_nfl_2026_20251005_dal_nyj", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "New York Jets", "away_team": "Dallas Cowboys", "home_team_abbrev": "NYJ", @@ -2091,8 +1975,7 @@ "canonical_id": "game_nfl_2026_20251005_nyg_no", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "12p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "New York Giants", "home_team_abbrev": "NO", @@ -2109,8 +1992,7 @@ "canonical_id": "game_nfl_2026_20251005_hou_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Houston Texans", "home_team_abbrev": "BAL", @@ -2127,8 +2009,7 @@ "canonical_id": "game_nfl_2026_20251005_mia_car", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Miami Dolphins", "home_team_abbrev": "CAR", @@ -2145,8 +2026,7 @@ "canonical_id": "game_nfl_2026_20251005_den_phi", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Denver Broncos", "home_team_abbrev": "PHI", @@ -2163,8 +2043,7 @@ "canonical_id": "game_nfl_2026_20251005_tb_sea", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:05p", + "game_datetime_utc": "2025-10-05T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "SEA", @@ -2181,8 +2060,7 @@ "canonical_id": "game_nfl_2026_20251005_ten_ari", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:05p", + "game_datetime_utc": "2025-10-05T20:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Tennessee Titans", "home_team_abbrev": "ARI", @@ -2199,8 +2077,7 @@ "canonical_id": "game_nfl_2026_20251005_was_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:25p", + "game_datetime_utc": "2025-10-05T20:25:00Z", "home_team": "Los Angeles Chargers", "away_team": "Washington Commanders", "home_team_abbrev": "LAC", @@ -2217,8 +2094,7 @@ "canonical_id": "game_nfl_2026_20251005_det_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "4:25p", + "game_datetime_utc": "2025-10-05T20:25:00Z", "home_team": "Cincinnati Bengals", "away_team": "Detroit Lions", "home_team_abbrev": "CIN", @@ -2235,8 +2111,7 @@ "canonical_id": "game_nfl_2026_20251006_ne_buf", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "8:20p", + "game_datetime_utc": "2025-10-06T00:20:00Z", "home_team": "Buffalo Bills", "away_team": "New England Patriots", "home_team_abbrev": "BUF", @@ -2253,8 +2128,7 @@ "canonical_id": "game_nfl_2026_20251007_kc_jax", "sport": "NFL", "season": "2025", - "date": "2025-10-06", - "time": "8:15p", + "game_datetime_utc": "2025-10-07T00:15:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Kansas City Chiefs", "home_team_abbrev": "JAX", @@ -2271,8 +2145,7 @@ "canonical_id": "game_nhl_2025_20251007_chi_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "5p", + "game_datetime_utc": "2025-10-07T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "FLA", @@ -2289,8 +2162,7 @@ "canonical_id": "game_nhl_2025_20251007_pit_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "8p", + "game_datetime_utc": "2025-10-08T00:00:00Z", "home_team": "New York Rangers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYR", @@ -2307,8 +2179,7 @@ "canonical_id": "game_nhl_2025_20251007_col_la", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "7:30p", + "game_datetime_utc": "2025-10-08T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Colorado Avalanche", "home_team_abbrev": "LA", @@ -2325,8 +2196,7 @@ "canonical_id": "game_nhl_2025_20251008_mtl_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7p", + "game_datetime_utc": "2025-10-08T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Montreal Canadiens", "home_team_abbrev": "TOR", @@ -2343,8 +2213,7 @@ "canonical_id": "game_nhl_2025_20251008_bos_was", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7:30p", + "game_datetime_utc": "2025-10-08T23:30:00Z", "home_team": "Washington Capitals", "away_team": "Boston Bruins", "home_team_abbrev": "WAS", @@ -2361,8 +2230,7 @@ "canonical_id": "game_nhl_2025_20251008_cgy_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "8p", + "game_datetime_utc": "2025-10-09T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Calgary Flames", "home_team_abbrev": "EDM", @@ -2379,8 +2247,7 @@ "canonical_id": "game_nhl_2025_20251008_la_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7p", + "game_datetime_utc": "2025-10-09T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Los Angeles Kings", "home_team_abbrev": "VGK", @@ -2397,8 +2264,7 @@ "canonical_id": "game_nhl_2025_20251009_mtl_det", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Montreal Canadiens", "home_team_abbrev": "DET", @@ -2415,8 +2281,7 @@ "canonical_id": "game_nhl_2025_20251009_nyi_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Islanders", "home_team_abbrev": "PIT", @@ -2433,8 +2298,7 @@ "canonical_id": "game_nhl_2025_20251009_phi_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "FLA", @@ -2451,8 +2315,7 @@ "canonical_id": "game_nhl_2025_20251009_nyr_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Rangers", "home_team_abbrev": "BUF", @@ -2469,8 +2332,7 @@ "canonical_id": "game_nhl_2025_20251009_chi_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Chicago Blackhawks", "home_team_abbrev": "BOS", @@ -2487,8 +2349,7 @@ "canonical_id": "game_nhl_2025_20251009_ott_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Ottawa Senators", "home_team_abbrev": "TB", @@ -2505,8 +2366,7 @@ "canonical_id": "game_nhl_2025_20251009_njd_car", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7:30p", + "game_datetime_utc": "2025-10-09T23:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "New Jersey Devils", "home_team_abbrev": "CAR", @@ -2523,8 +2383,7 @@ "canonical_id": "game_nhl_2025_20251009_cbj_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NSH", @@ -2541,8 +2400,7 @@ "canonical_id": "game_nhl_2025_20251009_dal_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Dallas Stars", "home_team_abbrev": "WPG", @@ -2559,8 +2417,7 @@ "canonical_id": "game_nhl_2025_20251009_min_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Minnesota Wild", "home_team_abbrev": "STL", @@ -2577,8 +2434,7 @@ "canonical_id": "game_nfl_2026_20251010_phi_nyg", "sport": "NFL", "season": "2025", - "date": "2025-10-09", - "time": "8:15p", + "game_datetime_utc": "2025-10-10T00:15:00Z", "home_team": "New York Giants", "away_team": "Philadelphia Eagles", "home_team_abbrev": "NYG", @@ -2595,8 +2451,7 @@ "canonical_id": "game_nhl_2025_20251009_ari_col", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Utah Club", "home_team_abbrev": "COL", @@ -2613,8 +2468,7 @@ "canonical_id": "game_nhl_2025_20251009_vgk_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SJ", @@ -2631,8 +2485,7 @@ "canonical_id": "game_nhl_2025_20251009_ana_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Anaheim Ducks", "home_team_abbrev": "SEA", @@ -2649,8 +2502,7 @@ "canonical_id": "game_nhl_2025_20251009_cgy_van", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Calgary Flames", "home_team_abbrev": "VAN", @@ -2667,8 +2519,7 @@ "canonical_id": "game_nhl_2025_20251011_la_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "12:30p", + "game_datetime_utc": "2025-10-11T17:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Los Angeles Kings", "home_team_abbrev": "WPG", @@ -2685,8 +2536,7 @@ "canonical_id": "game_nhl_2025_20251011_stl_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "2p", + "game_datetime_utc": "2025-10-11T20:00:00Z", "home_team": "Calgary Flames", "away_team": "St. Louis Blues", "home_team_abbrev": "CGY", @@ -2703,8 +2553,7 @@ "canonical_id": "game_nhl_2025_20251011_tor_det", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DET", @@ -2721,8 +2570,7 @@ "canonical_id": "game_nhl_2025_20251011_mtl_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "6p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Montreal Canadiens", "home_team_abbrev": "CHI", @@ -2739,8 +2587,7 @@ "canonical_id": "game_nhl_2025_20251011_buf_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Buffalo Sabres", "home_team_abbrev": "BOS", @@ -2757,8 +2604,7 @@ "canonical_id": "game_nhl_2025_20251011_phi_car", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CAR", @@ -2775,8 +2621,7 @@ "canonical_id": "game_nhl_2025_20251011_ott_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Ottawa Senators", "home_team_abbrev": "FLA", @@ -2793,8 +2638,7 @@ "canonical_id": "game_nhl_2025_20251011_nyr_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Rangers", "home_team_abbrev": "PIT", @@ -2811,8 +2655,7 @@ "canonical_id": "game_nhl_2025_20251011_njd_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New Jersey Devils", "home_team_abbrev": "TB", @@ -2829,8 +2672,7 @@ "canonical_id": "game_nhl_2025_20251011_was_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "New York Islanders", "away_team": "Washington Capitals", "home_team_abbrev": "NYI", @@ -2847,8 +2689,7 @@ "canonical_id": "game_nhl_2025_20251011_ari_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Utah Club", "home_team_abbrev": "NSH", @@ -2865,8 +2706,7 @@ "canonical_id": "game_nhl_2025_20251011_cbj_min", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MIN", @@ -2883,8 +2723,7 @@ "canonical_id": "game_nhl_2025_20251011_dal_col", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Dallas Stars", "home_team_abbrev": "COL", @@ -2901,8 +2740,7 @@ "canonical_id": "game_nhl_2025_20251011_van_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "8p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vancouver Canucks", "home_team_abbrev": "EDM", @@ -2919,8 +2757,7 @@ "canonical_id": "game_nhl_2025_20251011_vgk_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SEA", @@ -2937,8 +2774,7 @@ "canonical_id": "game_nhl_2025_20251011_ana_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Anaheim Ducks", "home_team_abbrev": "SJ", @@ -2955,8 +2791,7 @@ "canonical_id": "game_nfl_2026_20251012_dal_car", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Dallas Cowboys", "home_team_abbrev": "CAR", @@ -2973,8 +2808,7 @@ "canonical_id": "game_nfl_2026_20251012_lac_mia", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Miami Dolphins", "away_team": "Los Angeles Chargers", "home_team_abbrev": "MIA", @@ -2991,8 +2825,7 @@ "canonical_id": "game_nfl_2026_20251012_ari_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Arizona Cardinals", "home_team_abbrev": "IND", @@ -3009,8 +2842,7 @@ "canonical_id": "game_nfl_2026_20251012_lar_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Los Angeles Rams", "home_team_abbrev": "BAL", @@ -3027,8 +2859,7 @@ "canonical_id": "game_nfl_2026_20251012_sea_jax", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Seattle Seahawks", "home_team_abbrev": "JAX", @@ -3045,8 +2876,7 @@ "canonical_id": "game_nfl_2026_20251012_cle_pit", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Cleveland Browns", "home_team_abbrev": "PIT", @@ -3063,8 +2893,7 @@ "canonical_id": "game_nfl_2026_20251012_ne_no", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "12p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "New England Patriots", "home_team_abbrev": "NO", @@ -3081,8 +2910,7 @@ "canonical_id": "game_nfl_2026_20251012_ten_lv", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1:05p", + "game_datetime_utc": "2025-10-12T20:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Tennessee Titans", "home_team_abbrev": "LV", @@ -3099,8 +2927,7 @@ "canonical_id": "game_nfl_2026_20251012_sf_tb", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "4:25p", + "game_datetime_utc": "2025-10-12T20:25:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "San Francisco 49ers", "home_team_abbrev": "TB", @@ -3117,8 +2944,7 @@ "canonical_id": "game_nfl_2026_20251012_cin_gb", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "3:25p", + "game_datetime_utc": "2025-10-12T20:25:00Z", "home_team": "Green Bay Packers", "away_team": "Cincinnati Bengals", "home_team_abbrev": "GB", @@ -3135,8 +2961,7 @@ "canonical_id": "game_nhl_2025_20251012_was_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-12", - "time": "7p", + "game_datetime_utc": "2025-10-12T23:00:00Z", "home_team": "New York Rangers", "away_team": "Washington Capitals", "home_team_abbrev": "NYR", @@ -3153,8 +2978,7 @@ "canonical_id": "game_nfl_2026_20251013_det_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "7:20p", + "game_datetime_utc": "2025-10-13T00:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Detroit Lions", "home_team_abbrev": "KC", @@ -3171,8 +2995,7 @@ "canonical_id": "game_nhl_2025_20251013_col_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "12:30p", + "game_datetime_utc": "2025-10-13T16:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Colorado Avalanche", "home_team_abbrev": "BUF", @@ -3189,8 +3012,7 @@ "canonical_id": "game_nhl_2025_20251013_tb_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "Boston Bruins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BOS", @@ -3207,8 +3029,7 @@ "canonical_id": "game_nhl_2025_20251013_nsh_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Nashville Predators", "home_team_abbrev": "OTT", @@ -3225,8 +3046,7 @@ "canonical_id": "game_nhl_2025_20251013_wpg_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "New York Islanders", "away_team": "Winnipeg Jets", "home_team_abbrev": "NYI", @@ -3243,8 +3063,7 @@ "canonical_id": "game_nhl_2025_20251013_det_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "2p", + "game_datetime_utc": "2025-10-13T18:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Detroit Red Wings", "home_team_abbrev": "TOR", @@ -3261,8 +3080,7 @@ "canonical_id": "game_nhl_2025_20251013_njd_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-13T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New Jersey Devils", "home_team_abbrev": "CBJ", @@ -3279,8 +3097,7 @@ "canonical_id": "game_nhl_2025_20251013_fla_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-13T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Florida Panthers", "home_team_abbrev": "PHI", @@ -3297,8 +3114,7 @@ "canonical_id": "game_nfl_2026_20251013_buf_atl", "sport": "NFL", "season": "2025", - "date": "2025-10-13", - "time": "7:15p", + "game_datetime_utc": "2025-10-13T23:15:00Z", "home_team": "Atlanta Falcons", "away_team": "Buffalo Bills", "home_team_abbrev": "ATL", @@ -3315,8 +3131,7 @@ "canonical_id": "game_nhl_2025_20251013_stl_van", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "4:30p", + "game_datetime_utc": "2025-10-13T23:30:00Z", "home_team": "Vancouver Canucks", "away_team": "St. Louis Blues", "home_team_abbrev": "VAN", @@ -3333,8 +3148,7 @@ "canonical_id": "game_nhl_2025_20251013_la_min", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-14T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Los Angeles Kings", "home_team_abbrev": "MIN", @@ -3351,8 +3165,7 @@ "canonical_id": "game_nfl_2026_20251014_chi_was", "sport": "NFL", "season": "2025", - "date": "2025-10-13", - "time": "8:15p", + "game_datetime_utc": "2025-10-14T00:15:00Z", "home_team": "Washington Commanders", "away_team": "Chicago Bears", "home_team_abbrev": "WAS", @@ -3369,8 +3182,7 @@ "canonical_id": "game_nhl_2025_20251013_ari_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7:30p", + "game_datetime_utc": "2025-10-14T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Utah Club", "home_team_abbrev": "CHI", @@ -3387,8 +3199,7 @@ "canonical_id": "game_nhl_2025_20251014_tb_was", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WAS", @@ -3405,8 +3216,7 @@ "canonical_id": "game_nhl_2025_20251014_sea_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Seattle Kraken", "home_team_abbrev": "MTL", @@ -3423,8 +3233,7 @@ "canonical_id": "game_nhl_2025_20251014_edm_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "New York Rangers", "away_team": "Edmonton Oilers", "home_team_abbrev": "NYR", @@ -3441,8 +3250,7 @@ "canonical_id": "game_nhl_2025_20251014_nsh_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Nashville Predators", "home_team_abbrev": "TOR", @@ -3459,8 +3267,7 @@ "canonical_id": "game_nhl_2025_20251014_vgk_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-15T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CGY", @@ -3477,8 +3284,7 @@ "canonical_id": "game_nhl_2025_20251014_min_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "8:30p", + "game_datetime_utc": "2025-10-15T01:30:00Z", "home_team": "Dallas Stars", "away_team": "Minnesota Wild", "home_team_abbrev": "DAL", @@ -3495,8 +3301,7 @@ "canonical_id": "game_nhl_2025_20251014_car_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-15T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "SJ", @@ -3513,8 +3318,7 @@ "canonical_id": "game_nhl_2025_20251014_pit_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7:30p", + "game_datetime_utc": "2025-10-15T02:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "ANA", @@ -3531,8 +3335,7 @@ "canonical_id": "game_nhl_2025_20251015_ott_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7p", + "game_datetime_utc": "2025-10-15T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Ottawa Senators", "home_team_abbrev": "BUF", @@ -3549,8 +3352,7 @@ "canonical_id": "game_nhl_2025_20251015_fla_det", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7p", + "game_datetime_utc": "2025-10-15T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Florida Panthers", "home_team_abbrev": "DET", @@ -3567,8 +3369,7 @@ "canonical_id": "game_nhl_2025_20251015_chi_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "8:30p", + "game_datetime_utc": "2025-10-16T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Chicago Blackhawks", "home_team_abbrev": "STL", @@ -3585,8 +3386,7 @@ "canonical_id": "game_nhl_2025_20251015_cgy_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7:30p", + "game_datetime_utc": "2025-10-16T01:30:00Z", "home_team": "Utah Club", "away_team": "Calgary Flames", "home_team_abbrev": "ARI", @@ -3603,8 +3403,7 @@ "canonical_id": "game_nhl_2025_20251016_nyr_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Rangers", "home_team_abbrev": "TOR", @@ -3621,8 +3420,7 @@ "canonical_id": "game_nhl_2025_20251016_col_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Colorado Avalanche", "home_team_abbrev": "CBJ", @@ -3639,8 +3437,7 @@ "canonical_id": "game_nhl_2025_20251016_nsh_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Nashville Predators", "home_team_abbrev": "MTL", @@ -3657,8 +3454,7 @@ "canonical_id": "game_nhl_2025_20251016_fla_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Florida Panthers", "home_team_abbrev": "NJ", @@ -3675,8 +3471,7 @@ "canonical_id": "game_nhl_2025_20251016_sea_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Seattle Kraken", "home_team_abbrev": "OTT", @@ -3693,8 +3488,7 @@ "canonical_id": "game_nhl_2025_20251016_wpg_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Winnipeg Jets", "home_team_abbrev": "PHI", @@ -3711,8 +3505,7 @@ "canonical_id": "game_nhl_2025_20251016_edm_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7:30p", + "game_datetime_utc": "2025-10-16T23:30:00Z", "home_team": "New York Islanders", "away_team": "Edmonton Oilers", "home_team_abbrev": "NYI", @@ -3729,8 +3522,7 @@ "canonical_id": "game_nhl_2025_20251016_van_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Vancouver Canucks", "home_team_abbrev": "DAL", @@ -3747,8 +3539,7 @@ "canonical_id": "game_nfl_2026_20251017_pit_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-16", - "time": "8:15p", + "game_datetime_utc": "2025-10-17T00:15:00Z", "home_team": "Cincinnati Bengals", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CIN", @@ -3765,8 +3556,7 @@ "canonical_id": "game_nhl_2025_20251016_pit_la", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "LA", @@ -3783,8 +3573,7 @@ "canonical_id": "game_nhl_2025_20251016_car_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "ANA", @@ -3801,8 +3590,7 @@ "canonical_id": "game_nhl_2025_20251016_bos_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Boston Bruins", "home_team_abbrev": "VGK", @@ -3819,8 +3607,7 @@ "canonical_id": "game_nhl_2025_20251017_tb_det", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-17T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DET", @@ -3837,8 +3624,7 @@ "canonical_id": "game_nhl_2025_20251017_min_was", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-17T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Minnesota Wild", "home_team_abbrev": "WAS", @@ -3855,8 +3641,7 @@ "canonical_id": "game_nhl_2025_20251017_van_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7:30p", + "game_datetime_utc": "2025-10-18T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vancouver Canucks", "home_team_abbrev": "CHI", @@ -3873,8 +3658,7 @@ "canonical_id": "game_nhl_2025_20251017_sj_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-18T01:00:00Z", "home_team": "Utah Club", "away_team": "San Jose Sharks", "home_team_abbrev": "ARI", @@ -3891,8 +3675,7 @@ "canonical_id": "game_nhl_2025_20251018_fla_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "1p", + "game_datetime_utc": "2025-10-18T17:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Florida Panthers", "home_team_abbrev": "BUF", @@ -3909,8 +3692,7 @@ "canonical_id": "game_nhl_2025_20251018_nyi_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "3p", + "game_datetime_utc": "2025-10-18T19:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Islanders", "home_team_abbrev": "OTT", @@ -3927,8 +3709,7 @@ "canonical_id": "game_nhl_2025_20251018_edm_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "3:30p", + "game_datetime_utc": "2025-10-18T19:30:00Z", "home_team": "New Jersey Devils", "away_team": "Edmonton Oilers", "home_team_abbrev": "NJ", @@ -3945,8 +3726,7 @@ "canonical_id": "game_nhl_2025_20251018_tb_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CBJ", @@ -3963,8 +3743,7 @@ "canonical_id": "game_nhl_2025_20251018_nyr_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Rangers", "home_team_abbrev": "MTL", @@ -3981,8 +3760,7 @@ "canonical_id": "game_nhl_2025_20251018_dal_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "St. Louis Blues", "away_team": "Dallas Stars", "home_team_abbrev": "STL", @@ -3999,8 +3777,7 @@ "canonical_id": "game_nhl_2025_20251018_sea_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Seattle Kraken", "home_team_abbrev": "TOR", @@ -4017,8 +3794,7 @@ "canonical_id": "game_nhl_2025_20251018_min_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Minnesota Wild", "home_team_abbrev": "PHI", @@ -4035,8 +3811,7 @@ "canonical_id": "game_nhl_2025_20251018_nsh_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Nashville Predators", "home_team_abbrev": "WPG", @@ -4053,8 +3828,7 @@ "canonical_id": "game_nhl_2025_20251018_car_la", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-19T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Carolina Hurricanes", "home_team_abbrev": "LA", @@ -4071,8 +3845,7 @@ "canonical_id": "game_nhl_2025_20251018_bos_col", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Boston Bruins", "home_team_abbrev": "COL", @@ -4089,8 +3862,7 @@ "canonical_id": "game_nhl_2025_20251018_cgy_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Calgary Flames", "home_team_abbrev": "VGK", @@ -4107,8 +3879,7 @@ "canonical_id": "game_nhl_2025_20251018_pit_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "SJ", @@ -4125,8 +3896,7 @@ "canonical_id": "game_nhl_2025_20251019_van_was", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "12:30p", + "game_datetime_utc": "2025-10-19T16:30:00Z", "home_team": "Washington Capitals", "away_team": "Vancouver Canucks", "home_team_abbrev": "WAS", @@ -4143,8 +3913,7 @@ "canonical_id": "game_nfl_2026_20251019_car_nyj", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "New York Jets", "away_team": "Carolina Panthers", "home_team_abbrev": "NYJ", @@ -4161,8 +3930,7 @@ "canonical_id": "game_nfl_2026_20251019_lv_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Las Vegas Raiders", "home_team_abbrev": "KC", @@ -4179,8 +3947,7 @@ "canonical_id": "game_nfl_2026_20251019_phi_min", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Philadelphia Eagles", "home_team_abbrev": "MIN", @@ -4197,8 +3964,7 @@ "canonical_id": "game_nfl_2026_20251019_no_chi", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Chicago Bears", "away_team": "New Orleans Saints", "home_team_abbrev": "CHI", @@ -4215,8 +3981,7 @@ "canonical_id": "game_nfl_2026_20251019_mia_cle", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Miami Dolphins", "home_team_abbrev": "CLE", @@ -4233,8 +3998,7 @@ "canonical_id": "game_nfl_2026_20251019_ne_ten", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "New England Patriots", "home_team_abbrev": "TEN", @@ -4251,8 +4015,7 @@ "canonical_id": "game_nhl_2025_20251019_edm_det", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "3p", + "game_datetime_utc": "2025-10-19T19:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Edmonton Oilers", "home_team_abbrev": "DET", @@ -4269,8 +4032,7 @@ "canonical_id": "game_nfl_2026_20251019_ind_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1:05p", + "game_datetime_utc": "2025-10-19T20:05:00Z", "home_team": "Los Angeles Chargers", "away_team": "Indianapolis Colts", "home_team_abbrev": "LAC", @@ -4287,8 +4049,7 @@ "canonical_id": "game_nfl_2026_20251019_nyg_den", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "2:05p", + "game_datetime_utc": "2025-10-19T20:05:00Z", "home_team": "Denver Broncos", "away_team": "New York Giants", "home_team_abbrev": "DEN", @@ -4305,8 +4066,7 @@ "canonical_id": "game_nfl_2026_20251019_was_dal", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "3:25p", + "game_datetime_utc": "2025-10-19T20:25:00Z", "home_team": "Dallas Cowboys", "away_team": "Washington Commanders", "home_team_abbrev": "DAL", @@ -4323,8 +4083,7 @@ "canonical_id": "game_nfl_2026_20251019_gb_ari", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1:25p", + "game_datetime_utc": "2025-10-19T20:25:00Z", "home_team": "Arizona Cardinals", "away_team": "Green Bay Packers", "home_team_abbrev": "ARI", @@ -4341,8 +4100,7 @@ "canonical_id": "game_nhl_2025_20251019_ana_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "6p", + "game_datetime_utc": "2025-10-19T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Anaheim Ducks", "home_team_abbrev": "CHI", @@ -4359,8 +4117,7 @@ "canonical_id": "game_nhl_2025_20251019_bos_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "5p", + "game_datetime_utc": "2025-10-19T23:00:00Z", "home_team": "Utah Club", "away_team": "Boston Bruins", "home_team_abbrev": "ARI", @@ -4377,8 +4134,7 @@ "canonical_id": "game_nfl_2026_20251020_atl_sf", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "5:20p", + "game_datetime_utc": "2025-10-20T00:20:00Z", "home_team": "San Francisco 49ers", "away_team": "Atlanta Falcons", "home_team_abbrev": "SF", @@ -4395,8 +4151,7 @@ "canonical_id": "game_nfl_2026_20251020_tb_det", "sport": "NFL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "Detroit Lions", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "DET", @@ -4413,8 +4168,7 @@ "canonical_id": "game_nhl_2025_20251020_sea_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Seattle Kraken", "home_team_abbrev": "PHI", @@ -4431,8 +4185,7 @@ "canonical_id": "game_nhl_2025_20251020_min_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "New York Rangers", "away_team": "Minnesota Wild", "home_team_abbrev": "NYR", @@ -4449,8 +4202,7 @@ "canonical_id": "game_nhl_2025_20251020_buf_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7:30p", + "game_datetime_utc": "2025-10-20T23:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Buffalo Sabres", "home_team_abbrev": "MTL", @@ -4467,8 +4219,7 @@ "canonical_id": "game_nhl_2025_20251020_wpg_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7:30p", + "game_datetime_utc": "2025-10-21T01:30:00Z", "home_team": "Calgary Flames", "away_team": "Winnipeg Jets", "home_team_abbrev": "CGY", @@ -4485,8 +4236,7 @@ "canonical_id": "game_nfl_2026_20251021_hou_sea", "sport": "NFL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-21T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Houston Texans", "home_team_abbrev": "SEA", @@ -4503,8 +4253,7 @@ "canonical_id": "game_nhl_2025_20251020_car_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-21T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Carolina Hurricanes", "home_team_abbrev": "VGK", @@ -4521,8 +4270,7 @@ "canonical_id": "game_nhl_2025_20251021_sj_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "New York Islanders", "away_team": "San Jose Sharks", "home_team_abbrev": "NYI", @@ -4539,8 +4287,7 @@ "canonical_id": "game_nhl_2025_20251021_sea_was", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Seattle Kraken", "home_team_abbrev": "WAS", @@ -4557,8 +4304,7 @@ "canonical_id": "game_nhl_2025_20251021_njd_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New Jersey Devils", "home_team_abbrev": "TOR", @@ -4575,8 +4321,7 @@ "canonical_id": "game_nhl_2025_20251021_van_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Vancouver Canucks", "home_team_abbrev": "PIT", @@ -4593,8 +4338,7 @@ "canonical_id": "game_nhl_2025_20251021_edm_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Edmonton Oilers", "home_team_abbrev": "OTT", @@ -4611,8 +4355,7 @@ "canonical_id": "game_nba_2025_20251021_hou_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-21", - "time": "6:30p", + "game_datetime_utc": "2025-10-21T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Houston Rockets", "home_team_abbrev": "OKC", @@ -4629,8 +4372,7 @@ "canonical_id": "game_nhl_2025_20251021_fla_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7:30p", + "game_datetime_utc": "2025-10-21T23:30:00Z", "home_team": "Boston Bruins", "away_team": "Florida Panthers", "home_team_abbrev": "BOS", @@ -4647,8 +4389,7 @@ "canonical_id": "game_nhl_2025_20251021_ana_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Anaheim Ducks", "home_team_abbrev": "NSH", @@ -4665,8 +4406,7 @@ "canonical_id": "game_nhl_2025_20251021_la_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Los Angeles Kings", "home_team_abbrev": "STL", @@ -4683,8 +4423,7 @@ "canonical_id": "game_nhl_2025_20251021_cbj_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DAL", @@ -4701,8 +4440,7 @@ "canonical_id": "game_nba_2025_20251021_gsw_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAL", @@ -4719,8 +4457,7 @@ "canonical_id": "game_nhl_2025_20251021_col_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "8p", + "game_datetime_utc": "2025-10-22T02:00:00Z", "home_team": "Utah Club", "away_team": "Colorado Avalanche", "home_team_abbrev": "ARI", @@ -4737,8 +4474,7 @@ "canonical_id": "game_nba_2025_20251022_cle_nyk", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "New York Knicks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NYK", @@ -4755,8 +4491,7 @@ "canonical_id": "game_nba_2025_20251022_brk_cho", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHA", @@ -4773,8 +4508,7 @@ "canonical_id": "game_nba_2025_20251022_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -4791,8 +4525,7 @@ "canonical_id": "game_nhl_2025_20251022_min_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Minnesota Wild", "home_team_abbrev": "NJ", @@ -4809,8 +4542,7 @@ "canonical_id": "game_nba_2025_20251022_tor_atl", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Toronto Raptors", "home_team_abbrev": "ATL", @@ -4827,8 +4559,7 @@ "canonical_id": "game_nba_2025_20251022_phi_bos", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BOS", @@ -4845,8 +4576,7 @@ "canonical_id": "game_nhl_2025_20251022_det_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Detroit Red Wings", "home_team_abbrev": "BUF", @@ -4863,8 +4593,7 @@ "canonical_id": "game_nba_2025_20251022_nop_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MEM", @@ -4881,8 +4610,7 @@ "canonical_id": "game_nba_2025_20251022_det_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Detroit Pistons", "home_team_abbrev": "CHI", @@ -4899,8 +4627,7 @@ "canonical_id": "game_nba_2025_20251022_was_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Washington Wizards", "home_team_abbrev": "MIL", @@ -4917,8 +4644,7 @@ "canonical_id": "game_nhl_2025_20251022_mtl_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "6:30p", + "game_datetime_utc": "2025-10-23T00:30:00Z", "home_team": "Calgary Flames", "away_team": "Montreal Canadiens", "home_team_abbrev": "CGY", @@ -4935,8 +4661,7 @@ "canonical_id": "game_nba_2025_20251022_lac_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Clippers", "home_team_abbrev": "UTA", @@ -4953,8 +4678,7 @@ "canonical_id": "game_nba_2025_20251022_sas_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "8:30p", + "game_datetime_utc": "2025-10-23T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "San Antonio Spurs", "home_team_abbrev": "DAL", @@ -4971,8 +4695,7 @@ "canonical_id": "game_nba_2025_20251022_min_por", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "POR", @@ -4989,8 +4712,7 @@ "canonical_id": "game_nba_2025_20251022_sac_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "10p", + "game_datetime_utc": "2025-10-23T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Sacramento Kings", "home_team_abbrev": "PHX", @@ -5007,8 +4729,7 @@ "canonical_id": "game_nhl_2025_20251023_chi_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "6:45p", + "game_datetime_utc": "2025-10-23T22:45:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Chicago Blackhawks", "home_team_abbrev": "TB", @@ -5025,8 +4746,7 @@ "canonical_id": "game_nhl_2025_20251023_sj_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "New York Rangers", "away_team": "San Jose Sharks", "home_team_abbrev": "NYR", @@ -5043,8 +4763,7 @@ "canonical_id": "game_nhl_2025_20251023_pit_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "FLA", @@ -5061,8 +4780,7 @@ "canonical_id": "game_nhl_2025_20251023_ana_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Anaheim Ducks", "home_team_abbrev": "BOS", @@ -5079,8 +4797,7 @@ "canonical_id": "game_nhl_2025_20251023_det_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "New York Islanders", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYI", @@ -5097,8 +4814,7 @@ "canonical_id": "game_nhl_2025_20251023_phi_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Philadelphia Flyers", "home_team_abbrev": "OTT", @@ -5115,8 +4831,7 @@ "canonical_id": "game_nba_2025_20251023_okc_ind", "sport": "NBA", "season": "2025", - "date": "2025-10-23", - "time": "7:30p", + "game_datetime_utc": "2025-10-23T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "IND", @@ -5133,8 +4848,7 @@ "canonical_id": "game_nhl_2025_20251023_van_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Vancouver Canucks", "home_team_abbrev": "NSH", @@ -5151,8 +4865,7 @@ "canonical_id": "game_nhl_2025_20251023_ari_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Utah Club", "home_team_abbrev": "STL", @@ -5169,8 +4882,7 @@ "canonical_id": "game_nhl_2025_20251023_sea_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Seattle Kraken", "home_team_abbrev": "WPG", @@ -5187,8 +4899,7 @@ "canonical_id": "game_nfl_2026_20251024_min_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-23", - "time": "5:15p", + "game_datetime_utc": "2025-10-24T00:15:00Z", "home_team": "Los Angeles Chargers", "away_team": "Minnesota Vikings", "home_team_abbrev": "LAC", @@ -5205,8 +4916,7 @@ "canonical_id": "game_nhl_2025_20251023_mtl_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Montreal Canadiens", "home_team_abbrev": "EDM", @@ -5223,8 +4933,7 @@ "canonical_id": "game_nhl_2025_20251023_car_col", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Carolina Hurricanes", "home_team_abbrev": "COL", @@ -5241,8 +4950,7 @@ "canonical_id": "game_nhl_2025_20251023_la_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "8p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Los Angeles Kings", "home_team_abbrev": "DAL", @@ -5259,8 +4967,7 @@ "canonical_id": "game_nba_2025_20251023_den_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Denver Nuggets", "home_team_abbrev": "GSW", @@ -5277,8 +4984,7 @@ "canonical_id": "game_nba_2025_20251024_mil_tor", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "6:30p", + "game_datetime_utc": "2025-10-24T22:30:00Z", "home_team": "Toronto Raptors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "TOR", @@ -5295,8 +5001,7 @@ "canonical_id": "game_nba_2025_20251024_atl_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Atlanta Hawks", "home_team_abbrev": "ORL", @@ -5313,8 +5018,7 @@ "canonical_id": "game_nhl_2025_20251024_sj_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "San Jose Sharks", "home_team_abbrev": "NJ", @@ -5331,8 +5035,7 @@ "canonical_id": "game_nhl_2025_20251024_was_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Washington Capitals", "home_team_abbrev": "CBJ", @@ -5349,8 +5052,7 @@ "canonical_id": "game_nhl_2025_20251024_tor_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BUF", @@ -5367,8 +5069,7 @@ "canonical_id": "game_nba_2025_20251024_cle_brk", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-24T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BKN", @@ -5385,8 +5086,7 @@ "canonical_id": "game_nba_2025_20251024_bos_nyk", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-24T23:30:00Z", "home_team": "New York Knicks", "away_team": "Boston Celtics", "home_team_abbrev": "NYK", @@ -5403,8 +5103,7 @@ "canonical_id": "game_nba_2025_20251024_det_hou", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Detroit Pistons", "home_team_abbrev": "HOU", @@ -5421,8 +5120,7 @@ "canonical_id": "game_nba_2025_20251024_mia_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Miami Heat", "home_team_abbrev": "MEM", @@ -5439,8 +5137,7 @@ "canonical_id": "game_nba_2025_20251024_sas_nop", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "San Antonio Spurs", "home_team_abbrev": "NOP", @@ -5457,8 +5154,7 @@ "canonical_id": "game_nhl_2025_20251024_cgy_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Calgary Flames", "home_team_abbrev": "WPG", @@ -5475,8 +5171,7 @@ "canonical_id": "game_nba_2025_20251024_was_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Washington Wizards", "home_team_abbrev": "DAL", @@ -5493,8 +5188,7 @@ "canonical_id": "game_nba_2025_20251024_gsw_por", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Golden State Warriors", "home_team_abbrev": "POR", @@ -5511,8 +5205,7 @@ "canonical_id": "game_nba_2025_20251024_uta_sac", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Utah Jazz", "home_team_abbrev": "SAC", @@ -5529,8 +5222,7 @@ "canonical_id": "game_nba_2025_20251024_min_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAL", @@ -5547,8 +5239,7 @@ "canonical_id": "game_nba_2025_20251024_phx_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAC", @@ -5565,8 +5256,7 @@ "canonical_id": "game_nhl_2025_20251025_nyi_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "12:30p", + "game_datetime_utc": "2025-10-25T16:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Islanders", "home_team_abbrev": "PHI", @@ -5583,8 +5273,7 @@ "canonical_id": "game_nhl_2025_20251025_col_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "3p", + "game_datetime_utc": "2025-10-25T19:00:00Z", "home_team": "Boston Bruins", "away_team": "Colorado Avalanche", "home_team_abbrev": "BOS", @@ -5601,8 +5290,7 @@ "canonical_id": "game_nhl_2025_20251025_ana_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Anaheim Ducks", "home_team_abbrev": "TB", @@ -5619,8 +5307,7 @@ "canonical_id": "game_nhl_2025_20251025_buf_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T21:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Buffalo Sabres", "home_team_abbrev": "TOR", @@ -5637,8 +5324,7 @@ "canonical_id": "game_nhl_2025_20251025_ari_min", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "Utah Club", "home_team_abbrev": "MIN", @@ -5655,8 +5341,7 @@ "canonical_id": "game_nhl_2025_20251025_vgk_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "6p", + "game_datetime_utc": "2025-10-25T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "FLA", @@ -5673,8 +5358,7 @@ "canonical_id": "game_nba_2025_20251025_chi_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Chicago Bulls", "home_team_abbrev": "ORL", @@ -5691,8 +5375,7 @@ "canonical_id": "game_nhl_2025_20251025_ott_was", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Ottawa Senators", "home_team_abbrev": "WAS", @@ -5709,8 +5392,7 @@ "canonical_id": "game_nhl_2025_20251025_stl_det", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "St. Louis Blues", "home_team_abbrev": "DET", @@ -5727,8 +5409,7 @@ "canonical_id": "game_nhl_2025_20251025_cbj_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PIT", @@ -5745,8 +5426,7 @@ "canonical_id": "game_nhl_2025_20251025_mtl_van", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "4p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Montreal Canadiens", "home_team_abbrev": "VAN", @@ -5763,8 +5443,7 @@ "canonical_id": "game_nba_2025_20251025_cho_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "4:30p", + "game_datetime_utc": "2025-10-25T23:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Charlotte Hornets", "home_team_abbrev": "PHI", @@ -5781,8 +5460,7 @@ "canonical_id": "game_nba_2025_20251025_okc_atl", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "ATL", @@ -5799,8 +5477,7 @@ "canonical_id": "game_nba_2025_20251025_ind_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Indiana Pacers", "home_team_abbrev": "MEM", @@ -5817,8 +5494,7 @@ "canonical_id": "game_nhl_2025_20251025_la_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Los Angeles Kings", "home_team_abbrev": "NSH", @@ -5835,8 +5511,7 @@ "canonical_id": "game_nhl_2025_20251025_car_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Carolina Hurricanes", "home_team_abbrev": "DAL", @@ -5853,8 +5528,7 @@ "canonical_id": "game_nba_2025_20251025_phx_den", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Phoenix Suns", "home_team_abbrev": "DEN", @@ -5871,8 +5545,7 @@ "canonical_id": "game_nhl_2025_20251025_edm_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Edmonton Oilers", "home_team_abbrev": "SEA", @@ -5889,8 +5562,7 @@ "canonical_id": "game_nfl_2026_20251026_cle_ne", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "New England Patriots", "away_team": "Cleveland Browns", "home_team_abbrev": "NE", @@ -5907,8 +5579,7 @@ "canonical_id": "game_nfl_2026_20251026_sf_hou", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "12p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Houston Texans", "away_team": "San Francisco 49ers", "home_team_abbrev": "HOU", @@ -5925,8 +5596,7 @@ "canonical_id": "game_nfl_2026_20251026_buf_car", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Buffalo Bills", "home_team_abbrev": "CAR", @@ -5943,8 +5613,7 @@ "canonical_id": "game_nfl_2026_20251026_nyg_phi", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "New York Giants", "home_team_abbrev": "PHI", @@ -5961,8 +5630,7 @@ "canonical_id": "game_nfl_2026_20251026_mia_atl", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Miami Dolphins", "home_team_abbrev": "ATL", @@ -5979,8 +5647,7 @@ "canonical_id": "game_nfl_2026_20251026_nyj_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "New York Jets", "home_team_abbrev": "CIN", @@ -5997,8 +5664,7 @@ "canonical_id": "game_nfl_2026_20251026_chi_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Chicago Bears", "home_team_abbrev": "BAL", @@ -6015,8 +5681,7 @@ "canonical_id": "game_nhl_2025_20251026_col_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "New Jersey Devils", "away_team": "Colorado Avalanche", "home_team_abbrev": "NJ", @@ -6033,8 +5698,7 @@ "canonical_id": "game_nba_2025_20251026_brk_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T18:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Brooklyn Nets", "home_team_abbrev": "SAS", @@ -6051,8 +5715,7 @@ "canonical_id": "game_nba_2025_20251026_bos_det", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "3:30p", + "game_datetime_utc": "2025-10-26T19:30:00Z", "home_team": "Detroit Pistons", "away_team": "Boston Celtics", "home_team_abbrev": "DET", @@ -6069,8 +5732,7 @@ "canonical_id": "game_nfl_2026_20251026_tb_no", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "3:05p", + "game_datetime_utc": "2025-10-26T20:05:00Z", "home_team": "New Orleans Saints", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "NO", @@ -6087,8 +5749,7 @@ "canonical_id": "game_nfl_2026_20251026_dal_den", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "2:25p", + "game_datetime_utc": "2025-10-26T20:25:00Z", "home_team": "Denver Broncos", "away_team": "Dallas Cowboys", "home_team_abbrev": "DEN", @@ -6105,8 +5766,7 @@ "canonical_id": "game_nfl_2026_20251026_ten_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "4:25p", + "game_datetime_utc": "2025-10-26T20:25:00Z", "home_team": "Indianapolis Colts", "away_team": "Tennessee Titans", "home_team_abbrev": "IND", @@ -6123,8 +5783,7 @@ "canonical_id": "game_nhl_2025_20251026_vgk_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Vegas Golden Knights", "home_team_abbrev": "TB", @@ -6141,8 +5800,7 @@ "canonical_id": "game_nba_2025_20251026_cho_was", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Washington Wizards", "away_team": "Charlotte Hornets", "home_team_abbrev": "WAS", @@ -6159,8 +5817,7 @@ "canonical_id": "game_nba_2025_20251026_mil_cle", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CLE", @@ -6177,8 +5834,7 @@ "canonical_id": "game_nba_2025_20251026_nyk_mia", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Miami Heat", "away_team": "New York Knicks", "home_team_abbrev": "MIA", @@ -6195,8 +5851,7 @@ "canonical_id": "game_nhl_2025_20251026_ari_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Utah Club", "home_team_abbrev": "WPG", @@ -6213,8 +5868,7 @@ "canonical_id": "game_nhl_2025_20251026_sj_min", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "San Jose Sharks", "home_team_abbrev": "MIN", @@ -6231,8 +5885,7 @@ "canonical_id": "game_nba_2025_20251026_ind_min", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Indiana Pacers", "home_team_abbrev": "MIN", @@ -6249,8 +5902,7 @@ "canonical_id": "game_nhl_2025_20251026_dal_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Nashville Predators", "away_team": "Dallas Stars", "home_team_abbrev": "NSH", @@ -6267,8 +5919,7 @@ "canonical_id": "game_nhl_2025_20251026_la_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Los Angeles Kings", "home_team_abbrev": "CHI", @@ -6285,8 +5936,7 @@ "canonical_id": "game_nba_2025_20251026_tor_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6:30p", + "game_datetime_utc": "2025-10-26T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Toronto Raptors", "home_team_abbrev": "DAL", @@ -6303,8 +5953,7 @@ "canonical_id": "game_nhl_2025_20251026_nyr_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T00:00:00Z", "home_team": "Calgary Flames", "away_team": "New York Rangers", "home_team_abbrev": "CGY", @@ -6321,8 +5970,7 @@ "canonical_id": "game_nfl_2026_20251027_gb_pit", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "8:20p", + "game_datetime_utc": "2025-10-27T00:20:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Green Bay Packers", "home_team_abbrev": "PIT", @@ -6339,8 +5987,7 @@ "canonical_id": "game_nba_2025_20251026_por_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T01:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Portland Blazers", "home_team_abbrev": "LAC", @@ -6357,8 +6004,7 @@ "canonical_id": "game_nba_2025_20251026_lal_sac", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAC", @@ -6375,8 +6021,7 @@ "canonical_id": "game_nhl_2025_20251026_edm_van", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "7p", + "game_datetime_utc": "2025-10-27T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Edmonton Oilers", "home_team_abbrev": "VAN", @@ -6393,8 +6038,7 @@ "canonical_id": "game_nba_2025_20251027_cle_det", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DET", @@ -6411,8 +6055,7 @@ "canonical_id": "game_nba_2025_20251027_orl_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "4p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Orlando Magic", "home_team_abbrev": "PHI", @@ -6429,8 +6072,7 @@ "canonical_id": "game_nhl_2025_20251027_stl_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "St. Louis Blues", "home_team_abbrev": "PIT", @@ -6447,8 +6089,7 @@ "canonical_id": "game_nhl_2025_20251027_bos_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-27T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Boston Bruins", "home_team_abbrev": "OTT", @@ -6465,8 +6106,7 @@ "canonical_id": "game_nba_2025_20251027_tor_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Toronto Raptors", "home_team_abbrev": "SAS", @@ -6483,8 +6123,7 @@ "canonical_id": "game_nba_2025_20251027_atl_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHI", @@ -6501,8 +6140,7 @@ "canonical_id": "game_nba_2025_20251027_brk_hou", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Brooklyn Nets", "home_team_abbrev": "HOU", @@ -6519,8 +6157,7 @@ "canonical_id": "game_nba_2025_20251027_bos_nop", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Boston Celtics", "home_team_abbrev": "NOP", @@ -6537,8 +6174,7 @@ "canonical_id": "game_nfl_2026_20251028_was_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-27", - "time": "7:15p", + "game_datetime_utc": "2025-10-28T00:15:00Z", "home_team": "Kansas City Chiefs", "away_team": "Washington Commanders", "home_team_abbrev": "KC", @@ -6555,8 +6191,7 @@ "canonical_id": "game_nba_2025_20251027_okc_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DAL", @@ -6573,8 +6208,7 @@ "canonical_id": "game_nba_2025_20251027_phx_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Phoenix Suns", "home_team_abbrev": "UTA", @@ -6591,8 +6225,7 @@ "canonical_id": "game_nba_2025_20251027_den_min", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "8:30p", + "game_datetime_utc": "2025-10-28T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Denver Nuggets", "home_team_abbrev": "MIN", @@ -6609,8 +6242,7 @@ "canonical_id": "game_nba_2025_20251027_mem_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "GSW", @@ -6627,8 +6259,7 @@ "canonical_id": "game_nba_2025_20251027_por_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Portland Blazers", "home_team_abbrev": "LAL", @@ -6645,8 +6276,7 @@ "canonical_id": "game_nhl_2025_20251028_pit_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6p", + "game_datetime_utc": "2025-10-28T22:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "PHI", @@ -6663,8 +6293,7 @@ "canonical_id": "game_nhl_2025_20251028_cgy_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6p", + "game_datetime_utc": "2025-10-28T22:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Calgary Flames", "home_team_abbrev": "TOR", @@ -6681,8 +6310,7 @@ "canonical_id": "game_nhl_2025_20251028_vgk_car", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:30p", + "game_datetime_utc": "2025-10-28T22:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CAR", @@ -6699,8 +6327,7 @@ "canonical_id": "game_nhl_2025_20251028_cbj_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:45p", + "game_datetime_utc": "2025-10-28T22:45:00Z", "home_team": "Buffalo Sabres", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BUF", @@ -6717,8 +6344,7 @@ "canonical_id": "game_nba_2025_20251028_phi_was", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-28T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Philadelphia 76ers", "home_team_abbrev": "WAS", @@ -6735,8 +6361,7 @@ "canonical_id": "game_nhl_2025_20251028_ana_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-28T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Anaheim Ducks", "home_team_abbrev": "FLA", @@ -6753,8 +6378,7 @@ "canonical_id": "game_nhl_2025_20251028_nyi_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:15p", + "game_datetime_utc": "2025-10-28T23:15:00Z", "home_team": "Boston Bruins", "away_team": "New York Islanders", "home_team_abbrev": "BOS", @@ -6771,8 +6395,7 @@ "canonical_id": "game_nba_2025_20251028_cho_mia", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T23:30:00Z", "home_team": "Miami Heat", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIA", @@ -6789,8 +6412,7 @@ "canonical_id": "game_nhl_2025_20251028_tb_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:45p", + "game_datetime_utc": "2025-10-28T23:45:00Z", "home_team": "Nashville Predators", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NSH", @@ -6807,8 +6429,7 @@ "canonical_id": "game_nba_2025_20251028_sac_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Sacramento Kings", "home_team_abbrev": "OKC", @@ -6825,8 +6446,7 @@ "canonical_id": "game_nba_2025_20251028_nyk_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New York Knicks", "home_team_abbrev": "MIL", @@ -6843,8 +6463,7 @@ "canonical_id": "game_nhl_2025_20251028_wpg_min", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Winnipeg Jets", "home_team_abbrev": "MIN", @@ -6861,8 +6480,7 @@ "canonical_id": "game_nhl_2025_20251028_det_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:15p", + "game_datetime_utc": "2025-10-29T00:15:00Z", "home_team": "St. Louis Blues", "away_team": "Detroit Red Wings", "home_team_abbrev": "STL", @@ -6879,8 +6497,7 @@ "canonical_id": "game_nhl_2025_20251028_was_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T00:30:00Z", "home_team": "Dallas Stars", "away_team": "Washington Capitals", "home_team_abbrev": "DAL", @@ -6897,8 +6514,7 @@ "canonical_id": "game_nhl_2025_20251028_ott_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:45p", + "game_datetime_utc": "2025-10-29T00:45:00Z", "home_team": "Chicago Blackhawks", "away_team": "Ottawa Senators", "home_team_abbrev": "CHI", @@ -6915,8 +6531,7 @@ "canonical_id": "game_nhl_2025_20251028_njd_col", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New Jersey Devils", "home_team_abbrev": "COL", @@ -6933,8 +6548,7 @@ "canonical_id": "game_nhl_2025_20251028_ari_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Utah Club", "home_team_abbrev": "EDM", @@ -6951,8 +6565,7 @@ "canonical_id": "game_nhl_2025_20251028_nyr_van", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New York Rangers", "home_team_abbrev": "VAN", @@ -6969,8 +6582,7 @@ "canonical_id": "game_nhl_2025_20251028_mtl_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T02:30:00Z", "home_team": "Seattle Kraken", "away_team": "Montreal Canadiens", "home_team_abbrev": "SEA", @@ -6987,8 +6599,7 @@ "canonical_id": "game_nba_2025_20251028_lac_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "8p", + "game_datetime_utc": "2025-10-29T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "GSW", @@ -7005,8 +6616,7 @@ "canonical_id": "game_nhl_2025_20251028_la_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "8p", + "game_datetime_utc": "2025-10-29T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Los Angeles Kings", "home_team_abbrev": "SJ", @@ -7023,8 +6633,7 @@ "canonical_id": "game_nba_2025_20251029_hou_tor", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "6:30p", + "game_datetime_utc": "2025-10-29T22:30:00Z", "home_team": "Toronto Raptors", "away_team": "Houston Rockets", "home_team_abbrev": "TOR", @@ -7041,8 +6650,7 @@ "canonical_id": "game_nba_2025_20251029_cle_bos", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-29T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BOS", @@ -7059,8 +6667,7 @@ "canonical_id": "game_nba_2025_20251029_orl_det", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-29T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Orlando Magic", "home_team_abbrev": "DET", @@ -7077,8 +6684,7 @@ "canonical_id": "game_nba_2025_20251029_atl_brk", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Atlanta Hawks", "home_team_abbrev": "BKN", @@ -7095,8 +6701,7 @@ "canonical_id": "game_nhl_2025_20251029_tor_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T23:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CBJ", @@ -7113,8 +6718,7 @@ "canonical_id": "game_nba_2025_20251029_sac_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Sacramento Kings", "home_team_abbrev": "CHI", @@ -7131,8 +6735,7 @@ "canonical_id": "game_nba_2025_20251029_ind_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-30T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Indiana Pacers", "home_team_abbrev": "DAL", @@ -7149,8 +6752,7 @@ "canonical_id": "game_nba_2025_20251029_nop_den", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DEN", @@ -7167,8 +6769,7 @@ "canonical_id": "game_nba_2025_20251029_por_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Portland Blazers", "home_team_abbrev": "UTA", @@ -7185,8 +6786,7 @@ "canonical_id": "game_nba_2025_20251029_lal_min", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "8:30p", + "game_datetime_utc": "2025-10-30T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIN", @@ -7203,8 +6803,7 @@ "canonical_id": "game_nba_2025_20251029_mem_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "10p", + "game_datetime_utc": "2025-10-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Memphis Grizzlies", "home_team_abbrev": "PHX", @@ -7221,8 +6820,7 @@ "canonical_id": "game_nba_2025_20251030_orl_cho", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Orlando Magic", "home_team_abbrev": "CHA", @@ -7239,8 +6837,7 @@ "canonical_id": "game_nhl_2025_20251030_dal_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Dallas Stars", "home_team_abbrev": "TB", @@ -7257,8 +6854,7 @@ "canonical_id": "game_nhl_2025_20251030_nsh_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Nashville Predators", "home_team_abbrev": "PHI", @@ -7275,8 +6871,7 @@ "canonical_id": "game_nhl_2025_20251030_cgy_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Calgary Flames", "home_team_abbrev": "OTT", @@ -7293,8 +6888,7 @@ "canonical_id": "game_nhl_2025_20251030_buf_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Buffalo Sabres", "home_team_abbrev": "BOS", @@ -7311,8 +6905,7 @@ "canonical_id": "game_nhl_2025_20251030_nyi_car", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-30T23:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Islanders", "home_team_abbrev": "CAR", @@ -7329,8 +6922,7 @@ "canonical_id": "game_nba_2025_20251030_was_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Washington Wizards", "home_team_abbrev": "OKC", @@ -7347,8 +6939,7 @@ "canonical_id": "game_nba_2025_20251030_gsw_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Golden State Warriors", "home_team_abbrev": "MIL", @@ -7365,8 +6956,7 @@ "canonical_id": "game_nhl_2025_20251030_chi_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WPG", @@ -7383,8 +6973,7 @@ "canonical_id": "game_nhl_2025_20251030_pit_min", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "MIN", @@ -7401,8 +6990,7 @@ "canonical_id": "game_nhl_2025_20251030_van_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vancouver Canucks", "home_team_abbrev": "STL", @@ -7419,8 +7007,7 @@ "canonical_id": "game_nfl_2026_20251031_bal_mia", "sport": "NFL", "season": "2025", - "date": "2025-10-30", - "time": "8:15p", + "game_datetime_utc": "2025-10-31T00:15:00Z", "home_team": "Miami Dolphins", "away_team": "Baltimore Ravens", "home_team_abbrev": "MIA", @@ -7437,8 +7024,7 @@ "canonical_id": "game_nba_2025_20251030_mia_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-31T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Miami Heat", "home_team_abbrev": "SAS", @@ -7455,8 +7041,7 @@ "canonical_id": "game_nhl_2025_20251030_nyr_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New York Rangers", "home_team_abbrev": "EDM", @@ -7473,8 +7058,7 @@ "canonical_id": "game_nhl_2025_20251030_njd_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "New Jersey Devils", "home_team_abbrev": "SJ", @@ -7491,8 +7075,7 @@ "canonical_id": "game_nhl_2025_20251030_det_la", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-31T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Detroit Red Wings", "home_team_abbrev": "LA", @@ -7509,8 +7092,7 @@ "canonical_id": "game_nhl_2025_20251031_col_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "1p", + "game_datetime_utc": "2025-10-31T20:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Colorado Avalanche", "home_team_abbrev": "VGK", @@ -7527,8 +7109,7 @@ "canonical_id": "game_nba_2025_20251031_atl_ind", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Atlanta Hawks", "home_team_abbrev": "IND", @@ -7545,8 +7126,7 @@ "canonical_id": "game_nba_2025_20251031_bos_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "4p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Boston Celtics", "home_team_abbrev": "PHI", @@ -7563,8 +7143,7 @@ "canonical_id": "game_nhl_2025_20251031_nyi_was", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Islanders", "home_team_abbrev": "WAS", @@ -7581,8 +7160,7 @@ "canonical_id": "game_nba_2025_20251031_tor_cle", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "6:30p", + "game_datetime_utc": "2025-10-31T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Toronto Raptors", "home_team_abbrev": "CLE", @@ -7599,8 +7177,7 @@ "canonical_id": "game_nba_2025_20251031_nyk_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New York Knicks", "home_team_abbrev": "CHI", @@ -7617,8 +7194,7 @@ "canonical_id": "game_nba_2025_20251031_lal_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "8:30p", + "game_datetime_utc": "2025-11-01T01:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MEM", @@ -7635,8 +7211,7 @@ "canonical_id": "game_nba_2025_20251031_uta_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "10p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Utah Jazz", "home_team_abbrev": "PHX", @@ -7653,8 +7228,7 @@ "canonical_id": "game_nba_2025_20251031_den_por", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Denver Nuggets", "home_team_abbrev": "POR", @@ -7671,8 +7245,7 @@ "canonical_id": "game_nhl_2025_20251031_det_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Detroit Red Wings", "home_team_abbrev": "ANA", @@ -7689,8 +7262,7 @@ "canonical_id": "game_nba_2025_20251031_nop_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7:30p", + "game_datetime_utc": "2025-11-01T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAC", @@ -7707,8 +7279,7 @@ "canonical_id": "game_nhl_2025_20251101_car_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "1p", + "game_datetime_utc": "2025-11-01T17:00:00Z", "home_team": "Boston Bruins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BOS", @@ -7725,8 +7296,7 @@ "canonical_id": "game_nhl_2025_20251101_pit_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "2p", + "game_datetime_utc": "2025-11-01T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "WPG", @@ -7743,8 +7313,7 @@ "canonical_id": "game_nhl_2025_20251101_cgy_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "2:30p", + "game_datetime_utc": "2025-11-01T19:30:00Z", "home_team": "Nashville Predators", "away_team": "Calgary Flames", "home_team_abbrev": "NSH", @@ -7761,8 +7330,7 @@ "canonical_id": "game_nhl_2025_20251101_col_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "1p", + "game_datetime_utc": "2025-11-01T20:00:00Z", "home_team": "San Jose Sharks", "away_team": "Colorado Avalanche", "home_team_abbrev": "SJ", @@ -7779,8 +7347,7 @@ "canonical_id": "game_nba_2025_20251101_sac_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "4p", + "game_datetime_utc": "2025-11-01T21:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Sacramento Kings", "home_team_abbrev": "MIL", @@ -7797,8 +7364,7 @@ "canonical_id": "game_nba_2025_20251101_min_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CHA", @@ -7815,8 +7381,7 @@ "canonical_id": "game_nhl_2025_20251101_dal_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Dallas Stars", "home_team_abbrev": "FLA", @@ -7833,8 +7398,7 @@ "canonical_id": "game_nba_2025_20251101_gsw_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Golden State Warriors", "home_team_abbrev": "IND", @@ -7851,8 +7415,7 @@ "canonical_id": "game_nba_2025_20251101_orl_was", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Orlando Magic", "home_team_abbrev": "WAS", @@ -7869,8 +7432,7 @@ "canonical_id": "game_nhl_2025_20251101_was_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Washington Capitals", "home_team_abbrev": "BUF", @@ -7887,8 +7449,7 @@ "canonical_id": "game_nhl_2025_20251101_tor_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PHI", @@ -7905,8 +7466,7 @@ "canonical_id": "game_nhl_2025_20251101_ott_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Ottawa Senators", "home_team_abbrev": "MTL", @@ -7923,8 +7483,7 @@ "canonical_id": "game_nhl_2025_20251101_van_min", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vancouver Canucks", "home_team_abbrev": "MIN", @@ -7941,8 +7500,7 @@ "canonical_id": "game_nhl_2025_20251101_stl_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "St. Louis Blues", "home_team_abbrev": "CBJ", @@ -7959,8 +7517,7 @@ "canonical_id": "game_nba_2025_20251101_hou_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Houston Rockets", "home_team_abbrev": "BOS", @@ -7977,8 +7534,7 @@ "canonical_id": "game_nhl_2025_20251101_njd_la", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-02T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "New Jersey Devils", "home_team_abbrev": "LA", @@ -7995,8 +7551,7 @@ "canonical_id": "game_nba_2025_20251101_dal_det", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Detroit Pistons", "away_team": "Dallas Mavericks", "home_team_abbrev": "DET", @@ -8013,8 +7568,7 @@ "canonical_id": "game_nhl_2025_20251101_nyr_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "New York Rangers", "home_team_abbrev": "SEA", @@ -8031,8 +7585,7 @@ "canonical_id": "game_nhl_2025_20251101_chi_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "EDM", @@ -8049,8 +7602,7 @@ "canonical_id": "game_nfl_2026_20251102_min_det", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Detroit Lions", "away_team": "Minnesota Vikings", "home_team_abbrev": "DET", @@ -8067,8 +7619,7 @@ "canonical_id": "game_nfl_2026_20251102_ind_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Indianapolis Colts", "home_team_abbrev": "PIT", @@ -8085,8 +7636,7 @@ "canonical_id": "game_nfl_2026_20251102_chi_cin", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Chicago Bears", "home_team_abbrev": "CIN", @@ -8103,8 +7653,7 @@ "canonical_id": "game_nfl_2026_20251102_car_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Green Bay Packers", "away_team": "Carolina Panthers", "home_team_abbrev": "GB", @@ -8121,8 +7670,7 @@ "canonical_id": "game_nfl_2026_20251102_lac_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Los Angeles Chargers", "home_team_abbrev": "TEN", @@ -8139,8 +7687,7 @@ "canonical_id": "game_nfl_2026_20251102_atl_ne", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "New England Patriots", "away_team": "Atlanta Falcons", "home_team_abbrev": "NE", @@ -8157,8 +7704,7 @@ "canonical_id": "game_nfl_2026_20251102_sf_nyg", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "New York Giants", "away_team": "San Francisco 49ers", "home_team_abbrev": "NYG", @@ -8175,8 +7721,7 @@ "canonical_id": "game_nfl_2026_20251102_den_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Houston Texans", "away_team": "Denver Broncos", "home_team_abbrev": "HOU", @@ -8193,8 +7738,7 @@ "canonical_id": "game_nba_2025_20251102_nop_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "2:30p", + "game_datetime_utc": "2025-11-02T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New Orleans Pelicans", "home_team_abbrev": "OKC", @@ -8211,8 +7755,7 @@ "canonical_id": "game_nhl_2025_20251102_tb_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "1:30p", + "game_datetime_utc": "2025-11-02T20:30:00Z", "home_team": "Utah Club", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "ARI", @@ -8229,8 +7772,7 @@ "canonical_id": "game_nfl_2026_20251102_no_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1:05p", + "game_datetime_utc": "2025-11-02T21:05:00Z", "home_team": "Los Angeles Rams", "away_team": "New Orleans Saints", "home_team_abbrev": "LAR", @@ -8247,8 +7789,7 @@ "canonical_id": "game_nfl_2026_20251102_jax_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1:05p", + "game_datetime_utc": "2025-11-02T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "LV", @@ -8265,8 +7806,7 @@ "canonical_id": "game_nfl_2026_20251102_kc_buf", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "4:25p", + "game_datetime_utc": "2025-11-02T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "Kansas City Chiefs", "home_team_abbrev": "BUF", @@ -8283,8 +7823,7 @@ "canonical_id": "game_nhl_2025_20251102_cbj_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-02T22:00:00Z", "home_team": "New York Islanders", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYI", @@ -8301,8 +7840,7 @@ "canonical_id": "game_nba_2025_20251102_uta_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Utah Jazz", "home_team_abbrev": "CHA", @@ -8319,8 +7857,7 @@ "canonical_id": "game_nba_2025_20251102_mem_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "TOR", @@ -8337,8 +7874,7 @@ "canonical_id": "game_nba_2025_20251102_phi_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BKN", @@ -8355,8 +7891,7 @@ "canonical_id": "game_nba_2025_20251102_atl_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Atlanta Hawks", "home_team_abbrev": "CLE", @@ -8373,8 +7908,7 @@ "canonical_id": "game_nba_2025_20251102_chi_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "7p", + "game_datetime_utc": "2025-11-03T00:00:00Z", "home_team": "New York Knicks", "away_team": "Chicago Bulls", "home_team_abbrev": "NYK", @@ -8391,8 +7925,7 @@ "canonical_id": "game_nhl_2025_20251102_cgy_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "7p", + "game_datetime_utc": "2025-11-03T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Calgary Flames", "home_team_abbrev": "PHI", @@ -8409,8 +7942,7 @@ "canonical_id": "game_nba_2025_20251102_sas_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "8p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHX", @@ -8427,8 +7959,7 @@ "canonical_id": "game_nhl_2025_20251102_njd_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New Jersey Devils", "home_team_abbrev": "ANA", @@ -8445,8 +7976,7 @@ "canonical_id": "game_nhl_2025_20251102_det_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Detroit Red Wings", "home_team_abbrev": "SJ", @@ -8463,8 +7993,7 @@ "canonical_id": "game_nfl_2026_20251103_sea_was", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "8:20p", + "game_datetime_utc": "2025-11-03T01:20:00Z", "home_team": "Washington Commanders", "away_team": "Seattle Seahawks", "home_team_abbrev": "WAS", @@ -8481,8 +8010,7 @@ "canonical_id": "game_nba_2025_20251102_mia_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6:30p", + "game_datetime_utc": "2025-11-03T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Miami Heat", "home_team_abbrev": "LAL", @@ -8499,8 +8027,7 @@ "canonical_id": "game_nba_2025_20251103_min_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T00:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "BKN", @@ -8517,8 +8044,7 @@ "canonical_id": "game_nba_2025_20251103_mil_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "IND", @@ -8535,8 +8061,7 @@ "canonical_id": "game_nba_2025_20251103_uta_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Utah Jazz", "home_team_abbrev": "BOS", @@ -8553,8 +8078,7 @@ "canonical_id": "game_nba_2025_20251103_was_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Washington Wizards", "home_team_abbrev": "NYK", @@ -8571,8 +8095,7 @@ "canonical_id": "game_nhl_2025_20251103_pit_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TOR", @@ -8589,8 +8112,7 @@ "canonical_id": "game_nba_2025_20251103_dal_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Dallas Mavericks", "home_team_abbrev": "HOU", @@ -8607,8 +8129,7 @@ "canonical_id": "game_nba_2025_20251103_det_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Detroit Pistons", "home_team_abbrev": "MEM", @@ -8625,8 +8146,7 @@ "canonical_id": "game_nfl_2026_20251104_ari_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-03", - "time": "7:15p", + "game_datetime_utc": "2025-11-04T01:15:00Z", "home_team": "Dallas Cowboys", "away_team": "Arizona Cardinals", "home_team_abbrev": "DAL", @@ -8643,8 +8163,7 @@ "canonical_id": "game_nhl_2025_20251103_edm_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Edmonton Oilers", "home_team_abbrev": "STL", @@ -8661,8 +8180,7 @@ "canonical_id": "game_nhl_2025_20251103_van_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T01:30:00Z", "home_team": "Nashville Predators", "away_team": "Vancouver Canucks", "home_team_abbrev": "NSH", @@ -8679,8 +8197,7 @@ "canonical_id": "game_nba_2025_20251103_sac_den", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Sacramento Kings", "home_team_abbrev": "DEN", @@ -8697,8 +8214,7 @@ "canonical_id": "game_nba_2025_20251103_lal_por", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "POR", @@ -8715,8 +8231,7 @@ "canonical_id": "game_nhl_2025_20251103_chi_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SEA", @@ -8733,8 +8248,7 @@ "canonical_id": "game_nba_2025_20251103_mia_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Miami Heat", "home_team_abbrev": "LAC", @@ -8751,8 +8265,7 @@ "canonical_id": "game_nhl_2025_20251104_car_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "New York Rangers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYR", @@ -8769,8 +8282,7 @@ "canonical_id": "game_nhl_2025_20251104_ari_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Utah Club", "home_team_abbrev": "BUF", @@ -8787,8 +8299,7 @@ "canonical_id": "game_nhl_2025_20251104_phi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MTL", @@ -8805,8 +8316,7 @@ "canonical_id": "game_nhl_2025_20251104_bos_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "New York Islanders", "away_team": "Boston Bruins", "home_team_abbrev": "NYI", @@ -8823,8 +8333,7 @@ "canonical_id": "game_nba_2025_20251104_mil_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "TOR", @@ -8841,8 +8350,7 @@ "canonical_id": "game_nba_2025_20251104_orl_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "8p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Orlando Magic", "home_team_abbrev": "ATL", @@ -8859,8 +8367,7 @@ "canonical_id": "game_nba_2025_20251104_phi_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHI", @@ -8877,8 +8384,7 @@ "canonical_id": "game_nba_2025_20251104_cho_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Charlotte Hornets", "home_team_abbrev": "NOP", @@ -8895,8 +8401,7 @@ "canonical_id": "game_nhl_2025_20251104_edm_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Edmonton Oilers", "home_team_abbrev": "DAL", @@ -8913,8 +8418,7 @@ "canonical_id": "game_nhl_2025_20251104_nsh_min", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Nashville Predators", "home_team_abbrev": "MIN", @@ -8931,8 +8435,7 @@ "canonical_id": "game_nhl_2025_20251104_tb_col", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "COL", @@ -8949,8 +8452,7 @@ "canonical_id": "game_nba_2025_20251104_phx_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Phoenix Suns", "home_team_abbrev": "GSW", @@ -8967,8 +8469,7 @@ "canonical_id": "game_nhl_2025_20251104_fla_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Florida Panthers", "home_team_abbrev": "ANA", @@ -8985,8 +8486,7 @@ "canonical_id": "game_nhl_2025_20251104_det_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Detroit Red Wings", "home_team_abbrev": "VGK", @@ -9003,8 +8503,7 @@ "canonical_id": "game_nhl_2025_20251104_wpg_la", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Winnipeg Jets", "home_team_abbrev": "LA", @@ -9021,8 +8520,7 @@ "canonical_id": "game_nba_2025_20251104_okc_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "8p", + "game_datetime_utc": "2025-11-05T04:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAC", @@ -9039,8 +8537,7 @@ "canonical_id": "game_nba_2025_20251105_brk_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Brooklyn Nets", "home_team_abbrev": "IND", @@ -9057,8 +8554,7 @@ "canonical_id": "game_nba_2025_20251105_uta_det", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Utah Jazz", "home_team_abbrev": "DET", @@ -9075,8 +8571,7 @@ "canonical_id": "game_nba_2025_20251105_phi_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "6p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CLE", @@ -9093,8 +8588,7 @@ "canonical_id": "game_nhl_2025_20251105_ari_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Utah Club", "home_team_abbrev": "TOR", @@ -9111,8 +8605,7 @@ "canonical_id": "game_nba_2025_20251105_was_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Washington Wizards", "home_team_abbrev": "BOS", @@ -9129,8 +8622,7 @@ "canonical_id": "game_nba_2025_20251105_min_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "New York Knicks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NYK", @@ -9147,8 +8639,7 @@ "canonical_id": "game_nhl_2025_20251105_stl_was", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "Washington Capitals", "away_team": "St. Louis Blues", "home_team_abbrev": "WAS", @@ -9165,8 +8656,7 @@ "canonical_id": "game_nba_2025_20251105_hou_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Houston Rockets", "home_team_abbrev": "MEM", @@ -9183,8 +8673,7 @@ "canonical_id": "game_nba_2025_20251105_nop_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DAL", @@ -9201,8 +8690,7 @@ "canonical_id": "game_nba_2025_20251105_mia_den", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Miami Heat", "home_team_abbrev": "DEN", @@ -9219,8 +8707,7 @@ "canonical_id": "game_nhl_2025_20251105_cbj_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CGY", @@ -9237,8 +8724,7 @@ "canonical_id": "game_nba_2025_20251105_okc_por", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "POR", @@ -9255,8 +8741,7 @@ "canonical_id": "game_nba_2025_20251105_sas_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -9273,8 +8758,7 @@ "canonical_id": "game_nba_2025_20251105_gsw_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Golden State Warriors", "home_team_abbrev": "SAC", @@ -9291,8 +8775,7 @@ "canonical_id": "game_nhl_2025_20251105_chi_van", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VAN", @@ -9309,8 +8792,7 @@ "canonical_id": "game_nhl_2025_20251105_sj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "San Jose Sharks", "home_team_abbrev": "SEA", @@ -9327,8 +8809,7 @@ "canonical_id": "game_nhl_2025_20251106_ott_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Ottawa Senators", "home_team_abbrev": "BOS", @@ -9345,8 +8826,7 @@ "canonical_id": "game_nhl_2025_20251106_stl_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "St. Louis Blues", "home_team_abbrev": "BUF", @@ -9363,8 +8843,7 @@ "canonical_id": "game_nhl_2025_20251106_mtl_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Montreal Canadiens", "home_team_abbrev": "NJ", @@ -9381,8 +8860,7 @@ "canonical_id": "game_nhl_2025_20251106_min_car", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Minnesota Wild", "home_team_abbrev": "CAR", @@ -9399,8 +8877,7 @@ "canonical_id": "game_nhl_2025_20251106_was_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7:30p", + "game_datetime_utc": "2025-11-07T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Washington Capitals", "home_team_abbrev": "PIT", @@ -9417,8 +8894,7 @@ "canonical_id": "game_nhl_2025_20251106_ana_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Anaheim Ducks", "home_team_abbrev": "DAL", @@ -9435,8 +8911,7 @@ "canonical_id": "game_nhl_2025_20251106_phi_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NSH", @@ -9453,8 +8928,7 @@ "canonical_id": "game_nfl_2026_20251107_lv_den", "sport": "NFL", "season": "2025", - "date": "2025-11-06", - "time": "6:15p", + "game_datetime_utc": "2025-11-07T01:15:00Z", "home_team": "Denver Broncos", "away_team": "Las Vegas Raiders", "home_team_abbrev": "DEN", @@ -9471,8 +8945,7 @@ "canonical_id": "game_nba_2025_20251106_lac_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-06", - "time": "9p", + "game_datetime_utc": "2025-11-07T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHX", @@ -9489,8 +8962,7 @@ "canonical_id": "game_nhl_2025_20251106_fla_la", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Florida Panthers", "home_team_abbrev": "LA", @@ -9507,8 +8979,7 @@ "canonical_id": "game_nhl_2025_20251106_tb_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "VGK", @@ -9525,8 +8996,7 @@ "canonical_id": "game_nba_2025_20251107_bos_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Boston Celtics", "home_team_abbrev": "ORL", @@ -9543,8 +9013,7 @@ "canonical_id": "game_nba_2025_20251107_cle_was", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "WAS", @@ -9561,8 +9030,7 @@ "canonical_id": "game_nhl_2025_20251107_min_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "New York Islanders", "away_team": "Minnesota Wild", "home_team_abbrev": "NYI", @@ -9579,8 +9047,7 @@ "canonical_id": "game_nhl_2025_20251107_nyr_det", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Rangers", "home_team_abbrev": "DET", @@ -9597,8 +9064,7 @@ "canonical_id": "game_nba_2025_20251107_hou_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "6:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Houston Rockets", "home_team_abbrev": "SAS", @@ -9615,8 +9081,7 @@ "canonical_id": "game_nba_2025_20251107_tor_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Toronto Raptors", "home_team_abbrev": "ATL", @@ -9633,8 +9098,7 @@ "canonical_id": "game_nba_2025_20251107_det_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Detroit Pistons", "home_team_abbrev": "BKN", @@ -9651,8 +9115,7 @@ "canonical_id": "game_nba_2025_20251107_chi_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Chicago Bulls", "home_team_abbrev": "MIL", @@ -9669,8 +9132,7 @@ "canonical_id": "game_nba_2025_20251107_dal_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -9687,8 +9149,7 @@ "canonical_id": "game_nba_2025_20251107_cho_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "8p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Miami Heat", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIA", @@ -9705,8 +9166,7 @@ "canonical_id": "game_nba_2025_20251107_uta_min", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Utah Jazz", "home_team_abbrev": "MIN", @@ -9723,8 +9183,7 @@ "canonical_id": "game_nhl_2025_20251107_chi_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CGY", @@ -9741,8 +9200,7 @@ "canonical_id": "game_nba_2025_20251107_gsw_den", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "8p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Golden State Warriors", "home_team_abbrev": "DEN", @@ -9759,8 +9217,7 @@ "canonical_id": "game_nba_2025_20251107_okc_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAC", @@ -9777,8 +9234,7 @@ "canonical_id": "game_nhl_2025_20251107_wpg_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Winnipeg Jets", "home_team_abbrev": "SJ", @@ -9795,8 +9251,7 @@ "canonical_id": "game_nhl_2025_20251108_pit_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "12:30p", + "game_datetime_utc": "2025-11-08T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NJ", @@ -9813,8 +9268,7 @@ "canonical_id": "game_nhl_2025_20251108_ott_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "1p", + "game_datetime_utc": "2025-11-08T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Ottawa Senators", "home_team_abbrev": "PHI", @@ -9831,8 +9285,7 @@ "canonical_id": "game_nhl_2025_20251108_dal_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "2:30p", + "game_datetime_utc": "2025-11-08T20:30:00Z", "home_team": "Nashville Predators", "away_team": "Dallas Stars", "home_team_abbrev": "NSH", @@ -9849,8 +9302,7 @@ "canonical_id": "game_nba_2025_20251108_dal_was", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Dallas Mavericks", "home_team_abbrev": "WAS", @@ -9867,8 +9319,7 @@ "canonical_id": "game_nhl_2025_20251108_ari_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Utah Club", "home_team_abbrev": "MTL", @@ -9885,8 +9336,7 @@ "canonical_id": "game_nhl_2025_20251108_buf_car", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Buffalo Sabres", "home_team_abbrev": "CAR", @@ -9903,8 +9353,7 @@ "canonical_id": "game_nhl_2025_20251108_nyi_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "New York Rangers", "away_team": "New York Islanders", "home_team_abbrev": "NYR", @@ -9921,8 +9370,7 @@ "canonical_id": "game_nhl_2025_20251108_sea_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "6p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Seattle Kraken", "home_team_abbrev": "STL", @@ -9939,8 +9387,7 @@ "canonical_id": "game_nhl_2025_20251108_was_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Washington Capitals", "home_team_abbrev": "TB", @@ -9957,8 +9404,7 @@ "canonical_id": "game_nhl_2025_20251108_bos_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Boston Bruins", "home_team_abbrev": "TOR", @@ -9975,8 +9421,7 @@ "canonical_id": "game_nba_2025_20251108_tor_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "4:30p", + "game_datetime_utc": "2025-11-09T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Toronto Raptors", "home_team_abbrev": "PHI", @@ -9993,8 +9438,7 @@ "canonical_id": "game_nba_2025_20251108_nop_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAS", @@ -10011,8 +9455,7 @@ "canonical_id": "game_nba_2025_20251108_por_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Miami Heat", "away_team": "Portland Blazers", "home_team_abbrev": "MIA", @@ -10029,8 +9472,7 @@ "canonical_id": "game_nba_2025_20251108_chi_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Chicago Bulls", "home_team_abbrev": "CLE", @@ -10047,8 +9489,7 @@ "canonical_id": "game_nba_2025_20251108_lal_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "ATL", @@ -10065,8 +9506,7 @@ "canonical_id": "game_nba_2025_20251108_ind_den", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Indiana Pacers", "home_team_abbrev": "DEN", @@ -10083,8 +9523,7 @@ "canonical_id": "game_nhl_2025_20251108_fla_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Florida Panthers", "home_team_abbrev": "SJ", @@ -10101,8 +9540,7 @@ "canonical_id": "game_nhl_2025_20251108_ana_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Anaheim Ducks", "home_team_abbrev": "VGK", @@ -10119,8 +9557,7 @@ "canonical_id": "game_nhl_2025_20251108_cbj_van", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "VAN", @@ -10137,8 +9574,7 @@ "canonical_id": "game_nhl_2025_20251108_col_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Colorado Avalanche", "home_team_abbrev": "EDM", @@ -10155,8 +9591,7 @@ "canonical_id": "game_nba_2025_20251108_phx_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7:30p", + "game_datetime_utc": "2025-11-09T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAC", @@ -10173,8 +9608,7 @@ "canonical_id": "game_nfl_2026_20251109_atl_ind", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "3:30p", + "game_datetime_utc": "2025-11-09T14:30:00Z", "home_team": "Indianapolis Colts", "away_team": "Atlanta Falcons", "home_team_abbrev": "IND", @@ -10191,8 +9625,7 @@ "canonical_id": "game_nfl_2026_20251109_jax_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Houston Texans", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "HOU", @@ -10209,8 +9642,7 @@ "canonical_id": "game_nfl_2026_20251109_nyg_chi", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Chicago Bears", "away_team": "New York Giants", "home_team_abbrev": "CHI", @@ -10227,8 +9659,7 @@ "canonical_id": "game_nfl_2026_20251109_buf_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Buffalo Bills", "home_team_abbrev": "MIA", @@ -10245,8 +9676,7 @@ "canonical_id": "game_nfl_2026_20251109_bal_min", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Baltimore Ravens", "home_team_abbrev": "MIN", @@ -10263,8 +9693,7 @@ "canonical_id": "game_nfl_2026_20251109_cle_nyj", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "New York Jets", "away_team": "Cleveland Browns", "home_team_abbrev": "NYJ", @@ -10281,8 +9710,7 @@ "canonical_id": "game_nfl_2026_20251109_ne_tb", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New England Patriots", "home_team_abbrev": "TB", @@ -10299,8 +9727,7 @@ "canonical_id": "game_nfl_2026_20251109_no_car", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "New Orleans Saints", "home_team_abbrev": "CAR", @@ -10317,8 +9744,7 @@ "canonical_id": "game_nhl_2025_20251109_chi_det", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DET", @@ -10335,8 +9761,7 @@ "canonical_id": "game_nhl_2025_20251109_la_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "2p", + "game_datetime_utc": "2025-11-09T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Los Angeles Kings", "home_team_abbrev": "PIT", @@ -10353,8 +9778,7 @@ "canonical_id": "game_nba_2025_20251109_hou_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "2:30p", + "game_datetime_utc": "2025-11-09T20:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Houston Rockets", "home_team_abbrev": "MIL", @@ -10371,8 +9795,7 @@ "canonical_id": "game_nfl_2026_20251109_ari_sea", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1:05p", + "game_datetime_utc": "2025-11-09T21:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Arizona Cardinals", "home_team_abbrev": "SEA", @@ -10389,8 +9812,7 @@ "canonical_id": "game_nfl_2026_20251109_det_was", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "4:25p", + "game_datetime_utc": "2025-11-09T21:25:00Z", "home_team": "Washington Commanders", "away_team": "Detroit Lions", "home_team_abbrev": "WAS", @@ -10407,8 +9829,7 @@ "canonical_id": "game_nfl_2026_20251109_lar_sf", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1:25p", + "game_datetime_utc": "2025-11-09T21:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Los Angeles Rams", "home_team_abbrev": "SF", @@ -10425,8 +9846,7 @@ "canonical_id": "game_nba_2025_20251109_brk_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "New York Knicks", "away_team": "Brooklyn Nets", "home_team_abbrev": "NYK", @@ -10443,8 +9863,7 @@ "canonical_id": "game_nba_2025_20251109_bos_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Boston Celtics", "home_team_abbrev": "ORL", @@ -10461,8 +9880,7 @@ "canonical_id": "game_nba_2025_20251109_okc_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "5p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MEM", @@ -10479,8 +9897,7 @@ "canonical_id": "game_nhl_2025_20251109_car_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TOR", @@ -10497,8 +9914,7 @@ "canonical_id": "game_nhl_2025_20251109_sea_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Seattle Kraken", "home_team_abbrev": "DAL", @@ -10515,8 +9931,7 @@ "canonical_id": "game_nhl_2025_20251109_ari_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Utah Club", "home_team_abbrev": "OTT", @@ -10533,8 +9948,7 @@ "canonical_id": "game_nba_2025_20251109_det_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "4:30p", + "game_datetime_utc": "2025-11-10T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Detroit Pistons", "home_team_abbrev": "PHI", @@ -10551,8 +9965,7 @@ "canonical_id": "game_nhl_2025_20251109_cgy_min", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Calgary Flames", "home_team_abbrev": "MIN", @@ -10569,8 +9982,7 @@ "canonical_id": "game_nfl_2026_20251110_pit_lac", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "5:20p", + "game_datetime_utc": "2025-11-10T01:20:00Z", "home_team": "Los Angeles Chargers", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "LAC", @@ -10587,8 +9999,7 @@ "canonical_id": "game_nba_2025_20251109_ind_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "5:30p", + "game_datetime_utc": "2025-11-10T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Indiana Pacers", "home_team_abbrev": "GSW", @@ -10605,8 +10016,7 @@ "canonical_id": "game_nba_2025_20251109_min_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-10T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAC", @@ -10623,8 +10033,7 @@ "canonical_id": "game_nhl_2025_20251109_col_van", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Colorado Avalanche", "home_team_abbrev": "VAN", @@ -10641,8 +10050,7 @@ "canonical_id": "game_nhl_2025_20251109_wpg_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Winnipeg Jets", "home_team_abbrev": "ANA", @@ -10659,8 +10067,7 @@ "canonical_id": "game_nba_2025_20251110_por_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Portland Blazers", "home_team_abbrev": "ORL", @@ -10677,8 +10084,7 @@ "canonical_id": "game_nba_2025_20251110_was_det", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Washington Wizards", "home_team_abbrev": "DET", @@ -10695,8 +10101,7 @@ "canonical_id": "game_nba_2025_20251110_lal_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CHA", @@ -10713,8 +10118,7 @@ "canonical_id": "game_nhl_2025_20251110_nsh_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "New York Rangers", "away_team": "Nashville Predators", "home_team_abbrev": "NYR", @@ -10731,8 +10135,7 @@ "canonical_id": "game_nhl_2025_20251110_nyi_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Islanders", "home_team_abbrev": "NJ", @@ -10749,8 +10152,7 @@ "canonical_id": "game_nba_2025_20251110_cle_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T00:30:00Z", "home_team": "Miami Heat", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIA", @@ -10767,8 +10169,7 @@ "canonical_id": "game_nba_2025_20251110_sas_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "San Antonio Spurs", "home_team_abbrev": "CHI", @@ -10785,8 +10186,7 @@ "canonical_id": "game_nfl_2026_20251111_phi_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-10", - "time": "7:15p", + "game_datetime_utc": "2025-11-11T01:15:00Z", "home_team": "Green Bay Packers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "GB", @@ -10803,8 +10203,7 @@ "canonical_id": "game_nba_2025_20251110_mil_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DAL", @@ -10821,8 +10220,7 @@ "canonical_id": "game_nhl_2025_20251110_cbj_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "6:30p", + "game_datetime_utc": "2025-11-11T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "EDM", @@ -10839,8 +10237,7 @@ "canonical_id": "game_nba_2025_20251110_nop_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "9p", + "game_datetime_utc": "2025-11-11T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHX", @@ -10857,8 +10254,7 @@ "canonical_id": "game_nba_2025_20251110_min_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "UTA", @@ -10875,8 +10271,7 @@ "canonical_id": "game_nhl_2025_20251110_fla_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Florida Panthers", "home_team_abbrev": "VGK", @@ -10893,8 +10288,7 @@ "canonical_id": "game_nba_2025_20251110_atl_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Atlanta Hawks", "home_team_abbrev": "LAC", @@ -10911,8 +10305,7 @@ "canonical_id": "game_nhl_2025_20251111_was_car", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Washington Capitals", "home_team_abbrev": "CAR", @@ -10929,8 +10322,7 @@ "canonical_id": "game_nhl_2025_20251111_tor_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BOS", @@ -10947,8 +10339,7 @@ "canonical_id": "game_nhl_2025_20251111_dal_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Dallas Stars", "home_team_abbrev": "OTT", @@ -10965,8 +10356,7 @@ "canonical_id": "game_nhl_2025_20251111_la_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Los Angeles Kings", "home_team_abbrev": "MTL", @@ -10983,8 +10373,7 @@ "canonical_id": "game_nba_2025_20251111_tor_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Toronto Raptors", "home_team_abbrev": "BKN", @@ -11001,8 +10390,7 @@ "canonical_id": "game_nba_2025_20251111_mem_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T00:30:00Z", "home_team": "New York Knicks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NYK", @@ -11019,8 +10407,7 @@ "canonical_id": "game_nba_2025_20251111_bos_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "5p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Boston Celtics", "home_team_abbrev": "PHI", @@ -11037,8 +10424,7 @@ "canonical_id": "game_nba_2025_20251111_gsw_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Golden State Warriors", "home_team_abbrev": "OKC", @@ -11055,8 +10441,7 @@ "canonical_id": "game_nhl_2025_20251111_cgy_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Calgary Flames", "home_team_abbrev": "STL", @@ -11073,8 +10458,7 @@ "canonical_id": "game_nhl_2025_20251111_sj_min", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "San Jose Sharks", "home_team_abbrev": "MIN", @@ -11091,8 +10475,7 @@ "canonical_id": "game_nba_2025_20251111_ind_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Indiana Pacers", "home_team_abbrev": "UTA", @@ -11109,8 +10492,7 @@ "canonical_id": "game_nhl_2025_20251111_ana_col", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Anaheim Ducks", "home_team_abbrev": "COL", @@ -11127,8 +10509,7 @@ "canonical_id": "game_nhl_2025_20251111_cbj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "SEA", @@ -11145,8 +10526,7 @@ "canonical_id": "game_nhl_2025_20251111_wpg_van", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Winnipeg Jets", "home_team_abbrev": "VAN", @@ -11163,8 +10543,7 @@ "canonical_id": "game_nba_2025_20251111_den_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "8p", + "game_datetime_utc": "2025-11-12T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Denver Nuggets", "home_team_abbrev": "SAC", @@ -11181,8 +10560,7 @@ "canonical_id": "game_nba_2025_20251112_mil_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHA", @@ -11199,8 +10577,7 @@ "canonical_id": "game_nba_2025_20251112_chi_det", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Chicago Bulls", "home_team_abbrev": "DET", @@ -11217,8 +10594,7 @@ "canonical_id": "game_nba_2025_20251112_orl_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "New York Knicks", "away_team": "Orlando Magic", "home_team_abbrev": "NYK", @@ -11235,8 +10611,7 @@ "canonical_id": "game_nhl_2025_20251112_nyr_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Rangers", "home_team_abbrev": "TB", @@ -11253,8 +10628,7 @@ "canonical_id": "game_nba_2025_20251112_cle_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Miami Heat", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIA", @@ -11271,8 +10645,7 @@ "canonical_id": "game_nba_2025_20251112_mem_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Memphis Grizzlies", "home_team_abbrev": "BOS", @@ -11289,8 +10662,7 @@ "canonical_id": "game_nhl_2025_20251112_edm_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Edmonton Oilers", "home_team_abbrev": "PHI", @@ -11307,8 +10679,7 @@ "canonical_id": "game_nba_2025_20251112_was_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Washington Wizards", "home_team_abbrev": "HOU", @@ -11325,8 +10696,7 @@ "canonical_id": "game_nba_2025_20251112_gsw_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Golden State Warriors", "home_team_abbrev": "SAS", @@ -11343,8 +10713,7 @@ "canonical_id": "game_nba_2025_20251112_por_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -11361,8 +10730,7 @@ "canonical_id": "game_nba_2025_20251112_phx_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Phoenix Suns", "home_team_abbrev": "DAL", @@ -11379,8 +10747,7 @@ "canonical_id": "game_nhl_2025_20251112_buf_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T02:00:00Z", "home_team": "Utah Club", "away_team": "Buffalo Sabres", "home_team_abbrev": "ARI", @@ -11397,8 +10764,7 @@ "canonical_id": "game_nba_2025_20251112_lal_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "8:30p", + "game_datetime_utc": "2025-11-13T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Lakers", "home_team_abbrev": "OKC", @@ -11415,8 +10781,7 @@ "canonical_id": "game_nhl_2025_20251112_njd_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "8:30p", + "game_datetime_utc": "2025-11-13T02:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New Jersey Devils", "home_team_abbrev": "CHI", @@ -11433,8 +10798,7 @@ "canonical_id": "game_nba_2025_20251112_atl_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Atlanta Hawks", "home_team_abbrev": "SAC", @@ -11451,8 +10815,7 @@ "canonical_id": "game_nba_2025_20251112_den_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAC", @@ -11469,8 +10832,7 @@ "canonical_id": "game_nba_2025_20251113_tor_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "6p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Toronto Raptors", "home_team_abbrev": "CLE", @@ -11487,8 +10849,7 @@ "canonical_id": "game_nhl_2025_20251113_was_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Washington Capitals", "home_team_abbrev": "FLA", @@ -11505,8 +10866,7 @@ "canonical_id": "game_nhl_2025_20251113_ana_det", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Anaheim Ducks", "home_team_abbrev": "DET", @@ -11523,8 +10883,7 @@ "canonical_id": "game_nhl_2025_20251113_bos_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Boston Bruins", "home_team_abbrev": "OTT", @@ -11541,8 +10900,7 @@ "canonical_id": "game_nhl_2025_20251113_dal_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Dallas Stars", "home_team_abbrev": "MTL", @@ -11559,8 +10917,7 @@ "canonical_id": "game_nhl_2025_20251113_la_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Los Angeles Kings", "home_team_abbrev": "TOR", @@ -11577,8 +10934,7 @@ "canonical_id": "game_nhl_2025_20251113_edm_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7:30p", + "game_datetime_utc": "2025-11-14T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Edmonton Oilers", "home_team_abbrev": "CBJ", @@ -11595,8 +10951,7 @@ "canonical_id": "game_nfl_2026_20251114_nyj_ne", "sport": "NFL", "season": "2025", - "date": "2025-11-13", - "time": "8:15p", + "game_datetime_utc": "2025-11-14T01:15:00Z", "home_team": "New England Patriots", "away_team": "New York Jets", "home_team_abbrev": "NE", @@ -11613,8 +10968,7 @@ "canonical_id": "game_nba_2025_20251113_atl_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Atlanta Hawks", "home_team_abbrev": "UTA", @@ -11631,8 +10985,7 @@ "canonical_id": "game_nba_2025_20251113_ind_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "9p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Indiana Pacers", "home_team_abbrev": "PHX", @@ -11649,8 +11002,7 @@ "canonical_id": "game_nhl_2025_20251113_sj_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Calgary Flames", "away_team": "San Jose Sharks", "home_team_abbrev": "CGY", @@ -11667,8 +11019,7 @@ "canonical_id": "game_nhl_2025_20251113_buf_col", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Buffalo Sabres", "home_team_abbrev": "COL", @@ -11685,8 +11036,7 @@ "canonical_id": "game_nhl_2025_20251113_nyi_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New York Islanders", "home_team_abbrev": "VGK", @@ -11703,8 +11053,7 @@ "canonical_id": "game_nhl_2025_20251113_wpg_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Winnipeg Jets", "home_team_abbrev": "SEA", @@ -11721,8 +11070,7 @@ "canonical_id": "game_nhl_2025_20251114_pit_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "1p", + "game_datetime_utc": "2025-11-14T19:00:00Z", "home_team": "Nashville Predators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NSH", @@ -11739,8 +11087,7 @@ "canonical_id": "game_nba_2025_20251114_mia_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "New York Knicks", "away_team": "Miami Heat", "home_team_abbrev": "NYK", @@ -11757,8 +11104,7 @@ "canonical_id": "game_nba_2025_20251114_brk_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Brooklyn Nets", "home_team_abbrev": "ORL", @@ -11775,8 +11121,7 @@ "canonical_id": "game_nhl_2025_20251114_van_car", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Vancouver Canucks", "home_team_abbrev": "CAR", @@ -11793,8 +11138,7 @@ "canonical_id": "game_nba_2025_20251114_phi_det", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7:30p", + "game_datetime_utc": "2025-11-15T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DET", @@ -11811,8 +11155,7 @@ "canonical_id": "game_nba_2025_20251114_por_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Portland Blazers", "home_team_abbrev": "HOU", @@ -11829,8 +11172,7 @@ "canonical_id": "game_nba_2025_20251114_cho_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIL", @@ -11847,8 +11189,7 @@ "canonical_id": "game_nba_2025_20251114_sac_min", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Sacramento Kings", "home_team_abbrev": "MIN", @@ -11865,8 +11206,7 @@ "canonical_id": "game_nba_2025_20251114_lal_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NOP", @@ -11883,8 +11223,7 @@ "canonical_id": "game_nhl_2025_20251114_phi_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Philadelphia Flyers", "home_team_abbrev": "STL", @@ -11901,8 +11240,7 @@ "canonical_id": "game_nba_2025_20251114_lac_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7:30p", + "game_datetime_utc": "2025-11-15T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DAL", @@ -11919,8 +11257,7 @@ "canonical_id": "game_nhl_2025_20251114_nyi_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T02:00:00Z", "home_team": "Utah Club", "away_team": "New York Islanders", "home_team_abbrev": "ARI", @@ -11937,8 +11274,7 @@ "canonical_id": "game_nba_2025_20251114_gsw_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "8:30p", + "game_datetime_utc": "2025-11-15T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Golden State Warriors", "home_team_abbrev": "SAS", @@ -11955,8 +11291,7 @@ "canonical_id": "game_nba_2025_20251115_mem_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "4p", + "game_datetime_utc": "2025-11-15T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CLE", @@ -11973,8 +11308,7 @@ "canonical_id": "game_nhl_2025_20251115_tb_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "5p", + "game_datetime_utc": "2025-11-15T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "FLA", @@ -11991,8 +11325,7 @@ "canonical_id": "game_nhl_2025_20251115_ana_min", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "5p", + "game_datetime_utc": "2025-11-15T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Anaheim Ducks", "home_team_abbrev": "MIN", @@ -12009,8 +11342,7 @@ "canonical_id": "game_nba_2025_20251115_tor_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Toronto Raptors", "home_team_abbrev": "IND", @@ -12027,8 +11359,7 @@ "canonical_id": "game_nba_2025_20251115_okc_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CHA", @@ -12045,8 +11376,7 @@ "canonical_id": "game_nhl_2025_20251115_nyr_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Rangers", "home_team_abbrev": "CBJ", @@ -12063,8 +11393,7 @@ "canonical_id": "game_nhl_2025_20251115_njd_was", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New Jersey Devils", "home_team_abbrev": "WAS", @@ -12081,8 +11410,7 @@ "canonical_id": "game_nhl_2025_20251115_la_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Los Angeles Kings", "home_team_abbrev": "OTT", @@ -12099,8 +11427,7 @@ "canonical_id": "game_nhl_2025_20251115_bos_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Boston Bruins", "home_team_abbrev": "MTL", @@ -12117,8 +11444,7 @@ "canonical_id": "game_nhl_2025_20251115_buf_det", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Buffalo Sabres", "home_team_abbrev": "DET", @@ -12135,8 +11461,7 @@ "canonical_id": "game_nhl_2025_20251115_tor_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "6p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CHI", @@ -12153,8 +11478,7 @@ "canonical_id": "game_nhl_2025_20251115_edm_car", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Edmonton Oilers", "home_team_abbrev": "CAR", @@ -12171,8 +11495,7 @@ "canonical_id": "game_nba_2025_20251115_lal_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIL", @@ -12189,8 +11512,7 @@ "canonical_id": "game_nba_2025_20251115_den_min", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Denver Nuggets", "home_team_abbrev": "MIN", @@ -12207,8 +11529,7 @@ "canonical_id": "game_nhl_2025_20251115_phi_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DAL", @@ -12225,8 +11546,7 @@ "canonical_id": "game_nhl_2025_20251115_vgk_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vegas Golden Knights", "home_team_abbrev": "STL", @@ -12243,8 +11563,7 @@ "canonical_id": "game_nhl_2025_20251115_sj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "San Jose Sharks", "home_team_abbrev": "SEA", @@ -12261,8 +11580,7 @@ "canonical_id": "game_nhl_2025_20251115_wpg_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "8p", + "game_datetime_utc": "2025-11-16T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Winnipeg Jets", "home_team_abbrev": "CGY", @@ -12279,8 +11597,7 @@ "canonical_id": "game_nhl_2025_20251116_nsh_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "9a", + "game_datetime_utc": "2025-11-16T14:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Nashville Predators", "home_team_abbrev": "PIT", @@ -12297,8 +11614,7 @@ "canonical_id": "game_nfl_2026_20251116_was_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "3:30p", + "game_datetime_utc": "2025-11-16T14:30:00Z", "home_team": "Miami Dolphins", "away_team": "Washington Commanders", "home_team_abbrev": "MIA", @@ -12315,8 +11631,7 @@ "canonical_id": "game_nfl_2026_20251116_cin_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Cincinnati Bengals", "home_team_abbrev": "PIT", @@ -12333,8 +11648,7 @@ "canonical_id": "game_nfl_2026_20251116_car_atl", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Carolina Panthers", "home_team_abbrev": "ATL", @@ -12351,8 +11665,7 @@ "canonical_id": "game_nfl_2026_20251116_chi_min", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "12p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Chicago Bears", "home_team_abbrev": "MIN", @@ -12369,8 +11682,7 @@ "canonical_id": "game_nfl_2026_20251116_hou_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "12p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Houston Texans", "home_team_abbrev": "TEN", @@ -12387,8 +11699,7 @@ "canonical_id": "game_nfl_2026_20251116_tb_buf", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Buffalo Bills", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "BUF", @@ -12405,8 +11716,7 @@ "canonical_id": "game_nfl_2026_20251116_lac_jax", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Los Angeles Chargers", "home_team_abbrev": "JAX", @@ -12423,8 +11733,7 @@ "canonical_id": "game_nfl_2026_20251116_gb_nyg", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "New York Giants", "away_team": "Green Bay Packers", "home_team_abbrev": "NYG", @@ -12441,8 +11750,7 @@ "canonical_id": "game_nba_2025_20251116_lac_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "3:30p", + "game_datetime_utc": "2025-11-16T20:30:00Z", "home_team": "Boston Celtics", "away_team": "Los Angeles Clippers", "home_team_abbrev": "BOS", @@ -12459,8 +11767,7 @@ "canonical_id": "game_nba_2025_20251116_sac_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "3p", + "game_datetime_utc": "2025-11-16T21:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Sacramento Kings", "home_team_abbrev": "SAS", @@ -12477,8 +11784,7 @@ "canonical_id": "game_nfl_2026_20251116_sea_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1:05p", + "game_datetime_utc": "2025-11-16T21:05:00Z", "home_team": "Los Angeles Rams", "away_team": "Seattle Seahawks", "home_team_abbrev": "LAR", @@ -12495,8 +11801,7 @@ "canonical_id": "game_nfl_2026_20251116_sf_ari", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "2:05p", + "game_datetime_utc": "2025-11-16T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "San Francisco 49ers", "home_team_abbrev": "ARI", @@ -12513,8 +11818,7 @@ "canonical_id": "game_nfl_2026_20251116_kc_den", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "2:25p", + "game_datetime_utc": "2025-11-16T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Kansas City Chiefs", "home_team_abbrev": "DEN", @@ -12531,8 +11835,7 @@ "canonical_id": "game_nfl_2026_20251116_bal_cle", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "4:25p", + "game_datetime_utc": "2025-11-16T21:25:00Z", "home_team": "Cleveland Browns", "away_team": "Baltimore Ravens", "home_team_abbrev": "CLE", @@ -12549,8 +11852,7 @@ "canonical_id": "game_nhl_2025_20251116_van_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "5p", + "game_datetime_utc": "2025-11-16T22:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Vancouver Canucks", "home_team_abbrev": "TB", @@ -12567,8 +11869,7 @@ "canonical_id": "game_nba_2025_20251116_brk_was", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-16T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Brooklyn Nets", "home_team_abbrev": "WAS", @@ -12585,8 +11886,7 @@ "canonical_id": "game_nhl_2025_20251116_vgk_min", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "5p", + "game_datetime_utc": "2025-11-16T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vegas Golden Knights", "home_team_abbrev": "MIN", @@ -12603,8 +11903,7 @@ "canonical_id": "game_nba_2025_20251116_orl_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Orlando Magic", "home_team_abbrev": "HOU", @@ -12621,8 +11920,7 @@ "canonical_id": "game_nba_2025_20251116_gsw_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Golden State Warriors", "home_team_abbrev": "NOP", @@ -12639,8 +11937,7 @@ "canonical_id": "game_nhl_2025_20251116_det_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "7p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "New York Rangers", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYR", @@ -12657,8 +11954,7 @@ "canonical_id": "game_nba_2025_20251116_por_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6:30p", + "game_datetime_utc": "2025-11-17T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Portland Blazers", "home_team_abbrev": "DAL", @@ -12675,8 +11971,7 @@ "canonical_id": "game_nba_2025_20251116_chi_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Chicago Bulls", "home_team_abbrev": "UTA", @@ -12693,8 +11988,7 @@ "canonical_id": "game_nba_2025_20251116_atl_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "8p", + "game_datetime_utc": "2025-11-17T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHX", @@ -12711,8 +12005,7 @@ "canonical_id": "game_nfl_2026_20251117_det_phi", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "8:20p", + "game_datetime_utc": "2025-11-17T01:20:00Z", "home_team": "Philadelphia Eagles", "away_team": "Detroit Lions", "home_team_abbrev": "PHI", @@ -12729,8 +12022,7 @@ "canonical_id": "game_nhl_2025_20251116_nyi_col", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "7p", + "game_datetime_utc": "2025-11-17T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New York Islanders", "home_team_abbrev": "COL", @@ -12747,8 +12039,7 @@ "canonical_id": "game_nba_2025_20251117_mil_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "6p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CLE", @@ -12765,8 +12056,7 @@ "canonical_id": "game_nba_2025_20251117_lac_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "4p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHI", @@ -12783,8 +12073,7 @@ "canonical_id": "game_nba_2025_20251117_ind_det", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Indiana Pacers", "home_team_abbrev": "DET", @@ -12801,8 +12090,7 @@ "canonical_id": "game_nhl_2025_20251117_car_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BOS", @@ -12819,8 +12107,7 @@ "canonical_id": "game_nhl_2025_20251117_van_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Vancouver Canucks", "home_team_abbrev": "FLA", @@ -12837,8 +12124,7 @@ "canonical_id": "game_nhl_2025_20251117_la_was", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Los Angeles Kings", "home_team_abbrev": "WAS", @@ -12855,8 +12141,7 @@ "canonical_id": "game_nhl_2025_20251117_edm_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Edmonton Oilers", "home_team_abbrev": "BUF", @@ -12873,8 +12158,7 @@ "canonical_id": "game_nba_2025_20251117_cho_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Charlotte Hornets", "home_team_abbrev": "TOR", @@ -12891,8 +12175,7 @@ "canonical_id": "game_nba_2025_20251117_nyk_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Miami Heat", "away_team": "New York Knicks", "home_team_abbrev": "MIA", @@ -12909,8 +12192,7 @@ "canonical_id": "game_nhl_2025_20251117_mtl_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Montreal Canadiens", "home_team_abbrev": "CBJ", @@ -12927,8 +12209,7 @@ "canonical_id": "game_nba_2025_20251117_dal_min", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIN", @@ -12945,8 +12226,7 @@ "canonical_id": "game_nba_2025_20251117_okc_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "NOP", @@ -12963,8 +12243,7 @@ "canonical_id": "game_nfl_2026_20251118_dal_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-17", - "time": "5:15p", + "game_datetime_utc": "2025-11-18T01:15:00Z", "home_team": "Las Vegas Raiders", "away_team": "Dallas Cowboys", "home_team_abbrev": "LV", @@ -12981,8 +12260,7 @@ "canonical_id": "game_nba_2025_20251117_chi_den", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Chicago Bulls", "home_team_abbrev": "DEN", @@ -12999,8 +12277,7 @@ "canonical_id": "game_nhl_2025_20251117_ari_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Utah Club", "home_team_abbrev": "ANA", @@ -13017,8 +12294,7 @@ "canonical_id": "game_nba_2025_20251118_gsw_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Golden State Warriors", "home_team_abbrev": "ORL", @@ -13035,8 +12311,7 @@ "canonical_id": "game_nhl_2025_20251118_sea_det", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Seattle Kraken", "home_team_abbrev": "DET", @@ -13053,8 +12328,7 @@ "canonical_id": "game_nhl_2025_20251118_njd_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New Jersey Devils", "home_team_abbrev": "TB", @@ -13071,8 +12345,7 @@ "canonical_id": "game_nhl_2025_20251118_stl_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "St. Louis Blues", "home_team_abbrev": "TOR", @@ -13089,8 +12362,7 @@ "canonical_id": "game_nba_2025_20251118_bos_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Boston Celtics", "home_team_abbrev": "BKN", @@ -13107,8 +12379,7 @@ "canonical_id": "game_nba_2025_20251118_det_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Detroit Pistons", "home_team_abbrev": "ATL", @@ -13125,8 +12396,7 @@ "canonical_id": "game_nba_2025_20251118_mem_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAS", @@ -13143,8 +12413,7 @@ "canonical_id": "game_nhl_2025_20251118_nyi_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "Dallas Stars", "away_team": "New York Islanders", "home_team_abbrev": "DAL", @@ -13161,8 +12430,7 @@ "canonical_id": "game_nhl_2025_20251118_cbj_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WPG", @@ -13179,8 +12447,7 @@ "canonical_id": "game_nhl_2025_20251118_cgy_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Calgary Flames", "home_team_abbrev": "CHI", @@ -13197,8 +12464,7 @@ "canonical_id": "game_nhl_2025_20251118_nyr_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New York Rangers", "home_team_abbrev": "VGK", @@ -13215,8 +12481,7 @@ "canonical_id": "game_nhl_2025_20251118_ari_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Utah Club", "home_team_abbrev": "SJ", @@ -13233,8 +12498,7 @@ "canonical_id": "game_nba_2025_20251118_uta_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Utah Jazz", "home_team_abbrev": "LAL", @@ -13251,8 +12515,7 @@ "canonical_id": "game_nba_2025_20251118_phx_por", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "8p", + "game_datetime_utc": "2025-11-19T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Phoenix Suns", "home_team_abbrev": "POR", @@ -13269,8 +12532,7 @@ "canonical_id": "game_nba_2025_20251119_cho_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Charlotte Hornets", "home_team_abbrev": "IND", @@ -13287,8 +12549,7 @@ "canonical_id": "game_nba_2025_20251119_hou_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "6p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Houston Rockets", "home_team_abbrev": "CLE", @@ -13305,8 +12566,7 @@ "canonical_id": "game_nba_2025_20251119_tor_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "4p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Toronto Raptors", "home_team_abbrev": "PHI", @@ -13323,8 +12583,7 @@ "canonical_id": "game_nhl_2025_20251119_edm_was", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Edmonton Oilers", "home_team_abbrev": "WAS", @@ -13341,8 +12600,7 @@ "canonical_id": "game_nba_2025_20251119_gsw_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7:30p", + "game_datetime_utc": "2025-11-20T00:30:00Z", "home_team": "Miami Heat", "away_team": "Golden State Warriors", "home_team_abbrev": "MIA", @@ -13359,8 +12617,7 @@ "canonical_id": "game_nhl_2025_20251119_cgy_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7:30p", + "game_datetime_utc": "2025-11-20T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Calgary Flames", "home_team_abbrev": "BUF", @@ -13377,8 +12634,7 @@ "canonical_id": "game_nba_2025_20251119_den_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Denver Nuggets", "home_team_abbrev": "NOP", @@ -13395,8 +12651,7 @@ "canonical_id": "game_nba_2025_20251119_sac_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Sacramento Kings", "home_team_abbrev": "OKC", @@ -13413,8 +12668,7 @@ "canonical_id": "game_nba_2025_20251119_was_min", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Washington Wizards", "home_team_abbrev": "MIN", @@ -13431,8 +12685,7 @@ "canonical_id": "game_nba_2025_20251119_nyk_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "8:30p", + "game_datetime_utc": "2025-11-20T02:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New York Knicks", "home_team_abbrev": "DAL", @@ -13449,8 +12702,7 @@ "canonical_id": "game_nhl_2025_20251119_car_min", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "8:30p", + "game_datetime_utc": "2025-11-20T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Carolina Hurricanes", "home_team_abbrev": "MIN", @@ -13467,8 +12719,7 @@ "canonical_id": "game_nba_2025_20251119_chi_por", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Chicago Bulls", "home_team_abbrev": "POR", @@ -13485,8 +12736,7 @@ "canonical_id": "game_nhl_2025_20251119_bos_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Boston Bruins", "home_team_abbrev": "ANA", @@ -13503,8 +12753,7 @@ "canonical_id": "game_nba_2025_20251120_lac_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Los Angeles Clippers", "home_team_abbrev": "ORL", @@ -13521,8 +12770,7 @@ "canonical_id": "game_nhl_2025_20251120_cbj_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "TOR", @@ -13539,8 +12787,7 @@ "canonical_id": "game_nhl_2025_20251120_stl_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "St. Louis Blues", "home_team_abbrev": "PHI", @@ -13557,8 +12804,7 @@ "canonical_id": "game_nhl_2025_20251120_was_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Washington Capitals", "home_team_abbrev": "MTL", @@ -13575,8 +12821,7 @@ "canonical_id": "game_nhl_2025_20251120_njd_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Florida Panthers", "away_team": "New Jersey Devils", "home_team_abbrev": "FLA", @@ -13593,8 +12838,7 @@ "canonical_id": "game_nhl_2025_20251120_nyi_det", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Islanders", "home_team_abbrev": "DET", @@ -13611,8 +12855,7 @@ "canonical_id": "game_nhl_2025_20251120_edm_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7:30p", + "game_datetime_utc": "2025-11-21T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Edmonton Oilers", "home_team_abbrev": "TB", @@ -13629,8 +12872,7 @@ "canonical_id": "game_nba_2025_20251120_sac_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Sacramento Kings", "home_team_abbrev": "MEM", @@ -13647,8 +12889,7 @@ "canonical_id": "game_nba_2025_20251120_phi_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIL", @@ -13665,8 +12906,7 @@ "canonical_id": "game_nba_2025_20251120_atl_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Atlanta Hawks", "home_team_abbrev": "SAS", @@ -13683,8 +12923,7 @@ "canonical_id": "game_nhl_2025_20251120_sea_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Seattle Kraken", "home_team_abbrev": "CHI", @@ -13701,8 +12940,7 @@ "canonical_id": "game_nfl_2026_20251121_buf_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-20", - "time": "7:15p", + "game_datetime_utc": "2025-11-21T01:15:00Z", "home_team": "Houston Texans", "away_team": "Buffalo Bills", "home_team_abbrev": "HOU", @@ -13719,8 +12957,7 @@ "canonical_id": "game_nhl_2025_20251120_nyr_col", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New York Rangers", "home_team_abbrev": "COL", @@ -13737,8 +12974,7 @@ "canonical_id": "game_nhl_2025_20251120_vgk_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T02:00:00Z", "home_team": "Utah Club", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ARI", @@ -13755,8 +12991,7 @@ "canonical_id": "game_nhl_2025_20251120_la_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Los Angeles Kings", "home_team_abbrev": "SJ", @@ -13773,8 +13008,7 @@ "canonical_id": "game_nhl_2025_20251120_dal_van", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Dallas Stars", "home_team_abbrev": "VAN", @@ -13791,8 +13025,7 @@ "canonical_id": "game_nhl_2025_20251120_ott_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Ottawa Senators", "home_team_abbrev": "ANA", @@ -13809,8 +13042,7 @@ "canonical_id": "game_nba_2025_20251121_ind_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "6p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Indiana Pacers", "home_team_abbrev": "CLE", @@ -13827,8 +13059,7 @@ "canonical_id": "game_nhl_2025_20251121_chi_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Chicago Blackhawks", "home_team_abbrev": "BUF", @@ -13845,8 +13076,7 @@ "canonical_id": "game_nhl_2025_20251121_min_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Minnesota Wild", "home_team_abbrev": "PIT", @@ -13863,8 +13093,7 @@ "canonical_id": "game_nba_2025_20251121_brk_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Brooklyn Nets", "home_team_abbrev": "BOS", @@ -13881,8 +13110,7 @@ "canonical_id": "game_nba_2025_20251121_was_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Washington Wizards", "home_team_abbrev": "TOR", @@ -13899,8 +13127,7 @@ "canonical_id": "game_nba_2025_20251121_mia_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Miami Heat", "home_team_abbrev": "CHI", @@ -13917,8 +13144,7 @@ "canonical_id": "game_nhl_2025_20251121_car_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WPG", @@ -13935,8 +13161,7 @@ "canonical_id": "game_nba_2025_20251121_nop_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DAL", @@ -13953,8 +13178,7 @@ "canonical_id": "game_nba_2025_20251121_min_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "9p", + "game_datetime_utc": "2025-11-22T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "PHX", @@ -13971,8 +13195,7 @@ "canonical_id": "game_nba_2025_20251121_den_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "8:30p", + "game_datetime_utc": "2025-11-22T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Denver Nuggets", "home_team_abbrev": "HOU", @@ -13989,8 +13212,7 @@ "canonical_id": "game_nba_2025_20251121_okc_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "8p", + "game_datetime_utc": "2025-11-22T03:00:00Z", "home_team": "Utah Jazz", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "UTA", @@ -14007,8 +13229,7 @@ "canonical_id": "game_nba_2025_20251121_por_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Portland Blazers", "home_team_abbrev": "GSW", @@ -14025,8 +13246,7 @@ "canonical_id": "game_nhl_2025_20251121_bos_la", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Boston Bruins", "home_team_abbrev": "LA", @@ -14043,8 +13263,7 @@ "canonical_id": "game_nba_2025_20251122_lac_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "1p", + "game_datetime_utc": "2025-11-22T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CHA", @@ -14061,8 +13280,7 @@ "canonical_id": "game_nhl_2025_20251122_cbj_det", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "1p", + "game_datetime_utc": "2025-11-22T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DET", @@ -14079,8 +13297,7 @@ "canonical_id": "game_nhl_2025_20251122_stl_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "3:30p", + "game_datetime_utc": "2025-11-22T20:30:00Z", "home_team": "New York Islanders", "away_team": "St. Louis Blues", "home_team_abbrev": "NYI", @@ -14097,8 +13314,7 @@ "canonical_id": "game_nba_2025_20251122_nyk_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "5p", + "game_datetime_utc": "2025-11-22T22:00:00Z", "home_team": "Orlando Magic", "away_team": "New York Knicks", "home_team_abbrev": "ORL", @@ -14115,8 +13331,7 @@ "canonical_id": "game_nba_2025_20251122_atl_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "6p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Atlanta Hawks", "home_team_abbrev": "NOP", @@ -14133,8 +13348,7 @@ "canonical_id": "game_nhl_2025_20251122_tor_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MTL", @@ -14151,8 +13365,7 @@ "canonical_id": "game_nhl_2025_20251122_tb_was", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WAS", @@ -14169,8 +13382,7 @@ "canonical_id": "game_nhl_2025_20251122_ott_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "4p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "San Jose Sharks", "away_team": "Ottawa Senators", "home_team_abbrev": "SJ", @@ -14187,8 +13399,7 @@ "canonical_id": "game_nhl_2025_20251122_sea_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Seattle Kraken", "home_team_abbrev": "PIT", @@ -14205,8 +13416,7 @@ "canonical_id": "game_nhl_2025_20251122_njd_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New Jersey Devils", "home_team_abbrev": "PHI", @@ -14223,8 +13433,7 @@ "canonical_id": "game_nhl_2025_20251122_edm_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Edmonton Oilers", "home_team_abbrev": "FLA", @@ -14241,8 +13450,7 @@ "canonical_id": "game_nba_2025_20251122_det_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Detroit Pistons", "home_team_abbrev": "MIL", @@ -14259,8 +13467,7 @@ "canonical_id": "game_nba_2025_20251122_was_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Washington Wizards", "home_team_abbrev": "CHI", @@ -14277,8 +13484,7 @@ "canonical_id": "game_nhl_2025_20251122_col_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Colorado Avalanche", "home_team_abbrev": "NSH", @@ -14295,8 +13501,7 @@ "canonical_id": "game_nba_2025_20251122_mem_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7:30p", + "game_datetime_utc": "2025-11-23T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DAL", @@ -14313,8 +13518,7 @@ "canonical_id": "game_nhl_2025_20251122_nyr_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T02:00:00Z", "home_team": "Utah Club", "away_team": "New York Rangers", "home_team_abbrev": "ARI", @@ -14331,8 +13535,7 @@ "canonical_id": "game_nba_2025_20251122_sac_den", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "8p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Sacramento Kings", "home_team_abbrev": "DEN", @@ -14349,8 +13552,7 @@ "canonical_id": "game_nhl_2025_20251122_dal_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "8p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Dallas Stars", "home_team_abbrev": "CGY", @@ -14367,8 +13569,7 @@ "canonical_id": "game_nhl_2025_20251122_vgk_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ANA", @@ -14385,8 +13586,7 @@ "canonical_id": "game_nba_2025_20251123_mia_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "10a", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Miami Heat", "home_team_abbrev": "PHI", @@ -14403,8 +13603,7 @@ "canonical_id": "game_nfl_2026_20251123_sea_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Seattle Seahawks", "home_team_abbrev": "TEN", @@ -14421,8 +13620,7 @@ "canonical_id": "game_nfl_2026_20251123_nyj_bal", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Baltimore Ravens", "away_team": "New York Jets", "home_team_abbrev": "BAL", @@ -14439,8 +13637,7 @@ "canonical_id": "game_nfl_2026_20251123_ind_kc", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Indianapolis Colts", "home_team_abbrev": "KC", @@ -14457,8 +13654,7 @@ "canonical_id": "game_nfl_2026_20251123_pit_chi", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Chicago Bears", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CHI", @@ -14475,8 +13671,7 @@ "canonical_id": "game_nfl_2026_20251123_ne_cin", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "New England Patriots", "home_team_abbrev": "CIN", @@ -14493,8 +13688,7 @@ "canonical_id": "game_nfl_2026_20251123_nyg_det", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Detroit Lions", "away_team": "New York Giants", "home_team_abbrev": "DET", @@ -14511,8 +13705,7 @@ "canonical_id": "game_nfl_2026_20251123_min_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Green Bay Packers", "away_team": "Minnesota Vikings", "home_team_abbrev": "GB", @@ -14529,8 +13722,7 @@ "canonical_id": "game_nhl_2025_20251123_car_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BUF", @@ -14547,8 +13739,7 @@ "canonical_id": "game_nhl_2025_20251123_min_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "3p", + "game_datetime_utc": "2025-11-23T21:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Minnesota Wild", "home_team_abbrev": "WPG", @@ -14565,8 +13756,7 @@ "canonical_id": "game_nfl_2026_20251123_jax_ari", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "2:05p", + "game_datetime_utc": "2025-11-23T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "ARI", @@ -14583,8 +13773,7 @@ "canonical_id": "game_nfl_2026_20251123_cle_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1:05p", + "game_datetime_utc": "2025-11-23T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Cleveland Browns", "home_team_abbrev": "LV", @@ -14601,8 +13790,7 @@ "canonical_id": "game_nfl_2026_20251123_atl_no", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "3:25p", + "game_datetime_utc": "2025-11-23T21:25:00Z", "home_team": "New Orleans Saints", "away_team": "Atlanta Falcons", "home_team_abbrev": "NO", @@ -14619,8 +13807,7 @@ "canonical_id": "game_nfl_2026_20251123_phi_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "3:25p", + "game_datetime_utc": "2025-11-23T21:25:00Z", "home_team": "Dallas Cowboys", "away_team": "Philadelphia Eagles", "home_team_abbrev": "DAL", @@ -14637,8 +13824,7 @@ "canonical_id": "game_nhl_2025_20251123_sea_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-23T22:00:00Z", "home_team": "New York Islanders", "away_team": "Seattle Kraken", "home_team_abbrev": "NYI", @@ -14655,8 +13841,7 @@ "canonical_id": "game_nba_2025_20251123_orl_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Orlando Magic", "home_team_abbrev": "BOS", @@ -14673,8 +13858,7 @@ "canonical_id": "game_nba_2025_20251123_cho_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Charlotte Hornets", "home_team_abbrev": "ATL", @@ -14691,8 +13875,7 @@ "canonical_id": "game_nba_2025_20251123_brk_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Brooklyn Nets", "home_team_abbrev": "TOR", @@ -14709,8 +13892,7 @@ "canonical_id": "game_nba_2025_20251123_lac_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CLE", @@ -14727,8 +13909,7 @@ "canonical_id": "game_nba_2025_20251123_por_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Portland Blazers", "home_team_abbrev": "OKC", @@ -14745,8 +13926,7 @@ "canonical_id": "game_nhl_2025_20251123_col_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Colorado Avalanche", "home_team_abbrev": "CHI", @@ -14763,8 +13943,7 @@ "canonical_id": "game_nba_2025_20251123_lal_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Lakers", "home_team_abbrev": "UTA", @@ -14781,8 +13960,7 @@ "canonical_id": "game_nba_2025_20251123_sas_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "8p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHX", @@ -14799,8 +13977,7 @@ "canonical_id": "game_nhl_2025_20251123_bos_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Boston Bruins", "home_team_abbrev": "SJ", @@ -14817,8 +13994,7 @@ "canonical_id": "game_nfl_2026_20251124_tb_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "5:20p", + "game_datetime_utc": "2025-11-24T01:20:00Z", "home_team": "Los Angeles Rams", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "LAR", @@ -14835,8 +14011,7 @@ "canonical_id": "game_nhl_2025_20251123_cgy_van", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Calgary Flames", "home_team_abbrev": "VAN", @@ -14853,8 +14028,7 @@ "canonical_id": "game_nba_2025_20251124_cle_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "TOR", @@ -14871,8 +14045,7 @@ "canonical_id": "game_nba_2025_20251124_det_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Detroit Pistons", "home_team_abbrev": "IND", @@ -14889,8 +14062,7 @@ "canonical_id": "game_nhl_2025_20251124_cbj_was", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WAS", @@ -14907,8 +14079,7 @@ "canonical_id": "game_nhl_2025_20251124_stl_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "New York Rangers", "away_team": "St. Louis Blues", "home_team_abbrev": "NYR", @@ -14925,8 +14096,7 @@ "canonical_id": "game_nhl_2025_20251124_phi_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Philadelphia Flyers", "home_team_abbrev": "TB", @@ -14943,8 +14113,7 @@ "canonical_id": "game_nhl_2025_20251124_det_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Detroit Red Wings", "home_team_abbrev": "NJ", @@ -14961,8 +14130,7 @@ "canonical_id": "game_nba_2025_20251124_nyk_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7:30p", + "game_datetime_utc": "2025-11-25T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "New York Knicks", "home_team_abbrev": "BKN", @@ -14979,8 +14147,7 @@ "canonical_id": "game_nba_2025_20251124_dal_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7:30p", + "game_datetime_utc": "2025-11-25T00:30:00Z", "home_team": "Miami Heat", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIA", @@ -14997,8 +14164,7 @@ "canonical_id": "game_nba_2025_20251124_chi_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Chicago Bulls", "home_team_abbrev": "NOP", @@ -15015,8 +14181,7 @@ "canonical_id": "game_nba_2025_20251124_den_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -15033,8 +14198,7 @@ "canonical_id": "game_nba_2025_20251124_por_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Portland Blazers", "home_team_abbrev": "MIL", @@ -15051,8 +14215,7 @@ "canonical_id": "game_nhl_2025_20251124_fla_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Florida Panthers", "home_team_abbrev": "NSH", @@ -15069,8 +14232,7 @@ "canonical_id": "game_nfl_2026_20251125_car_sf", "sport": "NFL", "season": "2025", - "date": "2025-11-24", - "time": "5:15p", + "game_datetime_utc": "2025-11-25T01:15:00Z", "home_team": "San Francisco 49ers", "away_team": "Carolina Panthers", "home_team_abbrev": "SF", @@ -15087,8 +14249,7 @@ "canonical_id": "game_nhl_2025_20251124_ott_la", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "6p", + "game_datetime_utc": "2025-11-25T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Ottawa Senators", "home_team_abbrev": "LA", @@ -15105,8 +14266,7 @@ "canonical_id": "game_nhl_2025_20251124_vgk_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T02:00:00Z", "home_team": "Utah Club", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ARI", @@ -15123,8 +14283,7 @@ "canonical_id": "game_nba_2025_20251124_hou_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "9:30p", + "game_datetime_utc": "2025-11-25T02:30:00Z", "home_team": "Phoenix Suns", "away_team": "Houston Rockets", "home_team_abbrev": "PHX", @@ -15141,8 +14300,7 @@ "canonical_id": "game_nba_2025_20251124_uta_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Utah Jazz", "home_team_abbrev": "GSW", @@ -15159,8 +14317,7 @@ "canonical_id": "game_nba_2025_20251124_min_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAC", @@ -15177,8 +14334,7 @@ "canonical_id": "game_nba_2025_20251125_atl_was", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "7p", + "game_datetime_utc": "2025-11-26T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Atlanta Hawks", "home_team_abbrev": "WAS", @@ -15195,8 +14351,7 @@ "canonical_id": "game_nba_2025_20251125_orl_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "5p", + "game_datetime_utc": "2025-11-26T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Orlando Magic", "home_team_abbrev": "PHI", @@ -15213,8 +14368,7 @@ "canonical_id": "game_nhl_2025_20251125_dal_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-25", - "time": "7p", + "game_datetime_utc": "2025-11-26T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Dallas Stars", "home_team_abbrev": "EDM", @@ -15231,8 +14385,7 @@ "canonical_id": "game_nba_2025_20251125_lac_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "8p", + "game_datetime_utc": "2025-11-26T04:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "LAL", @@ -15249,8 +14402,7 @@ "canonical_id": "game_nba_2025_20251126_det_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "5p", + "game_datetime_utc": "2025-11-26T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Detroit Pistons", "home_team_abbrev": "BOS", @@ -15267,8 +14419,7 @@ "canonical_id": "game_nba_2025_20251126_nyk_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New York Knicks", "home_team_abbrev": "CHA", @@ -15285,8 +14436,7 @@ "canonical_id": "game_nhl_2025_20251126_tor_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CBJ", @@ -15303,8 +14453,7 @@ "canonical_id": "game_nhl_2025_20251126_stl_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "St. Louis Blues", "home_team_abbrev": "NJ", @@ -15321,8 +14470,7 @@ "canonical_id": "game_nhl_2025_20251126_bos_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "New York Islanders", "away_team": "Boston Bruins", "home_team_abbrev": "NYI", @@ -15339,8 +14487,7 @@ "canonical_id": "game_nhl_2025_20251126_phi_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "FLA", @@ -15357,8 +14504,7 @@ "canonical_id": "game_nhl_2025_20251126_nyr_car", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Rangers", "home_team_abbrev": "CAR", @@ -15375,8 +14521,7 @@ "canonical_id": "game_nhl_2025_20251126_buf_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Buffalo Sabres", "home_team_abbrev": "PIT", @@ -15393,8 +14538,7 @@ "canonical_id": "game_nhl_2025_20251126_cgy_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Calgary Flames", "home_team_abbrev": "TB", @@ -15411,8 +14555,7 @@ "canonical_id": "game_nhl_2025_20251126_wpg_was", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Winnipeg Jets", "home_team_abbrev": "WAS", @@ -15429,8 +14572,7 @@ "canonical_id": "game_nhl_2025_20251126_nsh_det", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Nashville Predators", "home_team_abbrev": "DET", @@ -15447,8 +14589,7 @@ "canonical_id": "game_nba_2025_20251126_ind_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Indiana Pacers", "home_team_abbrev": "TOR", @@ -15465,8 +14606,7 @@ "canonical_id": "game_nba_2025_20251126_min_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "6:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "OKC", @@ -15483,8 +14623,7 @@ "canonical_id": "game_nba_2025_20251126_mil_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Miami Heat", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIA", @@ -15501,8 +14640,7 @@ "canonical_id": "game_nba_2025_20251126_mem_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NOP", @@ -15519,8 +14657,7 @@ "canonical_id": "game_nhl_2025_20251126_min_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Minnesota Wild", "home_team_abbrev": "CHI", @@ -15537,8 +14674,7 @@ "canonical_id": "game_nhl_2025_20251126_sj_col", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "San Jose Sharks", "home_team_abbrev": "COL", @@ -15555,8 +14691,7 @@ "canonical_id": "game_nhl_2025_20251126_mtl_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T02:30:00Z", "home_team": "Utah Club", "away_team": "Montreal Canadiens", "home_team_abbrev": "ARI", @@ -15573,8 +14708,7 @@ "canonical_id": "game_nba_2025_20251126_sas_por", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Portland Blazers", "away_team": "San Antonio Spurs", "home_team_abbrev": "POR", @@ -15591,8 +14725,7 @@ "canonical_id": "game_nba_2025_20251126_hou_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Houston Rockets", "home_team_abbrev": "GSW", @@ -15609,8 +14742,7 @@ "canonical_id": "game_nba_2025_20251126_phx_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Phoenix Suns", "home_team_abbrev": "SAC", @@ -15627,8 +14759,7 @@ "canonical_id": "game_nhl_2025_20251126_van_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vancouver Canucks", "home_team_abbrev": "ANA", @@ -15645,8 +14776,7 @@ "canonical_id": "game_nhl_2025_20251126_dal_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Dallas Stars", "home_team_abbrev": "SEA", @@ -15663,8 +14793,7 @@ "canonical_id": "game_nhl_2025_20251126_ott_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Ottawa Senators", "home_team_abbrev": "VGK", @@ -15681,8 +14810,7 @@ "canonical_id": "game_nfl_2026_20251127_gb_det", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "1p", + "game_datetime_utc": "2025-11-27T18:00:00Z", "home_team": "Detroit Lions", "away_team": "Green Bay Packers", "home_team_abbrev": "DET", @@ -15699,8 +14827,7 @@ "canonical_id": "game_nfl_2026_20251127_kc_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "3:30p", + "game_datetime_utc": "2025-11-27T21:30:00Z", "home_team": "Dallas Cowboys", "away_team": "Kansas City Chiefs", "home_team_abbrev": "DAL", @@ -15717,8 +14844,7 @@ "canonical_id": "game_nfl_2026_20251128_cin_bal", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "8:20p", + "game_datetime_utc": "2025-11-28T01:20:00Z", "home_team": "Baltimore Ravens", "away_team": "Cincinnati Bengals", "home_team_abbrev": "BAL", @@ -15735,8 +14861,7 @@ "canonical_id": "game_nhl_2025_20251128_tb_det", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "12p", + "game_datetime_utc": "2025-11-28T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DET", @@ -15753,8 +14878,7 @@ "canonical_id": "game_nhl_2025_20251128_nyr_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T18:00:00Z", "home_team": "Boston Bruins", "away_team": "New York Rangers", "home_team_abbrev": "BOS", @@ -15771,8 +14895,7 @@ "canonical_id": "game_nfl_2026_20251128_chi_phi", "sport": "NFL", "season": "2025", - "date": "2025-11-28", - "time": "3p", + "game_datetime_utc": "2025-11-28T20:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Chicago Bears", "home_team_abbrev": "PHI", @@ -15789,8 +14912,7 @@ "canonical_id": "game_nhl_2025_20251128_col_min", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "2:30p", + "game_datetime_utc": "2025-11-28T20:30:00Z", "home_team": "Minnesota Wild", "away_team": "Colorado Avalanche", "home_team_abbrev": "MIN", @@ -15807,8 +14929,7 @@ "canonical_id": "game_nhl_2025_20251128_van_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vancouver Canucks", "home_team_abbrev": "SJ", @@ -15825,8 +14946,7 @@ "canonical_id": "game_nhl_2025_20251128_njd_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New Jersey Devils", "home_team_abbrev": "BUF", @@ -15843,8 +14963,7 @@ "canonical_id": "game_nhl_2025_20251128_cgy_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Calgary Flames", "home_team_abbrev": "FLA", @@ -15861,8 +14980,7 @@ "canonical_id": "game_nhl_2025_20251128_ott_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "3p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "St. Louis Blues", "away_team": "Ottawa Senators", "home_team_abbrev": "STL", @@ -15879,8 +14997,7 @@ "canonical_id": "game_nhl_2025_20251128_mtl_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Montreal Canadiens", "home_team_abbrev": "VGK", @@ -15897,8 +15014,7 @@ "canonical_id": "game_nhl_2025_20251128_phi_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "New York Islanders", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYI", @@ -15915,8 +15031,7 @@ "canonical_id": "game_nhl_2025_20251128_la_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Los Angeles Kings", "home_team_abbrev": "ANA", @@ -15933,8 +15048,7 @@ "canonical_id": "game_nhl_2025_20251128_wpg_car", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "5p", + "game_datetime_utc": "2025-11-28T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Winnipeg Jets", "home_team_abbrev": "CAR", @@ -15951,8 +15065,7 @@ "canonical_id": "game_nhl_2025_20251128_tor_was", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "5p", + "game_datetime_utc": "2025-11-28T22:00:00Z", "home_team": "Washington Capitals", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WAS", @@ -15969,8 +15082,7 @@ "canonical_id": "game_nhl_2025_20251128_pit_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CBJ", @@ -15987,8 +15099,7 @@ "canonical_id": "game_nba_2025_20251128_cle_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ATL", @@ -16005,8 +15116,7 @@ "canonical_id": "game_nba_2025_20251128_mil_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "New York Knicks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "NYK", @@ -16023,8 +15133,7 @@ "canonical_id": "game_nba_2025_20251128_was_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Washington Wizards", "home_team_abbrev": "IND", @@ -16041,8 +15150,7 @@ "canonical_id": "game_nba_2025_20251128_orl_det", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Orlando Magic", "home_team_abbrev": "DET", @@ -16059,8 +15167,7 @@ "canonical_id": "game_nba_2025_20251128_chi_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Charlotte Hornets", "away_team": "Chicago Bulls", "home_team_abbrev": "CHA", @@ -16077,8 +15184,7 @@ "canonical_id": "game_nba_2025_20251128_phi_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BKN", @@ -16095,8 +15201,7 @@ "canonical_id": "game_nhl_2025_20251128_nsh_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Nashville Predators", "home_team_abbrev": "CHI", @@ -16113,8 +15218,7 @@ "canonical_id": "game_nhl_2025_20251128_ari_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Utah Club", "home_team_abbrev": "DAL", @@ -16131,8 +15235,7 @@ "canonical_id": "game_nba_2025_20251128_sas_den", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "San Antonio Spurs", "home_team_abbrev": "DEN", @@ -16149,8 +15252,7 @@ "canonical_id": "game_nba_2025_20251128_sac_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Sacramento Kings", "home_team_abbrev": "UTA", @@ -16167,8 +15269,7 @@ "canonical_id": "game_nba_2025_20251128_phx_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "8:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -16185,8 +15286,7 @@ "canonical_id": "game_nba_2025_20251128_dal_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAL", @@ -16203,8 +15303,7 @@ "canonical_id": "game_nba_2025_20251128_mem_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAC", @@ -16221,8 +15320,7 @@ "canonical_id": "game_nhl_2025_20251129_tb_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "2p", + "game_datetime_utc": "2025-11-29T19:00:00Z", "home_team": "New York Rangers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYR", @@ -16239,8 +15337,7 @@ "canonical_id": "game_nhl_2025_20251129_mtl_col", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "1p", + "game_datetime_utc": "2025-11-29T20:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Montreal Canadiens", "home_team_abbrev": "COL", @@ -16257,8 +15354,7 @@ "canonical_id": "game_nhl_2025_20251129_edm_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "1p", + "game_datetime_utc": "2025-11-29T21:00:00Z", "home_team": "Seattle Kraken", "away_team": "Edmonton Oilers", "home_team_abbrev": "SEA", @@ -16275,8 +15371,7 @@ "canonical_id": "game_nba_2025_20251129_bos_min", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "4p", + "game_datetime_utc": "2025-11-29T22:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Boston Celtics", "home_team_abbrev": "MIN", @@ -16293,8 +15388,7 @@ "canonical_id": "game_nba_2025_20251129_tor_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "6p", + "game_datetime_utc": "2025-11-29T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Toronto Raptors", "home_team_abbrev": "CHA", @@ -16311,8 +15405,7 @@ "canonical_id": "game_nhl_2025_20251129_wpg_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "6p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Winnipeg Jets", "home_team_abbrev": "NSH", @@ -16329,8 +15422,7 @@ "canonical_id": "game_nhl_2025_20251129_tor_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PIT", @@ -16347,8 +15439,7 @@ "canonical_id": "game_nhl_2025_20251129_det_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Detroit Red Wings", "home_team_abbrev": "BOS", @@ -16365,8 +15456,7 @@ "canonical_id": "game_nhl_2025_20251129_phi_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NJ", @@ -16383,8 +15473,7 @@ "canonical_id": "game_nba_2025_20251129_chi_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7:30p", + "game_datetime_utc": "2025-11-30T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Chicago Bulls", "home_team_abbrev": "IND", @@ -16401,8 +15490,7 @@ "canonical_id": "game_nba_2025_20251129_det_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "8p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Miami Heat", "away_team": "Detroit Pistons", "home_team_abbrev": "MIA", @@ -16419,8 +15507,7 @@ "canonical_id": "game_nba_2025_20251129_brk_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIL", @@ -16437,8 +15524,7 @@ "canonical_id": "game_nhl_2025_20251129_buf_min", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Buffalo Sabres", "home_team_abbrev": "MIN", @@ -16455,8 +15541,7 @@ "canonical_id": "game_nhl_2025_20251129_ari_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Utah Club", "home_team_abbrev": "STL", @@ -16473,8 +15558,7 @@ "canonical_id": "game_nba_2025_20251129_nop_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "5:30p", + "game_datetime_utc": "2025-11-30T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "New Orleans Pelicans", "home_team_abbrev": "GSW", @@ -16491,8 +15575,7 @@ "canonical_id": "game_nba_2025_20251129_den_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "9p", + "game_datetime_utc": "2025-11-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Denver Nuggets", "home_team_abbrev": "PHX", @@ -16509,8 +15592,7 @@ "canonical_id": "game_nba_2025_20251129_dal_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAC", @@ -16527,8 +15609,7 @@ "canonical_id": "game_nhl_2025_20251129_van_la", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vancouver Canucks", "home_team_abbrev": "LA", @@ -16545,8 +15626,7 @@ "canonical_id": "game_nhl_2025_20251129_sj_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "San Jose Sharks", "home_team_abbrev": "VGK", @@ -16563,8 +15643,7 @@ "canonical_id": "game_nfl_2026_20251130_hou_ind", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Houston Texans", "home_team_abbrev": "IND", @@ -16581,8 +15660,7 @@ "canonical_id": "game_nfl_2026_20251130_jax_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "12p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "TEN", @@ -16599,8 +15677,7 @@ "canonical_id": "game_nfl_2026_20251130_sf_cle", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "San Francisco 49ers", "home_team_abbrev": "CLE", @@ -16617,8 +15694,7 @@ "canonical_id": "game_nfl_2026_20251130_no_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "New Orleans Saints", "home_team_abbrev": "MIA", @@ -16635,8 +15711,7 @@ "canonical_id": "game_nfl_2026_20251130_atl_nyj", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "New York Jets", "away_team": "Atlanta Falcons", "home_team_abbrev": "NYJ", @@ -16653,8 +15728,7 @@ "canonical_id": "game_nfl_2026_20251130_ari_tb", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Arizona Cardinals", "home_team_abbrev": "TB", @@ -16671,8 +15745,7 @@ "canonical_id": "game_nfl_2026_20251130_lar_car", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Los Angeles Rams", "home_team_abbrev": "CAR", @@ -16689,8 +15762,7 @@ "canonical_id": "game_nhl_2025_20251130_was_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "New York Islanders", "away_team": "Washington Capitals", "home_team_abbrev": "NYI", @@ -16707,8 +15779,7 @@ "canonical_id": "game_nba_2025_20251130_hou_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T20:00:00Z", "home_team": "Utah Jazz", "away_team": "Houston Rockets", "home_team_abbrev": "UTA", @@ -16725,8 +15796,7 @@ "canonical_id": "game_nhl_2025_20251130_ana_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "2:30p", + "game_datetime_utc": "2025-11-30T20:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Anaheim Ducks", "home_team_abbrev": "CHI", @@ -16743,8 +15813,7 @@ "canonical_id": "game_nfl_2026_20251130_min_sea", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1:05p", + "game_datetime_utc": "2025-11-30T21:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Minnesota Vikings", "home_team_abbrev": "SEA", @@ -16761,8 +15830,7 @@ "canonical_id": "game_nfl_2026_20251130_buf_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "4:25p", + "game_datetime_utc": "2025-11-30T21:25:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Buffalo Bills", "home_team_abbrev": "PIT", @@ -16779,8 +15847,7 @@ "canonical_id": "game_nfl_2026_20251130_lv_lac", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1:25p", + "game_datetime_utc": "2025-11-30T21:25:00Z", "home_team": "Los Angeles Chargers", "away_team": "Las Vegas Raiders", "home_team_abbrev": "LAC", @@ -16797,8 +15864,7 @@ "canonical_id": "game_nhl_2025_20251130_cgy_car", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Calgary Flames", "home_team_abbrev": "CAR", @@ -16815,8 +15881,7 @@ "canonical_id": "game_nba_2025_20251130_tor_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "New York Knicks", "away_team": "Toronto Raptors", "home_team_abbrev": "NYK", @@ -16833,8 +15898,7 @@ "canonical_id": "game_nba_2025_20251130_atl_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "3p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHI", @@ -16851,8 +15915,7 @@ "canonical_id": "game_nba_2025_20251130_okc_por", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "3p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Portland Blazers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "POR", @@ -16869,8 +15932,7 @@ "canonical_id": "game_nba_2025_20251130_bos_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Boston Celtics", "home_team_abbrev": "CLE", @@ -16887,8 +15949,7 @@ "canonical_id": "game_nhl_2025_20251130_ott_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Ottawa Senators", "home_team_abbrev": "DAL", @@ -16905,8 +15966,7 @@ "canonical_id": "game_nba_2025_20251130_sas_min", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-12-01T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIN", @@ -16923,8 +15983,7 @@ "canonical_id": "game_nfl_2026_20251201_den_was", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "8:20p", + "game_datetime_utc": "2025-12-01T01:20:00Z", "home_team": "Washington Commanders", "away_team": "Denver Broncos", "home_team_abbrev": "WAS", @@ -16941,8 +16000,7 @@ "canonical_id": "game_nba_2025_20251130_mem_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-12-01T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAC", @@ -16959,8 +16017,7 @@ "canonical_id": "game_nba_2025_20251130_nop_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6:30p", + "game_datetime_utc": "2025-12-01T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAL", @@ -16977,8 +16034,7 @@ "canonical_id": "game_nba_2025_20251201_mil_was", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Milwaukee Bucks", "home_team_abbrev": "WAS", @@ -16995,8 +16051,7 @@ "canonical_id": "game_nba_2025_20251201_atl_det", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -17013,8 +16068,7 @@ "canonical_id": "game_nba_2025_20251201_cle_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "IND", @@ -17031,8 +16085,7 @@ "canonical_id": "game_nhl_2025_20251201_cbj_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NJ", @@ -17049,8 +16102,7 @@ "canonical_id": "game_nhl_2025_20251201_pit_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "PHI", @@ -17067,8 +16119,7 @@ "canonical_id": "game_nba_2025_20251201_lac_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Miami Heat", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIA", @@ -17085,8 +16136,7 @@ "canonical_id": "game_nba_2025_20251201_chi_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Chicago Bulls", "home_team_abbrev": "ORL", @@ -17103,8 +16153,7 @@ "canonical_id": "game_nba_2025_20251201_cho_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Charlotte Hornets", "home_team_abbrev": "BKN", @@ -17121,8 +16170,7 @@ "canonical_id": "game_nhl_2025_20251201_wpg_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Winnipeg Jets", "home_team_abbrev": "BUF", @@ -17139,8 +16187,7 @@ "canonical_id": "game_nhl_2025_20251201_ana_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Anaheim Ducks", "home_team_abbrev": "STL", @@ -17157,8 +16204,7 @@ "canonical_id": "game_nfl_2026_20251202_nyg_ne", "sport": "NFL", "season": "2025", - "date": "2025-12-01", - "time": "8:15p", + "game_datetime_utc": "2025-12-02T01:15:00Z", "home_team": "New England Patriots", "away_team": "New York Giants", "home_team_abbrev": "NE", @@ -17175,8 +16221,7 @@ "canonical_id": "game_nba_2025_20251201_hou_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Houston Rockets", "home_team_abbrev": "UTA", @@ -17193,8 +16238,7 @@ "canonical_id": "game_nba_2025_20251201_dal_den", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Dallas Mavericks", "home_team_abbrev": "DEN", @@ -17211,8 +16255,7 @@ "canonical_id": "game_nba_2025_20251201_phx_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAL", @@ -17229,8 +16272,7 @@ "canonical_id": "game_nhl_2025_20251201_ari_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Utah Club", "home_team_abbrev": "SJ", @@ -17247,8 +16289,7 @@ "canonical_id": "game_nba_2025_20251202_was_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "4p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Washington Wizards", "home_team_abbrev": "PHI", @@ -17265,8 +16306,7 @@ "canonical_id": "game_nhl_2025_20251202_tb_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "New York Islanders", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYI", @@ -17283,8 +16323,7 @@ "canonical_id": "game_nhl_2025_20251202_dal_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "New York Rangers", "away_team": "Dallas Stars", "home_team_abbrev": "NYR", @@ -17301,8 +16340,7 @@ "canonical_id": "game_nhl_2025_20251202_ott_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Ottawa Senators", "home_team_abbrev": "MTL", @@ -17319,8 +16357,7 @@ "canonical_id": "game_nhl_2025_20251202_bos_det", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Boston Bruins", "home_team_abbrev": "DET", @@ -17337,8 +16374,7 @@ "canonical_id": "game_nba_2025_20251202_por_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Portland Blazers", "home_team_abbrev": "TOR", @@ -17355,8 +16391,7 @@ "canonical_id": "game_nhl_2025_20251202_tor_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T00:30:00Z", "home_team": "Florida Panthers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "FLA", @@ -17373,8 +16408,7 @@ "canonical_id": "game_nba_2025_20251202_mem_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAS", @@ -17391,8 +16425,7 @@ "canonical_id": "game_nba_2025_20251202_nyk_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "8p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "Boston Celtics", "away_team": "New York Knicks", "home_team_abbrev": "BOS", @@ -17409,8 +16442,7 @@ "canonical_id": "game_nba_2025_20251202_min_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NOP", @@ -17427,8 +16459,7 @@ "canonical_id": "game_nhl_2025_20251202_cgy_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Calgary Flames", "home_team_abbrev": "NSH", @@ -17445,8 +16476,7 @@ "canonical_id": "game_nhl_2025_20251202_van_col", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Vancouver Canucks", "home_team_abbrev": "COL", @@ -17463,8 +16493,7 @@ "canonical_id": "game_nhl_2025_20251202_min_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Minnesota Wild", "home_team_abbrev": "EDM", @@ -17481,8 +16510,7 @@ "canonical_id": "game_nhl_2025_20251202_chi_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VGK", @@ -17499,8 +16527,7 @@ "canonical_id": "game_nhl_2025_20251202_was_la", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Washington Capitals", "home_team_abbrev": "LA", @@ -17517,8 +16544,7 @@ "canonical_id": "game_nba_2025_20251202_okc_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "8p", + "game_datetime_utc": "2025-12-03T04:00:00Z", "home_team": "Golden State Warriors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "GSW", @@ -17535,8 +16561,7 @@ "canonical_id": "game_nba_2025_20251203_por_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "6p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Portland Blazers", "home_team_abbrev": "CLE", @@ -17553,8 +16578,7 @@ "canonical_id": "game_nba_2025_20251203_sas_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Orlando Magic", "away_team": "San Antonio Spurs", "home_team_abbrev": "ORL", @@ -17571,8 +16595,7 @@ "canonical_id": "game_nba_2025_20251203_den_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Denver Nuggets", "home_team_abbrev": "IND", @@ -17589,8 +16612,7 @@ "canonical_id": "game_nhl_2025_20251203_dal_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Dallas Stars", "home_team_abbrev": "NJ", @@ -17607,8 +16629,7 @@ "canonical_id": "game_nba_2025_20251203_cho_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Charlotte Hornets", "home_team_abbrev": "NYK", @@ -17625,8 +16646,7 @@ "canonical_id": "game_nba_2025_20251203_lac_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "ATL", @@ -17643,8 +16663,7 @@ "canonical_id": "game_nhl_2025_20251203_wpg_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Winnipeg Jets", "home_team_abbrev": "MTL", @@ -17661,8 +16680,7 @@ "canonical_id": "game_nhl_2025_20251203_buf_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Buffalo Sabres", "home_team_abbrev": "PHI", @@ -17679,8 +16697,7 @@ "canonical_id": "game_nba_2025_20251203_sac_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Sacramento Kings", "home_team_abbrev": "HOU", @@ -17697,8 +16714,7 @@ "canonical_id": "game_nba_2025_20251203_brk_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHI", @@ -17715,8 +16731,7 @@ "canonical_id": "game_nba_2025_20251203_det_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Detroit Pistons", "home_team_abbrev": "MIL", @@ -17733,8 +16748,7 @@ "canonical_id": "game_nba_2025_20251203_mia_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Miami Heat", "home_team_abbrev": "DAL", @@ -17751,8 +16765,7 @@ "canonical_id": "game_nhl_2025_20251203_ari_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Utah Club", "home_team_abbrev": "ANA", @@ -17769,8 +16782,7 @@ "canonical_id": "game_nhl_2025_20251203_was_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Washington Capitals", "home_team_abbrev": "SJ", @@ -17787,8 +16799,7 @@ "canonical_id": "game_nba_2025_20251204_bos_was", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Boston Celtics", "home_team_abbrev": "WAS", @@ -17805,8 +16816,7 @@ "canonical_id": "game_nba_2025_20251204_gsw_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "4p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Golden State Warriors", "home_team_abbrev": "PHI", @@ -17823,8 +16833,7 @@ "canonical_id": "game_nhl_2025_20251204_nsh_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Nashville Predators", "home_team_abbrev": "FLA", @@ -17841,8 +16850,7 @@ "canonical_id": "game_nhl_2025_20251204_tor_car", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CAR", @@ -17859,8 +16867,7 @@ "canonical_id": "game_nhl_2025_20251204_stl_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Boston Bruins", "away_team": "St. Louis Blues", "home_team_abbrev": "BOS", @@ -17877,8 +16884,7 @@ "canonical_id": "game_nhl_2025_20251204_col_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "New York Islanders", "away_team": "Colorado Avalanche", "home_team_abbrev": "NYI", @@ -17895,8 +16901,7 @@ "canonical_id": "game_nhl_2025_20251204_pit_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TB", @@ -17913,8 +16918,7 @@ "canonical_id": "game_nhl_2025_20251204_nyr_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Rangers", "home_team_abbrev": "OTT", @@ -17931,8 +16935,7 @@ "canonical_id": "game_nba_2025_20251204_lal_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "TOR", @@ -17949,8 +16952,7 @@ "canonical_id": "game_nba_2025_20251204_uta_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Utah Jazz", "home_team_abbrev": "BKN", @@ -17967,8 +16969,7 @@ "canonical_id": "game_nhl_2025_20251204_det_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Detroit Red Wings", "home_team_abbrev": "CBJ", @@ -17985,8 +16986,7 @@ "canonical_id": "game_nba_2025_20251204_min_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NOP", @@ -18003,8 +17003,7 @@ "canonical_id": "game_nfl_2026_20251205_dal_det", "sport": "NFL", "season": "2025", - "date": "2025-12-04", - "time": "8:15p", + "game_datetime_utc": "2025-12-05T01:15:00Z", "home_team": "Detroit Lions", "away_team": "Dallas Cowboys", "home_team_abbrev": "DET", @@ -18021,8 +17020,7 @@ "canonical_id": "game_nhl_2025_20251204_min_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Minnesota Wild", "home_team_abbrev": "CGY", @@ -18039,8 +17037,7 @@ "canonical_id": "game_nhl_2025_20251204_sea_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Seattle Kraken", "home_team_abbrev": "EDM", @@ -18057,8 +17054,7 @@ "canonical_id": "game_nhl_2025_20251204_chi_la", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "LA", @@ -18075,8 +17071,7 @@ "canonical_id": "game_nba_2025_20251205_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -18093,8 +17088,7 @@ "canonical_id": "game_nba_2025_20251205_lal_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Los Angeles Lakers", "home_team_abbrev": "BOS", @@ -18111,8 +17105,7 @@ "canonical_id": "game_nhl_2025_20251205_buf_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "6p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Buffalo Sabres", "home_team_abbrev": "WPG", @@ -18129,8 +17122,7 @@ "canonical_id": "game_nhl_2025_20251205_vgk_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NJ", @@ -18147,8 +17139,7 @@ "canonical_id": "game_nba_2025_20251205_uta_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "New York Knicks", "away_team": "Utah Jazz", "home_team_abbrev": "NYK", @@ -18165,8 +17156,7 @@ "canonical_id": "game_nba_2025_20251205_cho_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Charlotte Hornets", "home_team_abbrev": "TOR", @@ -18183,8 +17173,7 @@ "canonical_id": "game_nba_2025_20251205_den_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Denver Nuggets", "home_team_abbrev": "ATL", @@ -18201,8 +17190,7 @@ "canonical_id": "game_nba_2025_20251205_por_det", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Portland Blazers", "home_team_abbrev": "DET", @@ -18219,8 +17207,7 @@ "canonical_id": "game_nba_2025_20251205_sas_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "6:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "San Antonio Spurs", "home_team_abbrev": "CLE", @@ -18237,8 +17224,7 @@ "canonical_id": "game_nba_2025_20251205_lac_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MEM", @@ -18255,8 +17241,7 @@ "canonical_id": "game_nba_2025_20251205_ind_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Indiana Pacers", "home_team_abbrev": "CHI", @@ -18273,8 +17258,7 @@ "canonical_id": "game_nba_2025_20251205_phx_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Phoenix Suns", "home_team_abbrev": "HOU", @@ -18291,8 +17275,7 @@ "canonical_id": "game_nba_2025_20251205_phi_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIL", @@ -18309,8 +17292,7 @@ "canonical_id": "game_nhl_2025_20251205_sj_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Dallas Stars", "away_team": "San Jose Sharks", "home_team_abbrev": "DAL", @@ -18327,8 +17309,7 @@ "canonical_id": "game_nhl_2025_20251205_ari_van", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "6p", + "game_datetime_utc": "2025-12-06T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Utah Club", "home_team_abbrev": "VAN", @@ -18345,8 +17326,7 @@ "canonical_id": "game_nba_2025_20251205_dal_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "8:30p", + "game_datetime_utc": "2025-12-06T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Dallas Mavericks", "home_team_abbrev": "OKC", @@ -18363,8 +17343,7 @@ "canonical_id": "game_nhl_2025_20251205_was_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Washington Capitals", "home_team_abbrev": "ANA", @@ -18381,8 +17360,7 @@ "canonical_id": "game_nhl_2025_20251206_col_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "12:30p", + "game_datetime_utc": "2025-12-06T17:30:00Z", "home_team": "New York Rangers", "away_team": "Colorado Avalanche", "home_team_abbrev": "NYR", @@ -18399,8 +17377,7 @@ "canonical_id": "game_nhl_2025_20251206_cbj_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "3:30p", + "game_datetime_utc": "2025-12-06T20:30:00Z", "home_team": "Florida Panthers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "FLA", @@ -18417,8 +17394,7 @@ "canonical_id": "game_nba_2025_20251206_nop_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "5p", + "game_datetime_utc": "2025-12-06T22:00:00Z", "home_team": "Brooklyn Nets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "BKN", @@ -18435,8 +17411,7 @@ "canonical_id": "game_nba_2025_20251206_atl_was", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Atlanta Hawks", "home_team_abbrev": "WAS", @@ -18453,8 +17428,7 @@ "canonical_id": "game_nhl_2025_20251206_njd_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Boston Bruins", "away_team": "New Jersey Devils", "home_team_abbrev": "BOS", @@ -18471,8 +17445,7 @@ "canonical_id": "game_nhl_2025_20251206_stl_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "St. Louis Blues", "home_team_abbrev": "OTT", @@ -18489,8 +17462,7 @@ "canonical_id": "game_nhl_2025_20251206_nsh_car", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Nashville Predators", "home_team_abbrev": "CAR", @@ -18507,8 +17479,7 @@ "canonical_id": "game_nhl_2025_20251206_nyi_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Islanders", "home_team_abbrev": "TB", @@ -18525,8 +17496,7 @@ "canonical_id": "game_nhl_2025_20251206_ari_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "5p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Utah Club", "home_team_abbrev": "CGY", @@ -18543,8 +17513,7 @@ "canonical_id": "game_nhl_2025_20251206_mtl_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Montreal Canadiens", "home_team_abbrev": "TOR", @@ -18561,8 +17530,7 @@ "canonical_id": "game_nba_2025_20251206_mil_det", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7:30p", + "game_datetime_utc": "2025-12-07T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DET", @@ -18579,8 +17547,7 @@ "canonical_id": "game_nba_2025_20251206_gsw_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "6:30p", + "game_datetime_utc": "2025-12-07T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Golden State Warriors", "home_team_abbrev": "CLE", @@ -18597,8 +17564,7 @@ "canonical_id": "game_nba_2025_20251206_sac_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "8p", + "game_datetime_utc": "2025-12-07T01:00:00Z", "home_team": "Miami Heat", "away_team": "Sacramento Kings", "home_team_abbrev": "MIA", @@ -18615,8 +17581,7 @@ "canonical_id": "game_nba_2025_20251206_lac_min", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIN", @@ -18633,8 +17598,7 @@ "canonical_id": "game_nba_2025_20251206_hou_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7:30p", + "game_datetime_utc": "2025-12-07T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Houston Rockets", "home_team_abbrev": "DAL", @@ -18651,8 +17615,7 @@ "canonical_id": "game_nhl_2025_20251206_chi_la", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "6p", + "game_datetime_utc": "2025-12-07T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "LA", @@ -18669,8 +17632,7 @@ "canonical_id": "game_nhl_2025_20251206_wpg_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "8p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Winnipeg Jets", "home_team_abbrev": "EDM", @@ -18687,8 +17649,7 @@ "canonical_id": "game_nhl_2025_20251206_min_van", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Minnesota Wild", "home_team_abbrev": "VAN", @@ -18705,8 +17666,7 @@ "canonical_id": "game_nhl_2025_20251206_det_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Detroit Red Wings", "home_team_abbrev": "SEA", @@ -18723,8 +17683,7 @@ "canonical_id": "game_nba_2025_20251207_orl_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "12p", + "game_datetime_utc": "2025-12-07T17:00:00Z", "home_team": "New York Knicks", "away_team": "Orlando Magic", "home_team_abbrev": "NYK", @@ -18741,8 +17700,7 @@ "canonical_id": "game_nfl_2026_20251207_ten_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Tennessee Titans", "home_team_abbrev": "CLE", @@ -18759,8 +17717,7 @@ "canonical_id": "game_nfl_2026_20251207_mia_nyj", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "New York Jets", "away_team": "Miami Dolphins", "home_team_abbrev": "NYJ", @@ -18777,8 +17734,7 @@ "canonical_id": "game_nfl_2026_20251207_no_tb", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New Orleans Saints", "home_team_abbrev": "TB", @@ -18795,8 +17751,7 @@ "canonical_id": "game_nfl_2026_20251207_was_min", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "12p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Washington Commanders", "home_team_abbrev": "MIN", @@ -18813,8 +17768,7 @@ "canonical_id": "game_nfl_2026_20251207_pit_bal", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "BAL", @@ -18831,8 +17785,7 @@ "canonical_id": "game_nfl_2026_20251207_ind_jax", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Indianapolis Colts", "home_team_abbrev": "JAX", @@ -18849,8 +17802,7 @@ "canonical_id": "game_nfl_2026_20251207_cin_buf", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Buffalo Bills", "away_team": "Cincinnati Bengals", "home_team_abbrev": "BUF", @@ -18867,8 +17819,7 @@ "canonical_id": "game_nfl_2026_20251207_sea_atl", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Seattle Seahawks", "home_team_abbrev": "ATL", @@ -18885,8 +17836,7 @@ "canonical_id": "game_nhl_2025_20251207_col_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Colorado Avalanche", "home_team_abbrev": "PHI", @@ -18903,8 +17853,7 @@ "canonical_id": "game_nba_2025_20251207_bos_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "3:30p", + "game_datetime_utc": "2025-12-07T20:30:00Z", "home_team": "Toronto Raptors", "away_team": "Boston Celtics", "home_team_abbrev": "TOR", @@ -18921,8 +17870,7 @@ "canonical_id": "game_nfl_2026_20251207_den_lv", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1:05p", + "game_datetime_utc": "2025-12-07T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Denver Broncos", "home_team_abbrev": "LV", @@ -18939,8 +17887,7 @@ "canonical_id": "game_nfl_2026_20251207_chi_gb", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "3:25p", + "game_datetime_utc": "2025-12-07T21:25:00Z", "home_team": "Green Bay Packers", "away_team": "Chicago Bears", "home_team_abbrev": "GB", @@ -18957,8 +17904,7 @@ "canonical_id": "game_nfl_2026_20251207_lar_ari", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "2:25p", + "game_datetime_utc": "2025-12-07T21:25:00Z", "home_team": "Arizona Cardinals", "away_team": "Los Angeles Rams", "home_team_abbrev": "ARI", @@ -18975,8 +17921,7 @@ "canonical_id": "game_nhl_2025_20251207_sj_car", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "San Jose Sharks", "home_team_abbrev": "CAR", @@ -18993,8 +17938,7 @@ "canonical_id": "game_nhl_2025_20251207_nyi_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T22:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Islanders", "home_team_abbrev": "FLA", @@ -19011,8 +17955,7 @@ "canonical_id": "game_nba_2025_20251207_den_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Denver Nuggets", "home_team_abbrev": "CHA", @@ -19029,8 +17972,7 @@ "canonical_id": "game_nba_2025_20251207_por_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Portland Blazers", "home_team_abbrev": "MEM", @@ -19047,8 +17989,7 @@ "canonical_id": "game_nhl_2025_20251207_pit_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "DAL", @@ -19065,8 +18006,7 @@ "canonical_id": "game_nba_2025_20251207_gsw_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Golden State Warriors", "home_team_abbrev": "CHI", @@ -19083,8 +18023,7 @@ "canonical_id": "game_nhl_2025_20251207_cbj_was", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WAS", @@ -19101,8 +18040,7 @@ "canonical_id": "game_nhl_2025_20251207_vgk_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "New York Rangers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NYR", @@ -19119,8 +18057,7 @@ "canonical_id": "game_nhl_2025_20251207_stl_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "St. Louis Blues", "home_team_abbrev": "MTL", @@ -19137,8 +18074,7 @@ "canonical_id": "game_nba_2025_20251207_lal_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "4:30p", + "game_datetime_utc": "2025-12-08T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHI", @@ -19155,8 +18091,7 @@ "canonical_id": "game_nba_2025_20251207_okc_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-08T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "UTA", @@ -19173,8 +18108,7 @@ "canonical_id": "game_nhl_2025_20251207_chi_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-08T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ANA", @@ -19191,8 +18125,7 @@ "canonical_id": "game_nfl_2026_20251208_hou_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "7:20p", + "game_datetime_utc": "2025-12-08T01:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Houston Texans", "home_team_abbrev": "KC", @@ -19209,8 +18142,7 @@ "canonical_id": "game_nba_2025_20251208_sac_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Sacramento Kings", "home_team_abbrev": "IND", @@ -19227,8 +18159,7 @@ "canonical_id": "game_nba_2025_20251208_phx_min", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "6:30p", + "game_datetime_utc": "2025-12-09T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Phoenix Suns", "home_team_abbrev": "MIN", @@ -19245,8 +18176,7 @@ "canonical_id": "game_nhl_2025_20251208_tb_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7:30p", + "game_datetime_utc": "2025-12-09T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "TOR", @@ -19263,8 +18193,7 @@ "canonical_id": "game_nba_2025_20251208_sas_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "San Antonio Spurs", "home_team_abbrev": "NOP", @@ -19281,8 +18210,7 @@ "canonical_id": "game_nfl_2026_20251209_phi_lac", "sport": "NFL", "season": "2025", - "date": "2025-12-08", - "time": "5:15p", + "game_datetime_utc": "2025-12-09T01:15:00Z", "home_team": "Los Angeles Chargers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "LAC", @@ -19299,8 +18227,7 @@ "canonical_id": "game_nhl_2025_20251208_la_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T02:00:00Z", "home_team": "Utah Club", "away_team": "Los Angeles Kings", "home_team_abbrev": "ARI", @@ -19317,8 +18244,7 @@ "canonical_id": "game_nhl_2025_20251208_buf_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Buffalo Sabres", "home_team_abbrev": "CGY", @@ -19335,8 +18261,7 @@ "canonical_id": "game_nhl_2025_20251208_min_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Minnesota Wild", "home_team_abbrev": "SEA", @@ -19353,8 +18278,7 @@ "canonical_id": "game_nhl_2025_20251208_det_van", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Detroit Red Wings", "home_team_abbrev": "VAN", @@ -19371,8 +18295,7 @@ "canonical_id": "game_nba_2025_20251209_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-09", - "time": "6p", + "game_datetime_utc": "2025-12-09T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -19389,8 +18312,7 @@ "canonical_id": "game_nhl_2025_20251209_njd_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New Jersey Devils", "home_team_abbrev": "OTT", @@ -19407,8 +18329,7 @@ "canonical_id": "game_nhl_2025_20251209_ana_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Anaheim Ducks", "home_team_abbrev": "PIT", @@ -19425,8 +18346,7 @@ "canonical_id": "game_nhl_2025_20251209_sj_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "San Jose Sharks", "home_team_abbrev": "PHI", @@ -19443,8 +18363,7 @@ "canonical_id": "game_nhl_2025_20251209_vgk_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "New York Islanders", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NYI", @@ -19461,8 +18380,7 @@ "canonical_id": "game_nhl_2025_20251209_tb_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MTL", @@ -19479,8 +18397,7 @@ "canonical_id": "game_nhl_2025_20251209_cbj_car", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7:30p", + "game_datetime_utc": "2025-12-10T00:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CAR", @@ -19497,8 +18414,7 @@ "canonical_id": "game_nhl_2025_20251209_dal_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Dallas Stars", "home_team_abbrev": "WPG", @@ -19515,8 +18431,7 @@ "canonical_id": "game_nhl_2025_20251209_bos_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Boston Bruins", "home_team_abbrev": "STL", @@ -19533,8 +18448,7 @@ "canonical_id": "game_nba_2025_20251209_nyk_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-09", - "time": "8:30p", + "game_datetime_utc": "2025-12-10T01:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -19551,8 +18465,7 @@ "canonical_id": "game_nhl_2025_20251209_buf_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Buffalo Sabres", "home_team_abbrev": "EDM", @@ -19569,8 +18482,7 @@ "canonical_id": "game_nhl_2025_20251209_col_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "8:30p", + "game_datetime_utc": "2025-12-10T02:30:00Z", "home_team": "Nashville Predators", "away_team": "Colorado Avalanche", "home_team_abbrev": "NSH", @@ -19587,8 +18499,7 @@ "canonical_id": "game_nba_2025_20251210_phx_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -19605,8 +18516,7 @@ "canonical_id": "game_nhl_2025_20251210_nyr_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New York Rangers", "home_team_abbrev": "CHI", @@ -19623,8 +18533,7 @@ "canonical_id": "game_nhl_2025_20251210_det_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T01:30:00Z", "home_team": "Calgary Flames", "away_team": "Detroit Red Wings", "home_team_abbrev": "CGY", @@ -19641,8 +18550,7 @@ "canonical_id": "game_nhl_2025_20251210_fla_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T02:00:00Z", "home_team": "Utah Club", "away_team": "Florida Panthers", "home_team_abbrev": "ARI", @@ -19659,8 +18567,7 @@ "canonical_id": "game_nba_2025_20251210_sas_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -19677,8 +18584,7 @@ "canonical_id": "game_nhl_2025_20251210_la_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Los Angeles Kings", "home_team_abbrev": "SEA", @@ -19695,8 +18601,7 @@ "canonical_id": "game_nhl_2025_20251211_ana_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "New York Islanders", "away_team": "Anaheim Ducks", "home_team_abbrev": "NYI", @@ -19713,8 +18618,7 @@ "canonical_id": "game_nhl_2025_20251211_tb_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NJ", @@ -19731,8 +18635,7 @@ "canonical_id": "game_nhl_2025_20251211_sj_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "San Jose Sharks", "home_team_abbrev": "TOR", @@ -19749,8 +18652,7 @@ "canonical_id": "game_nhl_2025_20251211_ott_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Ottawa Senators", "home_team_abbrev": "CBJ", @@ -19767,8 +18669,7 @@ "canonical_id": "game_nhl_2025_20251211_car_was", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WAS", @@ -19785,8 +18686,7 @@ "canonical_id": "game_nhl_2025_20251211_vgk_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "PHI", @@ -19803,8 +18703,7 @@ "canonical_id": "game_nhl_2025_20251211_mtl_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7:30p", + "game_datetime_utc": "2025-12-12T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Montreal Canadiens", "home_team_abbrev": "PIT", @@ -19821,8 +18720,7 @@ "canonical_id": "game_nba_2025_20251211_lac_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -19839,8 +18737,7 @@ "canonical_id": "game_nba_2025_20251211_bos_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -19857,8 +18754,7 @@ "canonical_id": "game_nba_2025_20251211_por_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -19875,8 +18771,7 @@ "canonical_id": "game_nhl_2025_20251211_bos_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Boston Bruins", "home_team_abbrev": "WPG", @@ -19893,8 +18788,7 @@ "canonical_id": "game_nhl_2025_20251211_dal_min", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Dallas Stars", "home_team_abbrev": "MIN", @@ -19911,8 +18805,7 @@ "canonical_id": "game_nhl_2025_20251211_stl_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Nashville Predators", "away_team": "St. Louis Blues", "home_team_abbrev": "NSH", @@ -19929,8 +18822,7 @@ "canonical_id": "game_nfl_2026_20251212_atl_tb", "sport": "NFL", "season": "2025", - "date": "2025-12-11", - "time": "8:15p", + "game_datetime_utc": "2025-12-12T01:15:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Atlanta Falcons", "home_team_abbrev": "TB", @@ -19947,8 +18839,7 @@ "canonical_id": "game_nhl_2025_20251211_det_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Detroit Red Wings", "home_team_abbrev": "EDM", @@ -19965,8 +18856,7 @@ "canonical_id": "game_nhl_2025_20251211_fla_col", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7:30p", + "game_datetime_utc": "2025-12-12T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Florida Panthers", "home_team_abbrev": "COL", @@ -19983,8 +18873,7 @@ "canonical_id": "game_nba_2025_20251211_den_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Denver Nuggets", "home_team_abbrev": "SAC", @@ -20001,8 +18890,7 @@ "canonical_id": "game_nhl_2025_20251211_buf_van", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Buffalo Sabres", "home_team_abbrev": "VAN", @@ -20019,8 +18907,7 @@ "canonical_id": "game_nba_2025_20251212_chi_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Chicago Bulls", "home_team_abbrev": "CHA", @@ -20037,8 +18924,7 @@ "canonical_id": "game_nba_2025_20251212_atl_det", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -20055,8 +18941,7 @@ "canonical_id": "game_nba_2025_20251212_cle_was", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "WAS", @@ -20073,8 +18958,7 @@ "canonical_id": "game_nba_2025_20251212_ind_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "4p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Indiana Pacers", "home_team_abbrev": "PHI", @@ -20091,8 +18975,7 @@ "canonical_id": "game_nba_2025_20251212_uta_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Utah Jazz", "home_team_abbrev": "MEM", @@ -20109,8 +18992,7 @@ "canonical_id": "game_nhl_2025_20251212_chi_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Chicago Blackhawks", "home_team_abbrev": "STL", @@ -20127,8 +19009,7 @@ "canonical_id": "game_nba_2025_20251212_brk_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7:30p", + "game_datetime_utc": "2025-12-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Brooklyn Nets", "home_team_abbrev": "DAL", @@ -20145,8 +19026,7 @@ "canonical_id": "game_nhl_2025_20251212_sea_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T02:00:00Z", "home_team": "Utah Club", "away_team": "Seattle Kraken", "home_team_abbrev": "ARI", @@ -20163,8 +19043,7 @@ "canonical_id": "game_nba_2025_20251212_min_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "GSW", @@ -20181,8 +19060,7 @@ "canonical_id": "game_nhl_2025_20251213_ana_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "12:30p", + "game_datetime_utc": "2025-12-13T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Anaheim Ducks", "home_team_abbrev": "NJ", @@ -20199,8 +19077,7 @@ "canonical_id": "game_nhl_2025_20251213_ott_min", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "1p", + "game_datetime_utc": "2025-12-13T19:00:00Z", "home_team": "Minnesota Wild", "away_team": "Ottawa Senators", "home_team_abbrev": "MIN", @@ -20217,8 +19094,7 @@ "canonical_id": "game_nhl_2025_20251213_sj_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "3p", + "game_datetime_utc": "2025-12-13T20:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "San Jose Sharks", "home_team_abbrev": "PIT", @@ -20235,8 +19111,7 @@ "canonical_id": "game_nhl_2025_20251213_tb_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "3:30p", + "game_datetime_utc": "2025-12-13T20:30:00Z", "home_team": "New York Islanders", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYI", @@ -20253,8 +19128,7 @@ "canonical_id": "game_nba_2025_20251213_nyk_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-13", - "time": "5:30p", + "game_datetime_utc": "2025-12-13T22:30:00Z", "home_team": "Orlando Magic", "away_team": "New York Knicks", "home_team_abbrev": "ORL", @@ -20271,8 +19145,7 @@ "canonical_id": "game_nhl_2025_20251213_mtl_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "New York Rangers", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYR", @@ -20289,8 +19162,7 @@ "canonical_id": "game_nhl_2025_20251213_was_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "6p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Washington Capitals", "home_team_abbrev": "WPG", @@ -20307,8 +19179,7 @@ "canonical_id": "game_nhl_2025_20251213_edm_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Edmonton Oilers", "home_team_abbrev": "TOR", @@ -20325,8 +19196,7 @@ "canonical_id": "game_nhl_2025_20251213_car_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PHI", @@ -20343,8 +19213,7 @@ "canonical_id": "game_nhl_2025_20251213_vgk_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CBJ", @@ -20361,8 +19230,7 @@ "canonical_id": "game_nhl_2025_20251213_fla_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Florida Panthers", "home_team_abbrev": "DAL", @@ -20379,8 +19247,7 @@ "canonical_id": "game_nhl_2025_20251213_det_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Detroit Red Wings", "home_team_abbrev": "CHI", @@ -20397,8 +19264,7 @@ "canonical_id": "game_nba_2025_20251213_sas_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-13", - "time": "8p", + "game_datetime_utc": "2025-12-14T02:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -20415,8 +19281,7 @@ "canonical_id": "game_nhl_2025_20251213_nsh_col", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Nashville Predators", "home_team_abbrev": "COL", @@ -20433,8 +19298,7 @@ "canonical_id": "game_nhl_2025_20251213_cgy_la", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Calgary Flames", "home_team_abbrev": "LA", @@ -20451,8 +19315,7 @@ "canonical_id": "game_nhl_2025_20251214_van_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "12:30p", + "game_datetime_utc": "2025-12-14T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Vancouver Canucks", "home_team_abbrev": "NJ", @@ -20469,8 +19332,7 @@ "canonical_id": "game_nfl_2026_20251214_was_nyg", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "New York Giants", "away_team": "Washington Commanders", "home_team_abbrev": "NYG", @@ -20487,8 +19349,7 @@ "canonical_id": "game_nfl_2026_20251214_cle_chi", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Chicago Bears", "away_team": "Cleveland Browns", "home_team_abbrev": "CHI", @@ -20505,8 +19366,7 @@ "canonical_id": "game_nfl_2026_20251214_bal_cin", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Baltimore Ravens", "home_team_abbrev": "CIN", @@ -20523,8 +19383,7 @@ "canonical_id": "game_nfl_2026_20251214_lac_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Los Angeles Chargers", "home_team_abbrev": "KC", @@ -20541,8 +19400,7 @@ "canonical_id": "game_nfl_2026_20251214_buf_ne", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "New England Patriots", "away_team": "Buffalo Bills", "home_team_abbrev": "NE", @@ -20559,8 +19417,7 @@ "canonical_id": "game_nfl_2026_20251214_lv_phi", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Las Vegas Raiders", "home_team_abbrev": "PHI", @@ -20577,8 +19434,7 @@ "canonical_id": "game_nfl_2026_20251214_nyj_jax", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "New York Jets", "home_team_abbrev": "JAX", @@ -20595,8 +19451,7 @@ "canonical_id": "game_nfl_2026_20251214_ari_hou", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Houston Texans", "away_team": "Arizona Cardinals", "home_team_abbrev": "HOU", @@ -20613,8 +19468,7 @@ "canonical_id": "game_nba_2025_20251214_was_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "3p", + "game_datetime_utc": "2025-12-14T20:00:00Z", "home_team": "Indiana Pacers", "away_team": "Washington Wizards", "home_team_abbrev": "IND", @@ -20631,8 +19485,7 @@ "canonical_id": "game_nhl_2025_20251214_ari_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "3p", + "game_datetime_utc": "2025-12-14T20:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Utah Club", "home_team_abbrev": "PIT", @@ -20649,8 +19502,7 @@ "canonical_id": "game_nba_2025_20251214_cho_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "2:30p", + "game_datetime_utc": "2025-12-14T20:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Charlotte Hornets", "home_team_abbrev": "CLE", @@ -20667,8 +19519,7 @@ "canonical_id": "game_nfl_2026_20251214_car_no", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "3:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "New Orleans Saints", "away_team": "Carolina Panthers", "home_team_abbrev": "NO", @@ -20685,8 +19536,7 @@ "canonical_id": "game_nfl_2026_20251214_det_lar", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Detroit Lions", "home_team_abbrev": "LAR", @@ -20703,8 +19553,7 @@ "canonical_id": "game_nfl_2026_20251214_ind_sea", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Seattle Seahawks", "away_team": "Indianapolis Colts", "home_team_abbrev": "SEA", @@ -20721,8 +19570,7 @@ "canonical_id": "game_nfl_2026_20251214_ten_sf", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Tennessee Titans", "home_team_abbrev": "SF", @@ -20739,8 +19587,7 @@ "canonical_id": "game_nfl_2026_20251214_gb_den", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "2:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Green Bay Packers", "home_team_abbrev": "DEN", @@ -20757,8 +19604,7 @@ "canonical_id": "game_nhl_2025_20251214_phi_car", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-14T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CAR", @@ -20775,8 +19621,7 @@ "canonical_id": "game_nba_2025_20251214_mil_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BKN", @@ -20793,8 +19638,7 @@ "canonical_id": "game_nba_2025_20251214_phi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ATL", @@ -20811,8 +19655,7 @@ "canonical_id": "game_nhl_2025_20251214_bos_min", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Boston Bruins", "home_team_abbrev": "MIN", @@ -20829,8 +19672,7 @@ "canonical_id": "game_nba_2025_20251214_sac_min", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Sacramento Kings", "home_team_abbrev": "MIN", @@ -20847,8 +19689,7 @@ "canonical_id": "game_nba_2025_20251214_nop_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHI", @@ -20865,8 +19706,7 @@ "canonical_id": "game_nhl_2025_20251214_edm_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "7p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Edmonton Oilers", "home_team_abbrev": "MTL", @@ -20883,8 +19723,7 @@ "canonical_id": "game_nba_2025_20251214_lal_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "8p", + "game_datetime_utc": "2025-12-15T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -20901,8 +19740,7 @@ "canonical_id": "game_nhl_2025_20251214_buf_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-15T01:00:00Z", "home_team": "Seattle Kraken", "away_team": "Buffalo Sabres", "home_team_abbrev": "SEA", @@ -20919,8 +19757,7 @@ "canonical_id": "game_nfl_2026_20251215_min_dal", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "7:20p", + "game_datetime_utc": "2025-12-15T01:20:00Z", "home_team": "Dallas Cowboys", "away_team": "Minnesota Vikings", "home_team_abbrev": "DAL", @@ -20937,8 +19774,7 @@ "canonical_id": "game_nba_2025_20251214_gsw_por", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Golden State Warriors", "home_team_abbrev": "POR", @@ -20955,8 +19791,7 @@ "canonical_id": "game_nba_2025_20251215_det_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Detroit Pistons", "home_team_abbrev": "BOS", @@ -20973,8 +19808,7 @@ "canonical_id": "game_nhl_2025_20251215_fla_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Florida Panthers", "home_team_abbrev": "TB", @@ -20991,8 +19825,7 @@ "canonical_id": "game_nhl_2025_20251215_ana_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "New York Rangers", "away_team": "Anaheim Ducks", "home_team_abbrev": "NYR", @@ -21009,8 +19842,7 @@ "canonical_id": "game_nba_2025_20251215_tor_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T00:30:00Z", "home_team": "Miami Heat", "away_team": "Toronto Raptors", "home_team_abbrev": "MIA", @@ -21027,8 +19859,7 @@ "canonical_id": "game_nhl_2025_20251215_ott_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "6:30p", + "game_datetime_utc": "2025-12-16T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Ottawa Senators", "home_team_abbrev": "WPG", @@ -21045,8 +19876,7 @@ "canonical_id": "game_nhl_2025_20251215_la_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Los Angeles Kings", "home_team_abbrev": "DAL", @@ -21063,8 +19893,7 @@ "canonical_id": "game_nhl_2025_20251215_nsh_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Nashville Predators", "home_team_abbrev": "STL", @@ -21081,8 +19910,7 @@ "canonical_id": "game_nfl_2026_20251216_mia_pit", "sport": "NFL", "season": "2025", - "date": "2025-12-15", - "time": "8:15p", + "game_datetime_utc": "2025-12-16T01:15:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Miami Dolphins", "home_team_abbrev": "PIT", @@ -21099,8 +19927,7 @@ "canonical_id": "game_nba_2025_20251215_dal_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Dallas Mavericks", "home_team_abbrev": "UTA", @@ -21117,8 +19944,7 @@ "canonical_id": "game_nba_2025_20251215_hou_den", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -21135,8 +19961,7 @@ "canonical_id": "game_nba_2025_20251215_mem_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAC", @@ -21153,8 +19978,7 @@ "canonical_id": "game_nhl_2025_20251216_ari_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Utah Club", "home_team_abbrev": "BOS", @@ -21171,8 +19995,7 @@ "canonical_id": "game_nhl_2025_20251216_phi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MTL", @@ -21189,8 +20012,7 @@ "canonical_id": "game_nhl_2025_20251216_ana_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Anaheim Ducks", "home_team_abbrev": "CBJ", @@ -21207,8 +20029,7 @@ "canonical_id": "game_nhl_2025_20251216_chi_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Chicago Blackhawks", "home_team_abbrev": "TOR", @@ -21225,8 +20046,7 @@ "canonical_id": "game_nhl_2025_20251216_van_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "New York Rangers", "away_team": "Vancouver Canucks", "home_team_abbrev": "NYR", @@ -21243,8 +20063,7 @@ "canonical_id": "game_nhl_2025_20251216_nyi_det", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Islanders", "home_team_abbrev": "DET", @@ -21261,8 +20080,7 @@ "canonical_id": "game_nhl_2025_20251216_edm_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7:30p", + "game_datetime_utc": "2025-12-17T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Edmonton Oilers", "home_team_abbrev": "PIT", @@ -21279,8 +20097,7 @@ "canonical_id": "game_nhl_2025_20251216_was_min", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Washington Capitals", "home_team_abbrev": "MIN", @@ -21297,8 +20114,7 @@ "canonical_id": "game_nba_2025_20251216_sas_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-16", - "time": "8:30p", + "game_datetime_utc": "2025-12-17T01:30:00Z", "home_team": "New York Knicks", "away_team": "San Antonio Spurs", "home_team_abbrev": "NYK", @@ -21315,8 +20131,7 @@ "canonical_id": "game_nhl_2025_20251216_col_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Colorado Avalanche", "home_team_abbrev": "SEA", @@ -21333,8 +20148,7 @@ "canonical_id": "game_nhl_2025_20251216_cgy_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Calgary Flames", "home_team_abbrev": "SJ", @@ -21351,8 +20165,7 @@ "canonical_id": "game_nhl_2025_20251217_la_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Los Angeles Kings", "home_team_abbrev": "FLA", @@ -21369,8 +20182,7 @@ "canonical_id": "game_nhl_2025_20251217_ari_det", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7:30p", + "game_datetime_utc": "2025-12-18T00:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Utah Club", "home_team_abbrev": "DET", @@ -21387,8 +20199,7 @@ "canonical_id": "game_nba_2025_20251217_mem_min", "sport": "NBA", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIN", @@ -21405,8 +20216,7 @@ "canonical_id": "game_nba_2025_20251217_cle_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHI", @@ -21423,8 +20233,7 @@ "canonical_id": "game_nhl_2025_20251217_car_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NSH", @@ -21441,8 +20250,7 @@ "canonical_id": "game_nhl_2025_20251217_wpg_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Winnipeg Jets", "home_team_abbrev": "STL", @@ -21459,8 +20267,7 @@ "canonical_id": "game_nhl_2025_20251217_njd_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New Jersey Devils", "home_team_abbrev": "VGK", @@ -21477,8 +20284,7 @@ "canonical_id": "game_nba_2025_20251218_nyk_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "New York Knicks", "home_team_abbrev": "IND", @@ -21495,8 +20301,7 @@ "canonical_id": "game_nba_2025_20251218_atl_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHA", @@ -21513,8 +20318,7 @@ "canonical_id": "game_nhl_2025_20251218_la_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Los Angeles Kings", "home_team_abbrev": "TB", @@ -21531,8 +20335,7 @@ "canonical_id": "game_nhl_2025_20251218_pit_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "OTT", @@ -21549,8 +20352,7 @@ "canonical_id": "game_nhl_2025_20251218_tor_was", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WAS", @@ -21567,8 +20369,7 @@ "canonical_id": "game_nhl_2025_20251218_chi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MTL", @@ -21585,8 +20386,7 @@ "canonical_id": "game_nhl_2025_20251218_edm_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Edmonton Oilers", "home_team_abbrev": "BOS", @@ -21603,8 +20403,7 @@ "canonical_id": "game_nhl_2025_20251218_min_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Minnesota Wild", "home_team_abbrev": "CBJ", @@ -21621,8 +20420,7 @@ "canonical_id": "game_nba_2025_20251218_mia_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Miami Heat", "home_team_abbrev": "BKN", @@ -21639,8 +20437,7 @@ "canonical_id": "game_nhl_2025_20251218_phi_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BUF", @@ -21657,8 +20454,7 @@ "canonical_id": "game_nba_2025_20251218_tor_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Toronto Raptors", "home_team_abbrev": "MIL", @@ -21675,8 +20471,7 @@ "canonical_id": "game_nba_2025_20251218_hou_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Houston Rockets", "home_team_abbrev": "NOP", @@ -21693,8 +20488,7 @@ "canonical_id": "game_nba_2025_20251218_lac_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Clippers", "home_team_abbrev": "OKC", @@ -21711,8 +20505,7 @@ "canonical_id": "game_nba_2025_20251218_was_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Washington Wizards", "home_team_abbrev": "SAS", @@ -21729,8 +20522,7 @@ "canonical_id": "game_nhl_2025_20251218_nyr_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "New York Rangers", "home_team_abbrev": "STL", @@ -21747,8 +20539,7 @@ "canonical_id": "game_nfl_2026_20251219_lar_sea", "sport": "NFL", "season": "2025", - "date": "2025-12-18", - "time": "5:15p", + "game_datetime_utc": "2025-12-19T01:15:00Z", "home_team": "Seattle Seahawks", "away_team": "Los Angeles Rams", "home_team_abbrev": "SEA", @@ -21765,8 +20556,7 @@ "canonical_id": "game_nba_2025_20251218_det_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Detroit Pistons", "home_team_abbrev": "DAL", @@ -21783,8 +20573,7 @@ "canonical_id": "game_nba_2025_20251218_orl_den", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Orlando Magic", "home_team_abbrev": "DEN", @@ -21801,8 +20590,7 @@ "canonical_id": "game_nba_2025_20251218_lal_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Lakers", "home_team_abbrev": "UTA", @@ -21819,8 +20607,7 @@ "canonical_id": "game_nba_2025_20251218_gsw_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "9p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Golden State Warriors", "home_team_abbrev": "PHX", @@ -21837,8 +20624,7 @@ "canonical_id": "game_nhl_2025_20251218_sea_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Seattle Kraken", "home_team_abbrev": "CGY", @@ -21855,8 +20641,7 @@ "canonical_id": "game_nba_2025_20251218_sac_por", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Sacramento Kings", "home_team_abbrev": "POR", @@ -21873,8 +20658,7 @@ "canonical_id": "game_nhl_2025_20251218_dal_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Dallas Stars", "home_team_abbrev": "SJ", @@ -21891,8 +20675,7 @@ "canonical_id": "game_nba_2025_20251219_phi_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "New York Knicks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NYK", @@ -21909,8 +20692,7 @@ "canonical_id": "game_nba_2025_20251219_mia_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Miami Heat", "home_team_abbrev": "BOS", @@ -21927,8 +20709,7 @@ "canonical_id": "game_nhl_2025_20251219_van_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "New York Islanders", "away_team": "Vancouver Canucks", "home_team_abbrev": "NYI", @@ -21945,8 +20726,7 @@ "canonical_id": "game_nhl_2025_20251219_car_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "FLA", @@ -21963,8 +20743,7 @@ "canonical_id": "game_nba_2025_20251219_chi_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "6:30p", + "game_datetime_utc": "2025-12-20T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Chicago Bulls", "home_team_abbrev": "CLE", @@ -21981,8 +20760,7 @@ "canonical_id": "game_nba_2025_20251219_sas_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7:30p", + "game_datetime_utc": "2025-12-20T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "San Antonio Spurs", "home_team_abbrev": "ATL", @@ -21999,8 +20777,7 @@ "canonical_id": "game_nhl_2025_20251219_wpg_col", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Winnipeg Jets", "home_team_abbrev": "COL", @@ -22017,8 +20794,7 @@ "canonical_id": "game_nhl_2025_20251219_njd_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T02:00:00Z", "home_team": "Utah Club", "away_team": "New Jersey Devils", "home_team_abbrev": "ARI", @@ -22035,8 +20811,7 @@ "canonical_id": "game_nba_2025_20251219_okc_min", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "8:30p", + "game_datetime_utc": "2025-12-20T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIN", @@ -22053,8 +20828,7 @@ "canonical_id": "game_nhl_2025_20251219_dal_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Dallas Stars", "home_team_abbrev": "ANA", @@ -22071,8 +20845,7 @@ "canonical_id": "game_nhl_2025_20251220_det_was", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "12:30p", + "game_datetime_utc": "2025-12-20T17:30:00Z", "home_team": "Washington Capitals", "away_team": "Detroit Red Wings", "home_team_abbrev": "WAS", @@ -22089,8 +20862,7 @@ "canonical_id": "game_nhl_2025_20251220_phi_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "12:30p", + "game_datetime_utc": "2025-12-20T17:30:00Z", "home_team": "New York Rangers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYR", @@ -22107,8 +20879,7 @@ "canonical_id": "game_nhl_2025_20251220_chi_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "3p", + "game_datetime_utc": "2025-12-20T20:00:00Z", "home_team": "Ottawa Senators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "OTT", @@ -22125,8 +20896,7 @@ "canonical_id": "game_nhl_2025_20251220_edm_min", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "2p", + "game_datetime_utc": "2025-12-20T20:00:00Z", "home_team": "Minnesota Wild", "away_team": "Edmonton Oilers", "home_team_abbrev": "MIN", @@ -22143,8 +20913,7 @@ "canonical_id": "game_nba_2025_20251220_hou_den", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "3p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -22161,8 +20930,7 @@ "canonical_id": "game_nfl_2026_20251220_phi_was", "sport": "NFL", "season": "2025", - "date": "2025-12-20", - "time": "5p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Washington Commanders", "away_team": "Philadelphia Eagles", "home_team_abbrev": "WAS", @@ -22179,8 +20947,7 @@ "canonical_id": "game_nhl_2025_20251220_nyi_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "5p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Islanders", "home_team_abbrev": "BUF", @@ -22197,8 +20964,7 @@ "canonical_id": "game_nhl_2025_20251220_stl_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-20T23:00:00Z", "home_team": "Florida Panthers", "away_team": "St. Louis Blues", "home_team_abbrev": "FLA", @@ -22215,8 +20981,7 @@ "canonical_id": "game_nba_2025_20251220_ind_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Indiana Pacers", "home_team_abbrev": "NOP", @@ -22233,8 +20998,7 @@ "canonical_id": "game_nba_2025_20251220_bos_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Boston Celtics", "home_team_abbrev": "TOR", @@ -22251,8 +21015,7 @@ "canonical_id": "game_nba_2025_20251220_dal_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "4p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHI", @@ -22269,8 +21032,7 @@ "canonical_id": "game_nhl_2025_20251220_van_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Vancouver Canucks", "home_team_abbrev": "BOS", @@ -22287,8 +21049,7 @@ "canonical_id": "game_nhl_2025_20251220_car_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TB", @@ -22305,8 +21066,7 @@ "canonical_id": "game_nhl_2025_20251220_tor_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NSH", @@ -22323,8 +21083,7 @@ "canonical_id": "game_nhl_2025_20251220_pit_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "MTL", @@ -22341,8 +21100,7 @@ "canonical_id": "game_nba_2025_20251220_cho_det", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Charlotte Hornets", "home_team_abbrev": "DET", @@ -22359,8 +21117,7 @@ "canonical_id": "game_nba_2025_20251220_was_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Washington Wizards", "home_team_abbrev": "MEM", @@ -22377,8 +21134,7 @@ "canonical_id": "game_nfl_2026_20251221_gb_chi", "sport": "NFL", "season": "2025", - "date": "2025-12-20", - "time": "7:20p", + "game_datetime_utc": "2025-12-21T01:20:00Z", "home_team": "Chicago Bears", "away_team": "Green Bay Packers", "home_team_abbrev": "CHI", @@ -22395,8 +21151,7 @@ "canonical_id": "game_nba_2025_20251220_phx_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "5:30p", + "game_datetime_utc": "2025-12-21T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Phoenix Suns", "home_team_abbrev": "GSW", @@ -22413,8 +21168,7 @@ "canonical_id": "game_nba_2025_20251220_orl_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Orlando Magic", "home_team_abbrev": "UTA", @@ -22431,8 +21185,7 @@ "canonical_id": "game_nba_2025_20251220_por_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Portland Blazers", "home_team_abbrev": "SAC", @@ -22449,8 +21202,7 @@ "canonical_id": "game_nhl_2025_20251220_vgk_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "8p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CGY", @@ -22467,8 +21219,7 @@ "canonical_id": "game_nhl_2025_20251220_sea_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Seattle Kraken", "home_team_abbrev": "SJ", @@ -22485,8 +21236,7 @@ "canonical_id": "game_nhl_2025_20251220_cbj_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "ANA", @@ -22503,8 +21253,7 @@ "canonical_id": "game_nba_2025_20251220_lal_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "LAC", @@ -22521,8 +21270,7 @@ "canonical_id": "game_nfl_2026_20251221_buf_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Buffalo Bills", "home_team_abbrev": "CLE", @@ -22539,8 +21287,7 @@ "canonical_id": "game_nfl_2026_20251221_tb_car", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "CAR", @@ -22557,8 +21304,7 @@ "canonical_id": "game_nfl_2026_20251221_min_nyg", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "New York Giants", "away_team": "Minnesota Vikings", "home_team_abbrev": "NYG", @@ -22575,8 +21321,7 @@ "canonical_id": "game_nfl_2026_20251221_nyj_no", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "New Orleans Saints", "away_team": "New York Jets", "home_team_abbrev": "NO", @@ -22593,8 +21338,7 @@ "canonical_id": "game_nfl_2026_20251221_cin_mia", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Cincinnati Bengals", "home_team_abbrev": "MIA", @@ -22611,8 +21355,7 @@ "canonical_id": "game_nfl_2026_20251221_kc_ten", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Kansas City Chiefs", "home_team_abbrev": "TEN", @@ -22629,8 +21372,7 @@ "canonical_id": "game_nfl_2026_20251221_lac_dal", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DAL", @@ -22647,8 +21389,7 @@ "canonical_id": "game_nhl_2025_20251221_was_det", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Washington Capitals", "home_team_abbrev": "DET", @@ -22665,8 +21406,7 @@ "canonical_id": "game_nba_2025_20251221_chi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "3:30p", + "game_datetime_utc": "2025-12-21T20:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Chicago Bulls", "home_team_abbrev": "ATL", @@ -22683,8 +21423,7 @@ "canonical_id": "game_nfl_2026_20251221_atl_ari", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "2:05p", + "game_datetime_utc": "2025-12-21T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Atlanta Falcons", "home_team_abbrev": "ARI", @@ -22701,8 +21440,7 @@ "canonical_id": "game_nfl_2026_20251221_jax_den", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "2:05p", + "game_datetime_utc": "2025-12-21T21:05:00Z", "home_team": "Denver Broncos", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "DEN", @@ -22719,8 +21457,7 @@ "canonical_id": "game_nfl_2026_20251221_lv_hou", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "3:25p", + "game_datetime_utc": "2025-12-21T21:25:00Z", "home_team": "Houston Texans", "away_team": "Las Vegas Raiders", "home_team_abbrev": "HOU", @@ -22737,8 +21474,7 @@ "canonical_id": "game_nfl_2026_20251221_pit_det", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "4:25p", + "game_datetime_utc": "2025-12-21T21:25:00Z", "home_team": "Detroit Lions", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "DET", @@ -22755,8 +21491,7 @@ "canonical_id": "game_nba_2025_20251221_mia_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "New York Knicks", "away_team": "Miami Heat", "home_team_abbrev": "NYK", @@ -22773,8 +21508,7 @@ "canonical_id": "game_nba_2025_20251221_tor_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Toronto Raptors", "home_team_abbrev": "BKN", @@ -22791,8 +21525,7 @@ "canonical_id": "game_nhl_2025_20251221_col_min", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "5p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Colorado Avalanche", "home_team_abbrev": "MIN", @@ -22809,8 +21542,7 @@ "canonical_id": "game_nba_2025_20251221_sas_was", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Washington Wizards", "away_team": "San Antonio Spurs", "home_team_abbrev": "WAS", @@ -22827,8 +21559,7 @@ "canonical_id": "game_nba_2025_20251221_mil_min", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIN", @@ -22845,8 +21576,7 @@ "canonical_id": "game_nhl_2025_20251221_ott_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Ottawa Senators", "home_team_abbrev": "BOS", @@ -22863,8 +21593,7 @@ "canonical_id": "game_nhl_2025_20251221_wpg_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "5p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Utah Club", "away_team": "Winnipeg Jets", "home_team_abbrev": "ARI", @@ -22881,8 +21610,7 @@ "canonical_id": "game_nhl_2025_20251221_mtl_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Montreal Canadiens", "home_team_abbrev": "PIT", @@ -22899,8 +21627,7 @@ "canonical_id": "game_nhl_2025_20251221_nyr_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Nashville Predators", "away_team": "New York Rangers", "home_team_abbrev": "NSH", @@ -22917,8 +21644,7 @@ "canonical_id": "game_nhl_2025_20251221_buf_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Buffalo Sabres", "home_team_abbrev": "NJ", @@ -22935,8 +21661,7 @@ "canonical_id": "game_nhl_2025_20251221_tor_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DAL", @@ -22953,8 +21678,7 @@ "canonical_id": "game_nhl_2025_20251221_vgk_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "EDM", @@ -22971,8 +21695,7 @@ "canonical_id": "game_nfl_2026_20251222_ne_bal", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "8:20p", + "game_datetime_utc": "2025-12-22T01:20:00Z", "home_team": "Baltimore Ravens", "away_team": "New England Patriots", "home_team_abbrev": "BAL", @@ -22989,8 +21712,7 @@ "canonical_id": "game_nba_2025_20251221_hou_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Houston Rockets", "home_team_abbrev": "SAC", @@ -23007,8 +21729,7 @@ "canonical_id": "game_nba_2025_20251222_cho_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "6p", + "game_datetime_utc": "2025-12-23T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Charlotte Hornets", "home_team_abbrev": "CLE", @@ -23025,8 +21746,7 @@ "canonical_id": "game_nhl_2025_20251222_stl_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "St. Louis Blues", "home_team_abbrev": "TB", @@ -23043,8 +21763,7 @@ "canonical_id": "game_nba_2025_20251222_ind_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7:30p", + "game_datetime_utc": "2025-12-23T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Indiana Pacers", "home_team_abbrev": "BOS", @@ -23061,8 +21780,7 @@ "canonical_id": "game_nhl_2025_20251222_van_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7:30p", + "game_datetime_utc": "2025-12-23T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Vancouver Canucks", "home_team_abbrev": "PHI", @@ -23079,8 +21797,7 @@ "canonical_id": "game_nba_2025_20251222_dal_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Dallas Mavericks", "home_team_abbrev": "NOP", @@ -23097,8 +21814,7 @@ "canonical_id": "game_nfl_2026_20251223_sf_ind", "sport": "NFL", "season": "2025", - "date": "2025-12-22", - "time": "8:15p", + "game_datetime_utc": "2025-12-23T01:15:00Z", "home_team": "Indianapolis Colts", "away_team": "San Francisco 49ers", "home_team_abbrev": "IND", @@ -23115,8 +21831,7 @@ "canonical_id": "game_nba_2025_20251222_uta_den", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Utah Jazz", "home_team_abbrev": "DEN", @@ -23133,8 +21848,7 @@ "canonical_id": "game_nba_2025_20251222_mem_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "8:30p", + "game_datetime_utc": "2025-12-23T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Memphis Grizzlies", "home_team_abbrev": "OKC", @@ -23151,8 +21865,7 @@ "canonical_id": "game_nba_2025_20251222_orl_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Orlando Magic", "home_team_abbrev": "GSW", @@ -23169,8 +21882,7 @@ "canonical_id": "game_nba_2025_20251222_det_por", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Detroit Pistons", "home_team_abbrev": "POR", @@ -23187,8 +21899,7 @@ "canonical_id": "game_nhl_2025_20251222_sea_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Seattle Kraken", "home_team_abbrev": "ANA", @@ -23205,8 +21916,7 @@ "canonical_id": "game_nhl_2025_20251222_cbj_la", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "LA", @@ -23223,8 +21933,7 @@ "canonical_id": "game_nhl_2025_20251223_pit_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "4p", + "game_datetime_utc": "2025-12-23T21:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TOR", @@ -23241,8 +21950,7 @@ "canonical_id": "game_nhl_2025_20251223_dal_det", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "6:30p", + "game_datetime_utc": "2025-12-23T23:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Dallas Stars", "home_team_abbrev": "DET", @@ -23259,8 +21967,7 @@ "canonical_id": "game_nba_2025_20251223_was_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Washington Wizards", "home_team_abbrev": "CHA", @@ -23277,8 +21984,7 @@ "canonical_id": "game_nba_2025_20251223_brk_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "4p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHI", @@ -23295,8 +22001,7 @@ "canonical_id": "game_nhl_2025_20251223_buf_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Buffalo Sabres", "home_team_abbrev": "OTT", @@ -23313,8 +22018,7 @@ "canonical_id": "game_nhl_2025_20251223_mtl_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Montreal Canadiens", "home_team_abbrev": "BOS", @@ -23331,8 +22035,7 @@ "canonical_id": "game_nhl_2025_20251223_njd_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "New York Islanders", "away_team": "New Jersey Devils", "home_team_abbrev": "NYI", @@ -23349,8 +22052,7 @@ "canonical_id": "game_nhl_2025_20251223_nyr_was", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Rangers", "home_team_abbrev": "WAS", @@ -23367,8 +22069,7 @@ "canonical_id": "game_nhl_2025_20251223_fla_car", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Florida Panthers", "home_team_abbrev": "CAR", @@ -23385,8 +22086,7 @@ "canonical_id": "game_nba_2025_20251223_nop_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "6:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CLE", @@ -23403,8 +22103,7 @@ "canonical_id": "game_nba_2025_20251223_tor_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Miami Heat", "away_team": "Toronto Raptors", "home_team_abbrev": "MIA", @@ -23421,8 +22120,7 @@ "canonical_id": "game_nba_2025_20251223_mil_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "IND", @@ -23439,8 +22137,7 @@ "canonical_id": "game_nba_2025_20251223_chi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Chicago Bulls", "home_team_abbrev": "ATL", @@ -23457,8 +22154,7 @@ "canonical_id": "game_nba_2025_20251223_nyk_min", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New York Knicks", "home_team_abbrev": "MIN", @@ -23475,8 +22171,7 @@ "canonical_id": "game_nba_2025_20251223_den_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Denver Nuggets", "home_team_abbrev": "DAL", @@ -23493,8 +22188,7 @@ "canonical_id": "game_nhl_2025_20251223_nsh_min", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Nashville Predators", "home_team_abbrev": "MIN", @@ -23511,8 +22205,7 @@ "canonical_id": "game_nba_2025_20251223_okc_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T01:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAS", @@ -23529,8 +22222,7 @@ "canonical_id": "game_nba_2025_20251223_lal_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "9p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -23547,8 +22239,7 @@ "canonical_id": "game_nba_2025_20251223_mem_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Memphis Grizzlies", "home_team_abbrev": "UTA", @@ -23565,8 +22256,7 @@ "canonical_id": "game_nhl_2025_20251223_ari_col", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Utah Club", "home_team_abbrev": "COL", @@ -23583,8 +22273,7 @@ "canonical_id": "game_nhl_2025_20251223_phi_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "8p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CHI", @@ -23601,8 +22290,7 @@ "canonical_id": "game_nhl_2025_20251223_cgy_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Calgary Flames", "home_team_abbrev": "EDM", @@ -23619,8 +22307,7 @@ "canonical_id": "game_nba_2025_20251223_det_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Detroit Pistons", "home_team_abbrev": "SAC", @@ -23637,8 +22324,7 @@ "canonical_id": "game_nba_2025_20251223_orl_por", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Orlando Magic", "home_team_abbrev": "POR", @@ -23655,8 +22341,7 @@ "canonical_id": "game_nhl_2025_20251223_sea_la", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Seattle Kraken", "home_team_abbrev": "LA", @@ -23673,8 +22358,7 @@ "canonical_id": "game_nhl_2025_20251223_sj_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "San Jose Sharks", "home_team_abbrev": "VGK", @@ -23691,8 +22375,7 @@ "canonical_id": "game_nba_2025_20251223_hou_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Houston Rockets", "home_team_abbrev": "LAC", @@ -23709,8 +22392,7 @@ "canonical_id": "game_nba_2025_20251225_cle_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "12p", + "game_datetime_utc": "2025-12-25T17:00:00Z", "home_team": "New York Knicks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NYK", @@ -23727,8 +22409,7 @@ "canonical_id": "game_nfl_2026_20251225_dal_was", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "1p", + "game_datetime_utc": "2025-12-25T18:00:00Z", "home_team": "Washington Commanders", "away_team": "Dallas Cowboys", "home_team_abbrev": "WAS", @@ -23745,8 +22426,7 @@ "canonical_id": "game_nba_2025_20251225_sas_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "1:30p", + "game_datetime_utc": "2025-12-25T19:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -23763,8 +22443,7 @@ "canonical_id": "game_nfl_2026_20251225_det_min", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "3:30p", + "game_datetime_utc": "2025-12-25T21:30:00Z", "home_team": "Minnesota Vikings", "away_team": "Detroit Lions", "home_team_abbrev": "MIN", @@ -23781,8 +22460,7 @@ "canonical_id": "game_nba_2025_20251225_dal_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "2p", + "game_datetime_utc": "2025-12-25T22:00:00Z", "home_team": "Golden State Warriors", "away_team": "Dallas Mavericks", "home_team_abbrev": "GSW", @@ -23799,8 +22477,7 @@ "canonical_id": "game_nba_2025_20251225_hou_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "5p", + "game_datetime_utc": "2025-12-26T01:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Houston Rockets", "home_team_abbrev": "LAL", @@ -23817,8 +22494,7 @@ "canonical_id": "game_nfl_2026_20251226_den_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "7:15p", + "game_datetime_utc": "2025-12-26T01:15:00Z", "home_team": "Kansas City Chiefs", "away_team": "Denver Broncos", "home_team_abbrev": "KC", @@ -23835,8 +22511,7 @@ "canonical_id": "game_nba_2025_20251225_min_den", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "8:30p", + "game_datetime_utc": "2025-12-26T03:30:00Z", "home_team": "Denver Nuggets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DEN", @@ -23853,8 +22528,7 @@ "canonical_id": "game_nba_2025_20251226_tor_was", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Toronto Raptors", "home_team_abbrev": "WAS", @@ -23871,8 +22545,7 @@ "canonical_id": "game_nba_2025_20251226_bos_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Boston Celtics", "home_team_abbrev": "IND", @@ -23889,8 +22562,7 @@ "canonical_id": "game_nba_2025_20251226_mia_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Miami Heat", "home_team_abbrev": "ATL", @@ -23907,8 +22579,7 @@ "canonical_id": "game_nba_2025_20251226_cho_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Charlotte Hornets", "home_team_abbrev": "ORL", @@ -23925,8 +22596,7 @@ "canonical_id": "game_nba_2025_20251226_phi_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "6:30p", + "game_datetime_utc": "2025-12-27T00:30:00Z", "home_team": "Chicago Bulls", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHI", @@ -23943,8 +22613,7 @@ "canonical_id": "game_nba_2025_20251226_mil_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MEM", @@ -23961,8 +22630,7 @@ "canonical_id": "game_nba_2025_20251226_phx_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Phoenix Suns", "home_team_abbrev": "NOP", @@ -23979,8 +22647,7 @@ "canonical_id": "game_nba_2025_20251226_det_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7:30p", + "game_datetime_utc": "2025-12-27T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Detroit Pistons", "home_team_abbrev": "UTA", @@ -23997,8 +22664,7 @@ "canonical_id": "game_nba_2025_20251226_lac_por", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "POR", @@ -24015,8 +22681,7 @@ "canonical_id": "game_nfl_2026_20251227_hou_lac", "sport": "NFL", "season": "2025", - "date": "2025-12-27", - "time": "1:30p", + "game_datetime_utc": "2025-12-27T21:30:00Z", "home_team": "Los Angeles Chargers", "away_team": "Houston Texans", "home_team_abbrev": "LAC", @@ -24033,8 +22698,7 @@ "canonical_id": "game_nba_2025_20251227_dal_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "2p", + "game_datetime_utc": "2025-12-27T22:00:00Z", "home_team": "Sacramento Kings", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAC", @@ -24051,8 +22715,7 @@ "canonical_id": "game_nhl_2025_20251227_nyr_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-27T23:00:00Z", "home_team": "New York Islanders", "away_team": "New York Rangers", "home_team_abbrev": "NYI", @@ -24069,8 +22732,7 @@ "canonical_id": "game_nba_2025_20251227_den_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Denver Nuggets", "home_team_abbrev": "ORL", @@ -24087,8 +22749,7 @@ "canonical_id": "game_nba_2025_20251227_phx_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Phoenix Suns", "home_team_abbrev": "NOP", @@ -24105,8 +22766,7 @@ "canonical_id": "game_nhl_2025_20251227_min_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Minnesota Wild", "home_team_abbrev": "WPG", @@ -24123,8 +22783,7 @@ "canonical_id": "game_nhl_2025_20251227_ott_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Ottawa Senators", "home_team_abbrev": "TOR", @@ -24141,8 +22800,7 @@ "canonical_id": "game_nhl_2025_20251227_was_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Washington Capitals", "home_team_abbrev": "NJ", @@ -24159,8 +22817,7 @@ "canonical_id": "game_nhl_2025_20251227_tb_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "FLA", @@ -24177,8 +22834,7 @@ "canonical_id": "game_nhl_2025_20251227_det_car", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Detroit Red Wings", "home_team_abbrev": "CAR", @@ -24195,8 +22851,7 @@ "canonical_id": "game_nhl_2025_20251227_bos_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Boston Bruins", "home_team_abbrev": "BUF", @@ -24213,8 +22868,7 @@ "canonical_id": "game_nba_2025_20251227_cle_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "HOU", @@ -24231,8 +22885,7 @@ "canonical_id": "game_nba_2025_20251227_nyk_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "New York Knicks", "home_team_abbrev": "ATL", @@ -24249,8 +22902,7 @@ "canonical_id": "game_nba_2025_20251227_mil_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHI", @@ -24267,8 +22919,7 @@ "canonical_id": "game_nba_2025_20251227_uta_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Utah Jazz", "home_team_abbrev": "SAS", @@ -24285,8 +22936,7 @@ "canonical_id": "game_nba_2025_20251227_brk_min", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIN", @@ -24303,8 +22953,7 @@ "canonical_id": "game_nba_2025_20251227_ind_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Miami Heat", "away_team": "Indiana Pacers", "home_team_abbrev": "MIA", @@ -24321,8 +22970,7 @@ "canonical_id": "game_nfl_2026_20251228_bal_gb", "sport": "NFL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Green Bay Packers", "away_team": "Baltimore Ravens", "home_team_abbrev": "GB", @@ -24339,8 +22987,7 @@ "canonical_id": "game_nhl_2025_20251227_nsh_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Nashville Predators", "home_team_abbrev": "STL", @@ -24357,8 +23004,7 @@ "canonical_id": "game_nhl_2025_20251227_chi_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DAL", @@ -24375,8 +23021,7 @@ "canonical_id": "game_nhl_2025_20251227_ana_la", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Anaheim Ducks", "home_team_abbrev": "LA", @@ -24393,8 +23038,7 @@ "canonical_id": "game_nhl_2025_20251227_edm_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Edmonton Oilers", "home_team_abbrev": "CGY", @@ -24411,8 +23055,7 @@ "canonical_id": "game_nhl_2025_20251227_sj_van", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "San Jose Sharks", "home_team_abbrev": "VAN", @@ -24429,8 +23072,7 @@ "canonical_id": "game_nhl_2025_20251227_col_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Colorado Avalanche", "home_team_abbrev": "VGK", @@ -24447,8 +23089,7 @@ "canonical_id": "game_nfl_2026_20251228_jax_ind", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "IND", @@ -24465,8 +23106,7 @@ "canonical_id": "game_nfl_2026_20251228_no_ten", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "12p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "New Orleans Saints", "home_team_abbrev": "TEN", @@ -24483,8 +23123,7 @@ "canonical_id": "game_nfl_2026_20251228_tb_mia", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "MIA", @@ -24501,8 +23140,7 @@ "canonical_id": "game_nfl_2026_20251228_ne_nyj", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "New York Jets", "away_team": "New England Patriots", "home_team_abbrev": "NYJ", @@ -24519,8 +23157,7 @@ "canonical_id": "game_nfl_2026_20251228_pit_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CLE", @@ -24537,8 +23174,7 @@ "canonical_id": "game_nfl_2026_20251228_ari_cin", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Arizona Cardinals", "home_team_abbrev": "CIN", @@ -24555,8 +23191,7 @@ "canonical_id": "game_nfl_2026_20251228_sea_car", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Seattle Seahawks", "home_team_abbrev": "CAR", @@ -24573,8 +23208,7 @@ "canonical_id": "game_nba_2025_20251228_phi_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "2:30p", + "game_datetime_utc": "2025-12-28T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Philadelphia 76ers", "home_team_abbrev": "OKC", @@ -24591,8 +23225,7 @@ "canonical_id": "game_nba_2025_20251228_gsw_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "3:30p", + "game_datetime_utc": "2025-12-28T20:30:00Z", "home_team": "Toronto Raptors", "away_team": "Golden State Warriors", "home_team_abbrev": "TOR", @@ -24609,8 +23242,7 @@ "canonical_id": "game_nfl_2026_20251228_nyg_lv", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1:05p", + "game_datetime_utc": "2025-12-28T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "New York Giants", "home_team_abbrev": "LV", @@ -24627,8 +23259,7 @@ "canonical_id": "game_nfl_2026_20251228_phi_buf", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "4:25p", + "game_datetime_utc": "2025-12-28T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "Philadelphia Eagles", "home_team_abbrev": "BUF", @@ -24645,8 +23276,7 @@ "canonical_id": "game_nhl_2025_20251228_nyi_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-28T22:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Islanders", "home_team_abbrev": "CBJ", @@ -24663,8 +23293,7 @@ "canonical_id": "game_nhl_2025_20251228_mtl_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-28T22:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Montreal Canadiens", "home_team_abbrev": "TB", @@ -24681,8 +23310,7 @@ "canonical_id": "game_nba_2025_20251228_mem_was", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-28T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Memphis Grizzlies", "home_team_abbrev": "WAS", @@ -24699,8 +23327,7 @@ "canonical_id": "game_nba_2025_20251228_bos_por", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "3p", + "game_datetime_utc": "2025-12-28T23:00:00Z", "home_team": "Portland Blazers", "away_team": "Boston Celtics", "home_team_abbrev": "POR", @@ -24717,8 +23344,7 @@ "canonical_id": "game_nhl_2025_20251228_pit_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-29T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CHI", @@ -24735,8 +23361,7 @@ "canonical_id": "game_nhl_2025_20251228_tor_det", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "7p", + "game_datetime_utc": "2025-12-29T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DET", @@ -24753,8 +23378,7 @@ "canonical_id": "game_nhl_2025_20251228_phi_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-29T01:00:00Z", "home_team": "Seattle Kraken", "away_team": "Philadelphia Flyers", "home_team_abbrev": "SEA", @@ -24771,8 +23395,7 @@ "canonical_id": "game_nfl_2026_20251229_chi_sf", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "5:20p", + "game_datetime_utc": "2025-12-29T01:20:00Z", "home_team": "San Francisco 49ers", "away_team": "Chicago Bears", "home_team_abbrev": "SF", @@ -24789,8 +23412,7 @@ "canonical_id": "game_nba_2025_20251228_det_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-29T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Detroit Pistons", "home_team_abbrev": "LAC", @@ -24807,8 +23429,7 @@ "canonical_id": "game_nba_2025_20251228_sac_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6:30p", + "game_datetime_utc": "2025-12-29T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAL", @@ -24825,8 +23446,7 @@ "canonical_id": "game_nba_2025_20251229_mil_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHA", @@ -24843,8 +23463,7 @@ "canonical_id": "game_nba_2025_20251229_phx_was", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Phoenix Suns", "home_team_abbrev": "WAS", @@ -24861,8 +23480,7 @@ "canonical_id": "game_nhl_2025_20251229_was_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Washington Capitals", "home_team_abbrev": "FLA", @@ -24879,8 +23497,7 @@ "canonical_id": "game_nhl_2025_20251229_nyr_car", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Rangers", "home_team_abbrev": "CAR", @@ -24897,8 +23514,7 @@ "canonical_id": "game_nba_2025_20251229_den_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Miami Heat", "away_team": "Denver Nuggets", "home_team_abbrev": "MIA", @@ -24915,8 +23531,7 @@ "canonical_id": "game_nba_2025_20251229_gsw_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Golden State Warriors", "home_team_abbrev": "BKN", @@ -24933,8 +23548,7 @@ "canonical_id": "game_nba_2025_20251229_orl_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Orlando Magic", "home_team_abbrev": "TOR", @@ -24951,8 +23565,7 @@ "canonical_id": "game_nhl_2025_20251229_edm_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "6:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Edmonton Oilers", "home_team_abbrev": "WPG", @@ -24969,8 +23582,7 @@ "canonical_id": "game_nhl_2025_20251229_cbj_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "OTT", @@ -24987,8 +23599,7 @@ "canonical_id": "game_nba_2025_20251229_nyk_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "New York Knicks", "home_team_abbrev": "NOP", @@ -25005,8 +23616,7 @@ "canonical_id": "game_nba_2025_20251229_atl_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Atlanta Hawks", "home_team_abbrev": "OKC", @@ -25023,8 +23633,7 @@ "canonical_id": "game_nba_2025_20251229_cle_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "SAS", @@ -25041,8 +23650,7 @@ "canonical_id": "game_nba_2025_20251229_min_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CHI", @@ -25059,8 +23667,7 @@ "canonical_id": "game_nba_2025_20251229_ind_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Indiana Pacers", "home_team_abbrev": "HOU", @@ -25077,8 +23684,7 @@ "canonical_id": "game_nhl_2025_20251229_buf_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Buffalo Sabres", "home_team_abbrev": "STL", @@ -25095,8 +23701,7 @@ "canonical_id": "game_nfl_2026_20251230_lar_atl", "sport": "NFL", "season": "2025", - "date": "2025-12-29", - "time": "8:15p", + "game_datetime_utc": "2025-12-30T01:15:00Z", "home_team": "Atlanta Falcons", "away_team": "Los Angeles Rams", "home_team_abbrev": "ATL", @@ -25113,8 +23718,7 @@ "canonical_id": "game_nhl_2025_20251229_nsh_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Utah Club", "away_team": "Nashville Predators", "home_team_abbrev": "ARI", @@ -25131,8 +23735,7 @@ "canonical_id": "game_nhl_2025_20251229_bos_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Boston Bruins", "home_team_abbrev": "CGY", @@ -25149,8 +23752,7 @@ "canonical_id": "game_nhl_2025_20251229_la_col", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Los Angeles Kings", "home_team_abbrev": "COL", @@ -25167,8 +23769,7 @@ "canonical_id": "game_nhl_2025_20251229_sj_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "San Jose Sharks", "home_team_abbrev": "ANA", @@ -25185,8 +23786,7 @@ "canonical_id": "game_nhl_2025_20251229_van_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vancouver Canucks", "home_team_abbrev": "SEA", @@ -25203,8 +23803,7 @@ "canonical_id": "game_nhl_2025_20251229_min_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Minnesota Wild", "home_team_abbrev": "VGK", @@ -25221,8 +23820,7 @@ "canonical_id": "game_nba_2025_20251229_dal_por", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T03:30:00Z", "home_team": "Portland Blazers", "away_team": "Dallas Mavericks", "home_team_abbrev": "POR", @@ -25239,8 +23837,7 @@ "canonical_id": "game_nhl_2025_20251230_mtl_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Montreal Canadiens", "home_team_abbrev": "FLA", @@ -25257,8 +23854,7 @@ "canonical_id": "game_nhl_2025_20251230_njd_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New Jersey Devils", "home_team_abbrev": "TOR", @@ -25275,8 +23871,7 @@ "canonical_id": "game_nhl_2025_20251230_car_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PIT", @@ -25293,8 +23888,7 @@ "canonical_id": "game_nba_2025_20251230_phi_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MEM", @@ -25311,8 +23905,7 @@ "canonical_id": "game_nhl_2025_20251230_nyi_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7:30p", + "game_datetime_utc": "2025-12-31T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New York Islanders", "home_team_abbrev": "CHI", @@ -25329,8 +23922,7 @@ "canonical_id": "game_nba_2025_20251230_bos_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Boston Celtics", "home_team_abbrev": "UTA", @@ -25347,8 +23939,7 @@ "canonical_id": "game_nhl_2025_20251230_phi_van", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "VAN", @@ -25365,8 +23956,7 @@ "canonical_id": "game_nba_2025_20251230_det_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7:30p", + "game_datetime_utc": "2025-12-31T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Detroit Pistons", "home_team_abbrev": "LAL", @@ -25383,8 +23973,7 @@ "canonical_id": "game_nba_2025_20251230_sac_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "8p", + "game_datetime_utc": "2025-12-31T04:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAC", @@ -25401,8 +23990,7 @@ "canonical_id": "game_nhl_2025_20251231_nyr_was", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "12:30p", + "game_datetime_utc": "2025-12-31T17:30:00Z", "home_team": "Washington Capitals", "away_team": "New York Rangers", "home_team_abbrev": "WAS", @@ -25419,8 +24007,7 @@ "canonical_id": "game_nba_2025_20251231_gsw_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Golden State Warriors", "home_team_abbrev": "CHA", @@ -25437,8 +24024,7 @@ "canonical_id": "game_nba_2025_20251231_orl_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "3p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Indiana Pacers", "away_team": "Orlando Magic", "home_team_abbrev": "IND", @@ -25455,8 +24041,7 @@ "canonical_id": "game_nba_2025_20251231_min_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "3p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "ATL", @@ -25473,8 +24058,7 @@ "canonical_id": "game_nhl_2025_20251231_nsh_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "12p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Nashville Predators", "home_team_abbrev": "VGK", @@ -25491,8 +24075,7 @@ "canonical_id": "game_nba_2025_20251231_phx_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "2:30p", + "game_datetime_utc": "2025-12-31T20:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Phoenix Suns", "home_team_abbrev": "CLE", @@ -25509,8 +24092,7 @@ "canonical_id": "game_nhl_2025_20251231_tb_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T21:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "ANA", @@ -25527,8 +24109,7 @@ "canonical_id": "game_nhl_2025_20251231_min_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Minnesota Wild", "home_team_abbrev": "SJ", @@ -25545,8 +24126,7 @@ "canonical_id": "game_nhl_2025_20251231_wpg_det", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "6:30p", + "game_datetime_utc": "2025-12-31T23:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Winnipeg Jets", "home_team_abbrev": "DET", @@ -25563,8 +24143,7 @@ "canonical_id": "game_nba_2025_20251231_nop_chi", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "6p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHI", @@ -25581,8 +24160,7 @@ "canonical_id": "game_nba_2025_20251231_nyk_sas", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "6p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New York Knicks", "home_team_abbrev": "SAS", @@ -25599,8 +24177,7 @@ "canonical_id": "game_nhl_2025_20251231_njd_cbj", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New Jersey Devils", "home_team_abbrev": "CBJ", @@ -25617,8 +24194,7 @@ "canonical_id": "game_nba_2025_20251231_den_tor", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Denver Nuggets", "home_team_abbrev": "TOR", @@ -25635,8 +24211,7 @@ "canonical_id": "game_nba_2025_20251231_was_mil", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Washington Wizards", "home_team_abbrev": "MIL", @@ -25653,8 +24228,7 @@ "canonical_id": "game_nba_2025_20251231_por_okc", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Portland Blazers", "home_team_abbrev": "OKC", @@ -25671,8 +24245,7 @@ "canonical_id": "game_nhl_2025_20251231_buf_dal", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Buffalo Sabres", "home_team_abbrev": "DAL", @@ -25689,8 +24262,7 @@ "canonical_id": "game_nhl_2025_20251231_stl_col", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "St. Louis Blues", "home_team_abbrev": "COL", @@ -25707,8 +24279,7 @@ "canonical_id": "game_nhl_2025_20251231_bos_edm", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T02:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Boston Bruins", "home_team_abbrev": "EDM", @@ -25725,8 +24296,7 @@ "canonical_id": "game_nhl_2025_20251231_phi_cgy", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CGY", @@ -25743,8 +24313,7 @@ "canonical_id": "game_nhl_2025_20260101_was_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "1p", + "game_datetime_utc": "2026-01-01T18:00:00Z", "home_team": "Ottawa Senators", "away_team": "Washington Capitals", "home_team_abbrev": "OTT", @@ -25761,8 +24330,7 @@ "canonical_id": "game_nhl_2025_20260101_ari_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "3p", + "game_datetime_utc": "2026-01-01T20:00:00Z", "home_team": "New York Islanders", "away_team": "Utah Club", "home_team_abbrev": "NYI", @@ -25779,8 +24347,7 @@ "canonical_id": "game_nba_2025_20260101_hou_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "6p", + "game_datetime_utc": "2026-01-01T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Houston Rockets", "home_team_abbrev": "BKN", @@ -25797,8 +24364,7 @@ "canonical_id": "game_nba_2025_20260101_mia_det", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Miami Heat", "home_team_abbrev": "DET", @@ -25815,8 +24381,7 @@ "canonical_id": "game_nhl_2025_20260101_tb_la", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "4p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "LA", @@ -25833,8 +24398,7 @@ "canonical_id": "game_nhl_2025_20260101_mtl_car", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Montreal Canadiens", "home_team_abbrev": "CAR", @@ -25851,8 +24415,7 @@ "canonical_id": "game_nhl_2025_20260101_det_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Detroit Red Wings", "home_team_abbrev": "PIT", @@ -25869,8 +24432,7 @@ "canonical_id": "game_nhl_2025_20260101_wpg_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Winnipeg Jets", "home_team_abbrev": "TOR", @@ -25887,8 +24449,7 @@ "canonical_id": "game_nba_2025_20260101_phi_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DAL", @@ -25905,8 +24466,7 @@ "canonical_id": "game_nhl_2025_20260101_dal_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Dallas Stars", "home_team_abbrev": "CHI", @@ -25923,8 +24483,7 @@ "canonical_id": "game_nba_2025_20260101_bos_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Boston Celtics", "home_team_abbrev": "SAC", @@ -25941,8 +24500,7 @@ "canonical_id": "game_nhl_2025_20260101_nsh_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Nashville Predators", "home_team_abbrev": "SEA", @@ -25959,8 +24517,7 @@ "canonical_id": "game_nba_2025_20260101_uta_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Utah Jazz", "home_team_abbrev": "LAC", @@ -25977,8 +24534,7 @@ "canonical_id": "game_nhl_2025_20260102_vgk_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "2p", + "game_datetime_utc": "2026-01-02T20:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vegas Golden Knights", "home_team_abbrev": "STL", @@ -25995,8 +24551,7 @@ "canonical_id": "game_nba_2025_20260102_brk_was", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Brooklyn Nets", "home_team_abbrev": "WAS", @@ -26013,8 +24568,7 @@ "canonical_id": "game_nba_2025_20260102_sas_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "San Antonio Spurs", "home_team_abbrev": "IND", @@ -26031,8 +24585,7 @@ "canonical_id": "game_nba_2025_20260102_atl_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T00:30:00Z", "home_team": "New York Knicks", "away_team": "Atlanta Hawks", "home_team_abbrev": "NYK", @@ -26049,8 +24602,7 @@ "canonical_id": "game_nba_2025_20260102_den_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "6:30p", + "game_datetime_utc": "2026-01-03T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Denver Nuggets", "home_team_abbrev": "CLE", @@ -26067,8 +24619,7 @@ "canonical_id": "game_nba_2025_20260102_por_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -26085,8 +24636,7 @@ "canonical_id": "game_nba_2025_20260102_orl_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Orlando Magic", "home_team_abbrev": "CHI", @@ -26103,8 +24653,7 @@ "canonical_id": "game_nba_2025_20260102_cho_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIL", @@ -26121,8 +24670,7 @@ "canonical_id": "game_nhl_2025_20260102_nyr_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "8p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Rangers", "home_team_abbrev": "FLA", @@ -26139,8 +24687,7 @@ "canonical_id": "game_nba_2025_20260102_sac_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "9p", + "game_datetime_utc": "2026-01-03T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Sacramento Kings", "home_team_abbrev": "PHX", @@ -26157,8 +24704,7 @@ "canonical_id": "game_nba_2025_20260102_okc_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "GSW", @@ -26175,8 +24721,7 @@ "canonical_id": "game_nba_2025_20260102_mem_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAL", @@ -26193,8 +24738,7 @@ "canonical_id": "game_nhl_2025_20260102_min_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Minnesota Wild", "home_team_abbrev": "ANA", @@ -26211,8 +24755,7 @@ "canonical_id": "game_nhl_2025_20260102_sea_van", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Vancouver Canucks", "away_team": "Seattle Kraken", "home_team_abbrev": "VAN", @@ -26229,8 +24772,7 @@ "canonical_id": "game_nhl_2025_20260103_pit_det", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "12p", + "game_datetime_utc": "2026-01-03T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "DET", @@ -26247,8 +24789,7 @@ "canonical_id": "game_nhl_2025_20260103_ari_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T20:00:00Z", "home_team": "New Jersey Devils", "away_team": "Utah Club", "home_team_abbrev": "NJ", @@ -26265,8 +24806,7 @@ "canonical_id": "game_nhl_2025_20260103_buf_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T20:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Buffalo Sabres", "home_team_abbrev": "CBJ", @@ -26283,8 +24823,7 @@ "canonical_id": "game_nhl_2025_20260103_phi_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "1:30p", + "game_datetime_utc": "2026-01-03T20:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "EDM", @@ -26301,8 +24840,7 @@ "canonical_id": "game_nhl_2025_20260103_tb_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "1p", + "game_datetime_utc": "2026-01-03T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "SJ", @@ -26319,8 +24857,7 @@ "canonical_id": "game_nhl_2025_20260103_mtl_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T21:00:00Z", "home_team": "St. Louis Blues", "away_team": "Montreal Canadiens", "home_team_abbrev": "STL", @@ -26337,8 +24874,7 @@ "canonical_id": "game_nfl_2026_20260103_car_tb", "sport": "NFL", "season": "2026", - "date": "2026-01-03", - "time": "4:30p", + "game_datetime_utc": "2026-01-03T21:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Carolina Panthers", "home_team_abbrev": "TB", @@ -26355,8 +24891,7 @@ "canonical_id": "game_nba_2025_20260103_min_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-03T22:00:00Z", "home_team": "Miami Heat", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MIA", @@ -26373,8 +24908,7 @@ "canonical_id": "game_nhl_2025_20260103_wpg_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Winnipeg Jets", "home_team_abbrev": "OTT", @@ -26391,8 +24925,7 @@ "canonical_id": "game_nhl_2025_20260103_nsh_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Nashville Predators", "home_team_abbrev": "CGY", @@ -26409,8 +24942,7 @@ "canonical_id": "game_nhl_2025_20260103_chi_was", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WAS", @@ -26427,8 +24959,7 @@ "canonical_id": "game_nhl_2025_20260103_col_car", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Colorado Avalanche", "home_team_abbrev": "CAR", @@ -26445,8 +24976,7 @@ "canonical_id": "game_nhl_2025_20260103_tor_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "New York Islanders", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYI", @@ -26463,8 +24993,7 @@ "canonical_id": "game_nba_2025_20260103_phi_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NYK", @@ -26481,8 +25010,7 @@ "canonical_id": "game_nba_2025_20260103_atl_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Atlanta Hawks", "home_team_abbrev": "TOR", @@ -26499,8 +25027,7 @@ "canonical_id": "game_nba_2025_20260103_por_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Portland Blazers", "home_team_abbrev": "SAS", @@ -26517,8 +25044,7 @@ "canonical_id": "game_nba_2025_20260103_cho_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Charlotte Hornets", "home_team_abbrev": "CHI", @@ -26535,8 +25061,7 @@ "canonical_id": "game_nfl_2026_20260104_sea_sf", "sport": "NFL", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "San Francisco 49ers", "away_team": "Seattle Seahawks", "home_team_abbrev": "SF", @@ -26553,8 +25078,7 @@ "canonical_id": "game_nba_2025_20260103_hou_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Houston Rockets", "home_team_abbrev": "DAL", @@ -26571,8 +25095,7 @@ "canonical_id": "game_nhl_2025_20260103_min_la", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "6p", + "game_datetime_utc": "2026-01-04T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Minnesota Wild", "home_team_abbrev": "LA", @@ -26589,8 +25112,7 @@ "canonical_id": "game_nba_2025_20260103_uta_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Utah Jazz", "home_team_abbrev": "GSW", @@ -26607,8 +25129,7 @@ "canonical_id": "game_nhl_2025_20260103_bos_van", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Boston Bruins", "home_team_abbrev": "VAN", @@ -26625,8 +25146,7 @@ "canonical_id": "game_nba_2025_20260103_bos_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Boston Celtics", "home_team_abbrev": "LAC", @@ -26643,8 +25163,7 @@ "canonical_id": "game_nfl_2026_20260104_ind_hou", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "12p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Houston Texans", "away_team": "Indianapolis Colts", "home_team_abbrev": "HOU", @@ -26661,8 +25180,7 @@ "canonical_id": "game_nfl_2026_20260104_gb_min", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "12p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Green Bay Packers", "home_team_abbrev": "MIN", @@ -26679,8 +25197,7 @@ "canonical_id": "game_nfl_2026_20260104_cle_cin", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Cleveland Browns", "home_team_abbrev": "CIN", @@ -26697,8 +25214,7 @@ "canonical_id": "game_nfl_2026_20260104_no_atl", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "New Orleans Saints", "home_team_abbrev": "ATL", @@ -26715,8 +25231,7 @@ "canonical_id": "game_nfl_2026_20260104_ten_jax", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Tennessee Titans", "home_team_abbrev": "JAX", @@ -26733,8 +25248,7 @@ "canonical_id": "game_nfl_2026_20260104_dal_nyg", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "New York Giants", "away_team": "Dallas Cowboys", "home_team_abbrev": "NYG", @@ -26751,8 +25265,7 @@ "canonical_id": "game_nba_2025_20260104_det_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T19:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Detroit Pistons", "home_team_abbrev": "CLE", @@ -26769,8 +25282,7 @@ "canonical_id": "game_nhl_2025_20260104_mtl_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Montreal Canadiens", "home_team_abbrev": "DAL", @@ -26787,8 +25299,7 @@ "canonical_id": "game_nba_2025_20260104_ind_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "3p", + "game_datetime_utc": "2026-01-04T20:00:00Z", "home_team": "Orlando Magic", "away_team": "Indiana Pacers", "home_team_abbrev": "ORL", @@ -26805,8 +25316,7 @@ "canonical_id": "game_nhl_2025_20260104_pit_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "3p", + "game_datetime_utc": "2026-01-04T20:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CBJ", @@ -26823,8 +25333,7 @@ "canonical_id": "game_nba_2025_20260104_den_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "3:30p", + "game_datetime_utc": "2026-01-04T20:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Denver Nuggets", "home_team_abbrev": "BKN", @@ -26841,8 +25350,7 @@ "canonical_id": "game_nfl_2026_20260104_kc_lv", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Las Vegas Raiders", "away_team": "Kansas City Chiefs", "home_team_abbrev": "LV", @@ -26859,8 +25367,7 @@ "canonical_id": "game_nfl_2026_20260104_was_phi", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Philadelphia Eagles", "away_team": "Washington Commanders", "home_team_abbrev": "PHI", @@ -26877,8 +25384,7 @@ "canonical_id": "game_nfl_2026_20260104_mia_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "New England Patriots", "away_team": "Miami Dolphins", "home_team_abbrev": "NE", @@ -26895,8 +25401,7 @@ "canonical_id": "game_nfl_2026_20260104_ari_lar", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Arizona Cardinals", "home_team_abbrev": "LAR", @@ -26913,8 +25418,7 @@ "canonical_id": "game_nfl_2026_20260104_lac_den", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "2:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DEN", @@ -26931,8 +25435,7 @@ "canonical_id": "game_nfl_2026_20260104_det_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "3:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Chicago Bears", "away_team": "Detroit Lions", "home_team_abbrev": "CHI", @@ -26949,8 +25452,7 @@ "canonical_id": "game_nfl_2026_20260104_nyj_buf", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "New York Jets", "home_team_abbrev": "BUF", @@ -26967,8 +25469,7 @@ "canonical_id": "game_nhl_2025_20260104_col_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "5p", + "game_datetime_utc": "2026-01-04T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Colorado Avalanche", "home_team_abbrev": "FLA", @@ -26985,8 +25486,7 @@ "canonical_id": "game_nba_2025_20260104_min_was", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-04T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "WAS", @@ -27003,8 +25503,7 @@ "canonical_id": "game_nba_2025_20260104_nop_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-04T23:00:00Z", "home_team": "Miami Heat", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIA", @@ -27021,8 +25520,7 @@ "canonical_id": "game_nhl_2025_20260104_vgk_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-05T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CHI", @@ -27039,8 +25537,7 @@ "canonical_id": "game_nhl_2025_20260104_car_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "7p", + "game_datetime_utc": "2026-01-05T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NJ", @@ -27057,8 +25554,7 @@ "canonical_id": "game_nba_2025_20260104_okc_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "8p", + "game_datetime_utc": "2026-01-05T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHX", @@ -27075,8 +25571,7 @@ "canonical_id": "game_nfl_2026_20260105_bal_pit", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "8:20p", + "game_datetime_utc": "2026-01-05T01:20:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Baltimore Ravens", "home_team_abbrev": "PIT", @@ -27093,8 +25588,7 @@ "canonical_id": "game_nba_2025_20260104_mil_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-05T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Milwaukee Bucks", "home_team_abbrev": "SAC", @@ -27111,8 +25605,7 @@ "canonical_id": "game_nba_2025_20260104_mem_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6:30p", + "game_datetime_utc": "2026-01-05T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAL", @@ -27129,8 +25622,7 @@ "canonical_id": "game_nba_2025_20260105_nyk_det", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "New York Knicks", "home_team_abbrev": "DET", @@ -27147,8 +25639,7 @@ "canonical_id": "game_nhl_2025_20260105_ana_was", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Anaheim Ducks", "home_team_abbrev": "WAS", @@ -27165,8 +25656,7 @@ "canonical_id": "game_nhl_2025_20260105_ari_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Utah Club", "home_team_abbrev": "NYR", @@ -27183,8 +25673,7 @@ "canonical_id": "game_nba_2025_20260105_atl_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Atlanta Hawks", "home_team_abbrev": "TOR", @@ -27201,8 +25690,7 @@ "canonical_id": "game_nba_2025_20260105_chi_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Chicago Bulls", "home_team_abbrev": "BOS", @@ -27219,8 +25707,7 @@ "canonical_id": "game_nhl_2025_20260105_det_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Detroit Red Wings", "home_team_abbrev": "OTT", @@ -27237,8 +25724,7 @@ "canonical_id": "game_nba_2025_20260105_cho_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Charlotte Hornets", "home_team_abbrev": "OKC", @@ -27255,8 +25741,7 @@ "canonical_id": "game_nba_2025_20260105_phx_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Phoenix Suns", "home_team_abbrev": "HOU", @@ -27273,8 +25758,7 @@ "canonical_id": "game_nba_2025_20260105_den_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "5:30p", + "game_datetime_utc": "2026-01-06T01:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Denver Nuggets", "home_team_abbrev": "PHI", @@ -27291,8 +25775,7 @@ "canonical_id": "game_nhl_2025_20260105_sea_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Seattle Kraken", "home_team_abbrev": "CGY", @@ -27309,8 +25792,7 @@ "canonical_id": "game_nba_2025_20260105_uta_por", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Utah Jazz", "home_team_abbrev": "POR", @@ -27327,8 +25809,7 @@ "canonical_id": "game_nba_2025_20260105_gsw_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAC", @@ -27345,8 +25826,7 @@ "canonical_id": "game_nhl_2025_20260105_min_la", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Minnesota Wild", "home_team_abbrev": "LA", @@ -27363,8 +25843,7 @@ "canonical_id": "game_nba_2025_20260106_cle_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "IND", @@ -27381,8 +25860,7 @@ "canonical_id": "game_nba_2025_20260106_orl_was", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Orlando Magic", "home_team_abbrev": "WAS", @@ -27399,8 +25877,7 @@ "canonical_id": "game_nhl_2025_20260106_van_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Vancouver Canucks", "home_team_abbrev": "BUF", @@ -27417,8 +25894,7 @@ "canonical_id": "game_nhl_2025_20260106_col_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Colorado Avalanche", "home_team_abbrev": "TB", @@ -27435,8 +25911,7 @@ "canonical_id": "game_nhl_2025_20260106_ana_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Anaheim Ducks", "home_team_abbrev": "PHI", @@ -27453,8 +25928,7 @@ "canonical_id": "game_nhl_2025_20260106_dal_car", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Dallas Stars", "home_team_abbrev": "CAR", @@ -27471,8 +25945,7 @@ "canonical_id": "game_nhl_2025_20260106_njd_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7:30p", + "game_datetime_utc": "2026-01-07T00:30:00Z", "home_team": "New York Islanders", "away_team": "New Jersey Devils", "home_team_abbrev": "NYI", @@ -27489,8 +25962,7 @@ "canonical_id": "game_nhl_2025_20260106_fla_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7:30p", + "game_datetime_utc": "2026-01-07T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Florida Panthers", "home_team_abbrev": "TOR", @@ -27507,8 +25979,7 @@ "canonical_id": "game_nba_2025_20260106_sas_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "San Antonio Spurs", "home_team_abbrev": "MEM", @@ -27525,8 +25996,7 @@ "canonical_id": "game_nba_2025_20260106_mia_min", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Miami Heat", "home_team_abbrev": "MIN", @@ -27543,8 +26013,7 @@ "canonical_id": "game_nba_2025_20260106_lal_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NOP", @@ -27561,8 +26030,7 @@ "canonical_id": "game_nhl_2025_20260106_vgk_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WPG", @@ -27579,8 +26047,7 @@ "canonical_id": "game_nhl_2025_20260106_nsh_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Nashville Predators", "home_team_abbrev": "EDM", @@ -27597,8 +26064,7 @@ "canonical_id": "game_nhl_2025_20260106_bos_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Boston Bruins", "home_team_abbrev": "SEA", @@ -27615,8 +26081,7 @@ "canonical_id": "game_nhl_2025_20260106_cbj_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "SJ", @@ -27633,8 +26098,7 @@ "canonical_id": "game_nba_2025_20260106_dal_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "8p", + "game_datetime_utc": "2026-01-07T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAC", @@ -27651,8 +26115,7 @@ "canonical_id": "game_nba_2025_20260107_chi_det", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Chicago Bulls", "home_team_abbrev": "DET", @@ -27669,8 +26132,7 @@ "canonical_id": "game_nba_2025_20260107_den_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Denver Nuggets", "home_team_abbrev": "BOS", @@ -27687,8 +26149,7 @@ "canonical_id": "game_nba_2025_20260107_was_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "4p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Washington Wizards", "home_team_abbrev": "PHI", @@ -27705,8 +26166,7 @@ "canonical_id": "game_nba_2025_20260107_tor_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Toronto Raptors", "home_team_abbrev": "CHA", @@ -27723,8 +26183,7 @@ "canonical_id": "game_nhl_2025_20260107_dal_was", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Dallas Stars", "home_team_abbrev": "WAS", @@ -27741,8 +26200,7 @@ "canonical_id": "game_nba_2025_20260107_orl_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Orlando Magic", "home_team_abbrev": "BKN", @@ -27759,8 +26217,7 @@ "canonical_id": "game_nba_2025_20260107_lac_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "New York Knicks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NYK", @@ -27777,8 +26234,7 @@ "canonical_id": "game_nba_2025_20260107_nop_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "ATL", @@ -27795,8 +26251,7 @@ "canonical_id": "game_nhl_2025_20260107_cgy_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Calgary Flames", "home_team_abbrev": "MTL", @@ -27813,8 +26268,7 @@ "canonical_id": "game_nba_2025_20260107_uta_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Utah Jazz", "home_team_abbrev": "OKC", @@ -27831,8 +26285,7 @@ "canonical_id": "game_nba_2025_20260107_phx_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Phoenix Suns", "home_team_abbrev": "MEM", @@ -27849,8 +26302,7 @@ "canonical_id": "game_nba_2025_20260107_lal_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "8:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAS", @@ -27867,8 +26319,7 @@ "canonical_id": "game_nhl_2025_20260107_ott_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "Utah Club", "away_team": "Ottawa Senators", "home_team_abbrev": "ARI", @@ -27885,8 +26336,7 @@ "canonical_id": "game_nhl_2025_20260107_stl_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "8:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "St. Louis Blues", "home_team_abbrev": "CHI", @@ -27903,8 +26353,7 @@ "canonical_id": "game_nba_2025_20260107_mil_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "GSW", @@ -27921,8 +26370,7 @@ "canonical_id": "game_nba_2025_20260107_hou_por", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Houston Rockets", "home_team_abbrev": "POR", @@ -27939,8 +26387,7 @@ "canonical_id": "game_nhl_2025_20260107_sj_la", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "San Jose Sharks", "home_team_abbrev": "LA", @@ -27957,8 +26404,7 @@ "canonical_id": "game_nba_2025_20260108_ind_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Indiana Pacers", "home_team_abbrev": "CHA", @@ -27975,8 +26421,7 @@ "canonical_id": "game_nhl_2025_20260108_van_det", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Vancouver Canucks", "home_team_abbrev": "DET", @@ -27993,8 +26438,7 @@ "canonical_id": "game_nhl_2025_20260108_fla_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Florida Panthers", "home_team_abbrev": "MTL", @@ -28011,8 +26455,7 @@ "canonical_id": "game_nhl_2025_20260108_tor_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PHI", @@ -28029,8 +26472,7 @@ "canonical_id": "game_nhl_2025_20260108_njd_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New Jersey Devils", "home_team_abbrev": "PIT", @@ -28047,8 +26489,7 @@ "canonical_id": "game_nhl_2025_20260108_buf_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "New York Rangers", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYR", @@ -28065,8 +26506,7 @@ "canonical_id": "game_nhl_2025_20260108_cgy_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Calgary Flames", "home_team_abbrev": "BOS", @@ -28083,8 +26523,7 @@ "canonical_id": "game_nhl_2025_20260108_ana_car", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Anaheim Ducks", "home_team_abbrev": "CAR", @@ -28101,8 +26540,7 @@ "canonical_id": "game_nba_2025_20260108_cle_min", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIN", @@ -28119,8 +26557,7 @@ "canonical_id": "game_nhl_2025_20260108_nyi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Nashville Predators", "away_team": "New York Islanders", "home_team_abbrev": "NSH", @@ -28137,8 +26574,7 @@ "canonical_id": "game_nhl_2025_20260108_edm_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Edmonton Oilers", "home_team_abbrev": "WPG", @@ -28155,8 +26591,7 @@ "canonical_id": "game_nba_2025_20260108_dal_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Dallas Mavericks", "home_team_abbrev": "UTA", @@ -28173,8 +26608,7 @@ "canonical_id": "game_nhl_2025_20260108_ott_col", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Ottawa Senators", "home_team_abbrev": "COL", @@ -28191,8 +26625,7 @@ "canonical_id": "game_nhl_2025_20260108_min_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Minnesota Wild", "home_team_abbrev": "SEA", @@ -28209,8 +26642,7 @@ "canonical_id": "game_nhl_2025_20260108_cbj_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "VGK", @@ -28227,8 +26659,7 @@ "canonical_id": "game_nba_2025_20260109_phi_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ORL", @@ -28245,8 +26676,7 @@ "canonical_id": "game_nba_2025_20260109_tor_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Toronto Raptors", "home_team_abbrev": "BOS", @@ -28263,8 +26693,7 @@ "canonical_id": "game_nba_2025_20260109_nop_was", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Washington Wizards", "away_team": "New Orleans Pelicans", "home_team_abbrev": "WAS", @@ -28281,8 +26710,7 @@ "canonical_id": "game_nba_2025_20260109_lac_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7:30p", + "game_datetime_utc": "2026-01-10T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "BKN", @@ -28299,8 +26727,7 @@ "canonical_id": "game_nba_2025_20260109_okc_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MEM", @@ -28317,8 +26744,7 @@ "canonical_id": "game_nhl_2025_20260109_was_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Washington Capitals", "home_team_abbrev": "CHI", @@ -28335,8 +26761,7 @@ "canonical_id": "game_nhl_2025_20260109_la_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Los Angeles Kings", "home_team_abbrev": "WPG", @@ -28353,8 +26778,7 @@ "canonical_id": "game_nba_2025_20260109_nyk_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "9p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New York Knicks", "home_team_abbrev": "PHX", @@ -28371,8 +26795,7 @@ "canonical_id": "game_nba_2025_20260109_atl_den", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Atlanta Hawks", "home_team_abbrev": "DEN", @@ -28389,8 +26812,7 @@ "canonical_id": "game_nhl_2025_20260109_stl_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Utah Club", "away_team": "St. Louis Blues", "home_team_abbrev": "ARI", @@ -28407,8 +26829,7 @@ "canonical_id": "game_nba_2025_20260109_sac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Sacramento Kings", "home_team_abbrev": "GSW", @@ -28425,8 +26846,7 @@ "canonical_id": "game_nba_2025_20260109_hou_por", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Houston Rockets", "home_team_abbrev": "POR", @@ -28443,8 +26863,7 @@ "canonical_id": "game_nba_2025_20260109_mil_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7:30p", + "game_datetime_utc": "2026-01-10T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "LAL", @@ -28461,8 +26880,7 @@ "canonical_id": "game_nba_2025_20260110_min_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "12p", + "game_datetime_utc": "2026-01-10T18:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CLE", @@ -28479,8 +26897,7 @@ "canonical_id": "game_nhl_2025_20260110_nyr_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "1p", + "game_datetime_utc": "2026-01-10T18:00:00Z", "home_team": "Boston Bruins", "away_team": "New York Rangers", "home_team_abbrev": "BOS", @@ -28497,8 +26914,7 @@ "canonical_id": "game_nhl_2025_20260110_cgy_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "3:30p", + "game_datetime_utc": "2026-01-10T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Calgary Flames", "home_team_abbrev": "PIT", @@ -28515,8 +26931,7 @@ "canonical_id": "game_nhl_2025_20260110_cbj_col", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "2p", + "game_datetime_utc": "2026-01-10T21:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "COL", @@ -28533,8 +26948,7 @@ "canonical_id": "game_nhl_2025_20260110_dal_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "1p", + "game_datetime_utc": "2026-01-10T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Dallas Stars", "home_team_abbrev": "SJ", @@ -28551,8 +26965,7 @@ "canonical_id": "game_nfl_2026_20260110_lar_car", "sport": "NFL", "season": "2026", - "date": "2026-01-10", - "time": "4:30p", + "game_datetime_utc": "2026-01-10T21:30:00Z", "home_team": "Carolina Panthers", "away_team": "Los Angeles Rams", "home_team_abbrev": "CAR", @@ -28569,8 +26982,7 @@ "canonical_id": "game_nba_2025_20260110_mia_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Miami Heat", "home_team_abbrev": "IND", @@ -28587,8 +26999,7 @@ "canonical_id": "game_nhl_2025_20260110_ana_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Anaheim Ducks", "home_team_abbrev": "BUF", @@ -28605,8 +27016,7 @@ "canonical_id": "game_nhl_2025_20260110_tb_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PHI", @@ -28623,8 +27033,7 @@ "canonical_id": "game_nhl_2025_20260110_fla_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Florida Panthers", "home_team_abbrev": "OTT", @@ -28641,8 +27050,7 @@ "canonical_id": "game_nhl_2025_20260110_det_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Detroit Red Wings", "home_team_abbrev": "MTL", @@ -28659,8 +27067,7 @@ "canonical_id": "game_nhl_2025_20260110_van_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Vancouver Canucks", "home_team_abbrev": "TOR", @@ -28677,8 +27084,7 @@ "canonical_id": "game_nhl_2025_20260110_sea_car", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Seattle Kraken", "home_team_abbrev": "CAR", @@ -28695,8 +27101,7 @@ "canonical_id": "game_nba_2025_20260110_lac_det", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7:30p", + "game_datetime_utc": "2026-01-11T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DET", @@ -28713,8 +27118,7 @@ "canonical_id": "game_nba_2025_20260110_dal_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Dallas Mavericks", "home_team_abbrev": "CHI", @@ -28731,8 +27135,7 @@ "canonical_id": "game_nba_2025_20260110_sas_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "8p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Boston Celtics", "away_team": "San Antonio Spurs", "home_team_abbrev": "BOS", @@ -28749,8 +27152,7 @@ "canonical_id": "game_nfl_2026_20260111_gb_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Chicago Bears", "away_team": "Green Bay Packers", "home_team_abbrev": "CHI", @@ -28767,8 +27169,7 @@ "canonical_id": "game_nhl_2025_20260110_chi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NSH", @@ -28785,8 +27186,7 @@ "canonical_id": "game_nhl_2025_20260110_nyi_min", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "New York Islanders", "home_team_abbrev": "MIN", @@ -28803,8 +27203,7 @@ "canonical_id": "game_nba_2025_20260110_cho_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7:30p", + "game_datetime_utc": "2026-01-11T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Charlotte Hornets", "home_team_abbrev": "UTA", @@ -28821,8 +27220,7 @@ "canonical_id": "game_nhl_2025_20260110_la_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "8p", + "game_datetime_utc": "2026-01-11T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Los Angeles Kings", "home_team_abbrev": "EDM", @@ -28839,8 +27237,7 @@ "canonical_id": "game_nhl_2025_20260110_stl_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "St. Louis Blues", "home_team_abbrev": "VGK", @@ -28857,8 +27254,7 @@ "canonical_id": "game_nfl_2026_20260111_buf_jax", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "1p", + "game_datetime_utc": "2026-01-11T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Buffalo Bills", "home_team_abbrev": "JAX", @@ -28875,8 +27271,7 @@ "canonical_id": "game_nhl_2025_20260111_njd_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "1p", + "game_datetime_utc": "2026-01-11T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New Jersey Devils", "home_team_abbrev": "WPG", @@ -28893,8 +27288,7 @@ "canonical_id": "game_nba_2025_20260111_nop_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "3p", + "game_datetime_utc": "2026-01-11T20:00:00Z", "home_team": "Orlando Magic", "away_team": "New Orleans Pelicans", "home_team_abbrev": "ORL", @@ -28911,8 +27305,7 @@ "canonical_id": "game_nba_2025_20260111_brk_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "2:30p", + "game_datetime_utc": "2026-01-11T20:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Brooklyn Nets", "home_team_abbrev": "MEM", @@ -28929,8 +27322,7 @@ "canonical_id": "game_nfl_2026_20260111_sf_phi", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "4:30p", + "game_datetime_utc": "2026-01-11T21:30:00Z", "home_team": "Philadelphia Eagles", "away_team": "San Francisco 49ers", "home_team_abbrev": "PHI", @@ -28947,8 +27339,7 @@ "canonical_id": "game_nhl_2025_20260111_pit_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-11T22:00:00Z", "home_team": "Boston Bruins", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BOS", @@ -28965,8 +27356,7 @@ "canonical_id": "game_nba_2025_20260111_nyk_por", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "3p", + "game_datetime_utc": "2026-01-11T23:00:00Z", "home_team": "Portland Blazers", "away_team": "New York Knicks", "home_team_abbrev": "POR", @@ -28983,8 +27373,7 @@ "canonical_id": "game_nba_2025_20260111_phi_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-11T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "TOR", @@ -29001,8 +27390,7 @@ "canonical_id": "game_nba_2025_20260111_sas_min", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIN", @@ -29019,8 +27407,7 @@ "canonical_id": "game_nba_2025_20260111_mia_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Miami Heat", "home_team_abbrev": "OKC", @@ -29037,8 +27424,7 @@ "canonical_id": "game_nhl_2025_20260111_cbj_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Utah Club", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "ARI", @@ -29055,8 +27441,7 @@ "canonical_id": "game_nhl_2025_20260111_was_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Washington Capitals", "home_team_abbrev": "NSH", @@ -29073,8 +27458,7 @@ "canonical_id": "game_nba_2025_20260111_was_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "8p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Washington Wizards", "home_team_abbrev": "PHX", @@ -29091,8 +27475,7 @@ "canonical_id": "game_nba_2025_20260111_mil_den", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DEN", @@ -29109,8 +27492,7 @@ "canonical_id": "game_nhl_2025_20260111_vgk_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SJ", @@ -29127,8 +27509,7 @@ "canonical_id": "game_nfl_2026_20260112_lac_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "8:15p", + "game_datetime_utc": "2026-01-12T01:15:00Z", "home_team": "New England Patriots", "away_team": "Los Angeles Chargers", "home_team_abbrev": "NE", @@ -29145,8 +27526,7 @@ "canonical_id": "game_nba_2025_20260111_atl_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "5:30p", + "game_datetime_utc": "2026-01-12T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Atlanta Hawks", "home_team_abbrev": "GSW", @@ -29163,8 +27543,7 @@ "canonical_id": "game_nba_2025_20260111_hou_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Houston Rockets", "home_team_abbrev": "SAC", @@ -29181,8 +27560,7 @@ "canonical_id": "game_nba_2025_20260112_uta_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "6p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Utah Jazz", "home_team_abbrev": "CLE", @@ -29199,8 +27577,7 @@ "canonical_id": "game_nhl_2025_20260112_fla_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Florida Panthers", "home_team_abbrev": "BUF", @@ -29217,8 +27594,7 @@ "canonical_id": "game_nhl_2025_20260112_car_det", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Carolina Hurricanes", "home_team_abbrev": "DET", @@ -29235,8 +27611,7 @@ "canonical_id": "game_nhl_2025_20260112_sea_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "New York Rangers", "away_team": "Seattle Kraken", "home_team_abbrev": "NYR", @@ -29253,8 +27628,7 @@ "canonical_id": "game_nhl_2025_20260112_tb_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PHI", @@ -29271,8 +27645,7 @@ "canonical_id": "game_nba_2025_20260112_phi_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "TOR", @@ -29289,8 +27662,7 @@ "canonical_id": "game_nba_2025_20260112_bos_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Boston Celtics", "home_team_abbrev": "IND", @@ -29307,8 +27679,7 @@ "canonical_id": "game_nhl_2025_20260112_van_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Vancouver Canucks", "home_team_abbrev": "MTL", @@ -29325,8 +27696,7 @@ "canonical_id": "game_nhl_2025_20260112_njd_min", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "New Jersey Devils", "home_team_abbrev": "MIN", @@ -29343,8 +27713,7 @@ "canonical_id": "game_nfl_2026_20260113_hou_pit", "sport": "NFL", "season": "2026", - "date": "2026-01-12", - "time": "8:15p", + "game_datetime_utc": "2026-01-13T01:15:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Houston Texans", "home_team_abbrev": "PIT", @@ -29361,8 +27730,7 @@ "canonical_id": "game_nba_2025_20260112_brk_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Brooklyn Nets", "home_team_abbrev": "DAL", @@ -29379,8 +27747,7 @@ "canonical_id": "game_nhl_2025_20260112_edm_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Edmonton Oilers", "home_team_abbrev": "CHI", @@ -29397,8 +27764,7 @@ "canonical_id": "game_nba_2025_20260112_lal_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAC", @@ -29415,8 +27781,7 @@ "canonical_id": "game_nhl_2025_20260112_tor_col", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "8p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "COL", @@ -29433,8 +27798,7 @@ "canonical_id": "game_nhl_2025_20260112_dal_la", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Dallas Stars", "home_team_abbrev": "LA", @@ -29451,8 +27815,7 @@ "canonical_id": "game_nba_2025_20260112_cho_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Charlotte Hornets", "home_team_abbrev": "LAC", @@ -29469,8 +27832,7 @@ "canonical_id": "game_nhl_2025_20260113_cgy_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Calgary Flames", "home_team_abbrev": "CBJ", @@ -29487,8 +27849,7 @@ "canonical_id": "game_nhl_2025_20260113_tb_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PIT", @@ -29505,8 +27866,7 @@ "canonical_id": "game_nhl_2025_20260113_van_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Vancouver Canucks", "home_team_abbrev": "OTT", @@ -29523,8 +27883,7 @@ "canonical_id": "game_nhl_2025_20260113_mtl_was", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Montreal Canadiens", "home_team_abbrev": "WAS", @@ -29541,8 +27900,7 @@ "canonical_id": "game_nba_2025_20260113_phx_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "Miami Heat", "away_team": "Phoenix Suns", "home_team_abbrev": "MIA", @@ -29559,8 +27917,7 @@ "canonical_id": "game_nhl_2025_20260113_det_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "Boston Bruins", "away_team": "Detroit Red Wings", "home_team_abbrev": "BOS", @@ -29577,8 +27934,7 @@ "canonical_id": "game_nhl_2025_20260113_car_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "6:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "St. Louis Blues", "away_team": "Carolina Hurricanes", "home_team_abbrev": "STL", @@ -29595,8 +27951,7 @@ "canonical_id": "game_nba_2025_20260113_den_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Denver Nuggets", "home_team_abbrev": "NOP", @@ -29613,8 +27968,7 @@ "canonical_id": "game_nba_2025_20260113_chi_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Chicago Bulls", "home_team_abbrev": "HOU", @@ -29631,8 +27985,7 @@ "canonical_id": "game_nba_2025_20260113_min_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MIL", @@ -29649,8 +28002,7 @@ "canonical_id": "game_nba_2025_20260113_sas_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -29667,8 +28019,7 @@ "canonical_id": "game_nhl_2025_20260113_edm_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Edmonton Oilers", "home_team_abbrev": "NSH", @@ -29685,8 +28036,7 @@ "canonical_id": "game_nhl_2025_20260113_nyi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New York Islanders", "home_team_abbrev": "WPG", @@ -29703,8 +28053,7 @@ "canonical_id": "game_nhl_2025_20260113_tor_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "8p", + "game_datetime_utc": "2026-01-14T03:00:00Z", "home_team": "Utah Club", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "ARI", @@ -29721,8 +28070,7 @@ "canonical_id": "game_nhl_2025_20260113_dal_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Dallas Stars", "home_team_abbrev": "ANA", @@ -29739,8 +28087,7 @@ "canonical_id": "game_nba_2025_20260113_atl_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Atlanta Hawks", "home_team_abbrev": "LAL", @@ -29757,8 +28104,7 @@ "canonical_id": "game_nba_2025_20260113_por_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "8p", + "game_datetime_utc": "2026-01-14T04:00:00Z", "home_team": "Golden State Warriors", "away_team": "Portland Blazers", "home_team_abbrev": "GSW", @@ -29775,8 +28121,7 @@ "canonical_id": "game_nba_2025_20260114_tor_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Toronto Raptors", "home_team_abbrev": "IND", @@ -29793,8 +28138,7 @@ "canonical_id": "game_nba_2025_20260114_cle_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "4p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHI", @@ -29811,8 +28155,7 @@ "canonical_id": "game_nhl_2025_20260114_sea_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Seattle Kraken", "home_team_abbrev": "NJ", @@ -29829,8 +28172,7 @@ "canonical_id": "game_nhl_2025_20260114_phi_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BUF", @@ -29847,8 +28189,7 @@ "canonical_id": "game_nhl_2025_20260114_ott_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T00:30:00Z", "home_team": "New York Rangers", "away_team": "Ottawa Senators", "home_team_abbrev": "NYR", @@ -29865,8 +28206,7 @@ "canonical_id": "game_nba_2025_20260114_uta_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Utah Jazz", "home_team_abbrev": "CHI", @@ -29883,8 +28223,7 @@ "canonical_id": "game_nba_2025_20260114_brk_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Brooklyn Nets", "home_team_abbrev": "NOP", @@ -29901,8 +28240,7 @@ "canonical_id": "game_nba_2025_20260114_den_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "8:30p", + "game_datetime_utc": "2026-01-15T02:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Denver Nuggets", "home_team_abbrev": "DAL", @@ -29919,8 +28257,7 @@ "canonical_id": "game_nba_2025_20260114_nyk_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "New York Knicks", "home_team_abbrev": "SAC", @@ -29937,8 +28274,7 @@ "canonical_id": "game_nhl_2025_20260114_vgk_la", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "LA", @@ -29955,8 +28291,7 @@ "canonical_id": "game_nba_2025_20260114_was_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Washington Wizards", "home_team_abbrev": "LAC", @@ -29973,8 +28308,7 @@ "canonical_id": "game_nba_2025_20260115_mem_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "2p", + "game_datetime_utc": "2026-01-15T19:00:00Z", "home_team": "Orlando Magic", "away_team": "Memphis Grizzlies", "home_team_abbrev": "ORL", @@ -29991,8 +28325,7 @@ "canonical_id": "game_nba_2025_20260115_phx_det", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Phoenix Suns", "home_team_abbrev": "DET", @@ -30009,8 +28342,7 @@ "canonical_id": "game_nhl_2025_20260115_mtl_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Montreal Canadiens", "home_team_abbrev": "BUF", @@ -30027,8 +28359,7 @@ "canonical_id": "game_nhl_2025_20260115_phi_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "PIT", @@ -30045,8 +28376,7 @@ "canonical_id": "game_nhl_2025_20260115_van_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Vancouver Canucks", "home_team_abbrev": "CBJ", @@ -30063,8 +28393,7 @@ "canonical_id": "game_nhl_2025_20260115_sj_was", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Washington Capitals", "away_team": "San Jose Sharks", "home_team_abbrev": "WAS", @@ -30081,8 +28410,7 @@ "canonical_id": "game_nba_2025_20260115_bos_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T00:30:00Z", "home_team": "Miami Heat", "away_team": "Boston Celtics", "home_team_abbrev": "MIA", @@ -30099,8 +28427,7 @@ "canonical_id": "game_nba_2025_20260115_okc_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "6:30p", + "game_datetime_utc": "2026-01-16T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "HOU", @@ -30117,8 +28444,7 @@ "canonical_id": "game_nba_2025_20260115_mil_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Milwaukee Bucks", "home_team_abbrev": "SAS", @@ -30135,8 +28461,7 @@ "canonical_id": "game_nhl_2025_20260115_sea_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "8p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "Boston Bruins", "away_team": "Seattle Kraken", "home_team_abbrev": "BOS", @@ -30153,8 +28478,7 @@ "canonical_id": "game_nhl_2025_20260115_wpg_min", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Winnipeg Jets", "home_team_abbrev": "MIN", @@ -30171,8 +28495,7 @@ "canonical_id": "game_nba_2025_20260115_uta_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Utah Jazz", "home_team_abbrev": "DAL", @@ -30189,8 +28512,7 @@ "canonical_id": "game_nhl_2025_20260115_cgy_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Calgary Flames", "home_team_abbrev": "CHI", @@ -30207,8 +28529,7 @@ "canonical_id": "game_nhl_2025_20260115_dal_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T02:00:00Z", "home_team": "Utah Club", "away_team": "Dallas Stars", "home_team_abbrev": "ARI", @@ -30225,8 +28546,7 @@ "canonical_id": "game_nhl_2025_20260115_nyi_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New York Islanders", "home_team_abbrev": "EDM", @@ -30243,8 +28563,7 @@ "canonical_id": "game_nhl_2025_20260115_tor_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "6:30p", + "game_datetime_utc": "2026-01-16T02:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "VGK", @@ -30261,8 +28580,7 @@ "canonical_id": "game_nba_2025_20260115_atl_por", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Atlanta Hawks", "home_team_abbrev": "POR", @@ -30279,8 +28597,7 @@ "canonical_id": "game_nba_2025_20260115_nyk_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "New York Knicks", "home_team_abbrev": "GSW", @@ -30297,8 +28614,7 @@ "canonical_id": "game_nba_2025_20260115_cho_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Charlotte Hornets", "home_team_abbrev": "LAL", @@ -30315,8 +28631,7 @@ "canonical_id": "game_nba_2025_20260116_nop_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "IND", @@ -30333,8 +28648,7 @@ "canonical_id": "game_nba_2025_20260116_cle_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "4p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHI", @@ -30351,8 +28665,7 @@ "canonical_id": "game_nhl_2025_20260116_sj_det", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "San Jose Sharks", "home_team_abbrev": "DET", @@ -30369,8 +28682,7 @@ "canonical_id": "game_nhl_2025_20260116_fla_car", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Florida Panthers", "home_team_abbrev": "CAR", @@ -30387,8 +28699,7 @@ "canonical_id": "game_nba_2025_20260116_chi_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Chicago Bulls", "home_team_abbrev": "BKN", @@ -30405,8 +28716,7 @@ "canonical_id": "game_nba_2025_20260116_lac_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "TOR", @@ -30423,8 +28733,7 @@ "canonical_id": "game_nhl_2025_20260116_tb_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "STL", @@ -30441,8 +28750,7 @@ "canonical_id": "game_nhl_2025_20260116_nsh_col", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Nashville Predators", "home_team_abbrev": "COL", @@ -30459,8 +28767,7 @@ "canonical_id": "game_nba_2025_20260116_min_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "8:30p", + "game_datetime_utc": "2026-01-17T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "HOU", @@ -30477,8 +28784,7 @@ "canonical_id": "game_nba_2025_20260116_was_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Washington Wizards", "home_team_abbrev": "SAC", @@ -30495,8 +28801,7 @@ "canonical_id": "game_nhl_2025_20260116_ana_la", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Anaheim Ducks", "home_team_abbrev": "LA", @@ -30513,8 +28818,7 @@ "canonical_id": "game_nhl_2025_20260117_min_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "12:30p", + "game_datetime_utc": "2026-01-17T17:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Minnesota Wild", "home_team_abbrev": "BUF", @@ -30531,8 +28835,7 @@ "canonical_id": "game_nhl_2025_20260117_nyr_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "1p", + "game_datetime_utc": "2026-01-17T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Rangers", "home_team_abbrev": "PHI", @@ -30549,8 +28852,7 @@ "canonical_id": "game_nhl_2025_20260117_nyi_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "1p", + "game_datetime_utc": "2026-01-17T20:00:00Z", "home_team": "Calgary Flames", "away_team": "New York Islanders", "home_team_abbrev": "CGY", @@ -30567,8 +28869,7 @@ "canonical_id": "game_nfl_2026_20260117_buf_den", "sport": "NFL", "season": "2026", - "date": "2026-01-17", - "time": "2:30p", + "game_datetime_utc": "2026-01-17T21:30:00Z", "home_team": "Denver Broncos", "away_team": "Buffalo Bills", "home_team_abbrev": "DEN", @@ -30585,8 +28886,7 @@ "canonical_id": "game_nba_2025_20260117_uta_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "4p", + "game_datetime_utc": "2026-01-17T22:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Utah Jazz", "home_team_abbrev": "DAL", @@ -30603,8 +28903,7 @@ "canonical_id": "game_nhl_2025_20260117_sea_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "3p", + "game_datetime_utc": "2026-01-17T22:00:00Z", "home_team": "Utah Club", "away_team": "Seattle Kraken", "home_team_abbrev": "ARI", @@ -30621,8 +28920,7 @@ "canonical_id": "game_nhl_2025_20260117_cbj_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PIT", @@ -30639,8 +28937,7 @@ "canonical_id": "game_nhl_2025_20260117_tor_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "6p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WPG", @@ -30657,8 +28954,7 @@ "canonical_id": "game_nhl_2025_20260117_fla_was", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Florida Panthers", "home_team_abbrev": "WAS", @@ -30675,8 +28971,7 @@ "canonical_id": "game_nhl_2025_20260117_mtl_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Montreal Canadiens", "home_team_abbrev": "OTT", @@ -30693,8 +28988,7 @@ "canonical_id": "game_nhl_2025_20260117_car_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NJ", @@ -30711,8 +29005,7 @@ "canonical_id": "game_nba_2025_20260117_phx_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "New York Knicks", "away_team": "Phoenix Suns", "home_team_abbrev": "NYK", @@ -30729,8 +29022,7 @@ "canonical_id": "game_nba_2025_20260117_ind_det", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Indiana Pacers", "home_team_abbrev": "DET", @@ -30747,8 +29039,7 @@ "canonical_id": "game_nba_2025_20260117_bos_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Boston Celtics", "home_team_abbrev": "ATL", @@ -30765,8 +29056,7 @@ "canonical_id": "game_nba_2025_20260117_okc_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "8p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Miami Heat", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIA", @@ -30783,8 +29073,7 @@ "canonical_id": "game_nba_2025_20260117_min_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAS", @@ -30801,8 +29090,7 @@ "canonical_id": "game_nfl_2026_20260118_sf_sea", "sport": "NFL", "season": "2026", - "date": "2026-01-17", - "time": "5p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Seattle Seahawks", "away_team": "San Francisco 49ers", "home_team_abbrev": "SEA", @@ -30819,8 +29107,7 @@ "canonical_id": "game_nhl_2025_20260117_bos_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Boston Bruins", "home_team_abbrev": "CHI", @@ -30837,8 +29124,7 @@ "canonical_id": "game_nba_2025_20260117_cho_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "5:30p", + "game_datetime_utc": "2026-01-18T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Charlotte Hornets", "home_team_abbrev": "GSW", @@ -30855,8 +29141,7 @@ "canonical_id": "game_nba_2025_20260117_was_den", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Washington Wizards", "home_team_abbrev": "DEN", @@ -30873,8 +29158,7 @@ "canonical_id": "game_nba_2025_20260117_lal_por", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "POR", @@ -30891,8 +29175,7 @@ "canonical_id": "game_nhl_2025_20260117_edm_van", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Edmonton Oilers", "home_team_abbrev": "VAN", @@ -30909,8 +29192,7 @@ "canonical_id": "game_nhl_2025_20260117_nsh_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Nashville Predators", "home_team_abbrev": "VGK", @@ -30927,8 +29209,7 @@ "canonical_id": "game_nhl_2025_20260117_la_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Los Angeles Kings", "home_team_abbrev": "ANA", @@ -30945,8 +29226,7 @@ "canonical_id": "game_nba_2025_20260118_orl_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "11a", + "game_datetime_utc": "2026-01-18T17:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Orlando Magic", "home_team_abbrev": "MEM", @@ -30963,8 +29243,7 @@ "canonical_id": "game_nhl_2025_20260118_tb_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "1p", + "game_datetime_utc": "2026-01-18T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DAL", @@ -30981,8 +29260,7 @@ "canonical_id": "game_nfl_2026_20260118_hou_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-18", - "time": "3p", + "game_datetime_utc": "2026-01-18T20:00:00Z", "home_team": "New England Patriots", "away_team": "Houston Texans", "home_team_abbrev": "NE", @@ -30999,8 +29277,7 @@ "canonical_id": "game_nhl_2025_20260118_ott_det", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "5p", + "game_datetime_utc": "2026-01-18T22:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Ottawa Senators", "home_team_abbrev": "DET", @@ -31017,8 +29294,7 @@ "canonical_id": "game_nfl_2026_20260118_lar_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-18", - "time": "5:30p", + "game_datetime_utc": "2026-01-18T23:30:00Z", "home_team": "Chicago Bears", "away_team": "Los Angeles Rams", "home_team_abbrev": "CHI", @@ -31035,8 +29311,7 @@ "canonical_id": "game_nba_2025_20260118_nop_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "HOU", @@ -31053,8 +29328,7 @@ "canonical_id": "game_nba_2025_20260118_brk_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHI", @@ -31071,8 +29345,7 @@ "canonical_id": "game_nba_2025_20260118_cho_den", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Charlotte Hornets", "home_team_abbrev": "DEN", @@ -31089,8 +29362,7 @@ "canonical_id": "game_nhl_2025_20260118_stl_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "St. Louis Blues", "home_team_abbrev": "EDM", @@ -31107,8 +29379,7 @@ "canonical_id": "game_nba_2025_20260118_por_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Portland Blazers", "home_team_abbrev": "SAC", @@ -31125,8 +29396,7 @@ "canonical_id": "game_nba_2025_20260118_tor_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6:30p", + "game_datetime_utc": "2026-01-19T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Toronto Raptors", "home_team_abbrev": "LAL", @@ -31143,8 +29413,7 @@ "canonical_id": "game_nba_2025_20260119_mil_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "1p", + "game_datetime_utc": "2026-01-19T18:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ATL", @@ -31161,8 +29430,7 @@ "canonical_id": "game_nhl_2025_20260119_buf_car", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "1:30p", + "game_datetime_utc": "2026-01-19T18:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Buffalo Sabres", "home_team_abbrev": "CAR", @@ -31179,8 +29447,7 @@ "canonical_id": "game_nba_2025_20260119_okc_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "1:30p", + "game_datetime_utc": "2026-01-19T19:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CLE", @@ -31197,8 +29464,7 @@ "canonical_id": "game_nba_2025_20260119_lac_was", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "3p", + "game_datetime_utc": "2026-01-19T20:00:00Z", "home_team": "Washington Wizards", "away_team": "Los Angeles Clippers", "home_team_abbrev": "WAS", @@ -31215,8 +29481,7 @@ "canonical_id": "game_nhl_2025_20260119_was_col", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "2p", + "game_datetime_utc": "2026-01-19T21:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Washington Capitals", "home_team_abbrev": "COL", @@ -31233,8 +29498,7 @@ "canonical_id": "game_nba_2025_20260119_dal_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "5p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "New York Knicks", "away_team": "Dallas Mavericks", "home_team_abbrev": "NYK", @@ -31251,8 +29515,7 @@ "canonical_id": "game_nba_2025_20260119_uta_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "4p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Utah Jazz", "home_team_abbrev": "SAS", @@ -31269,8 +29532,7 @@ "canonical_id": "game_nhl_2025_20260119_pit_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "2p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "Seattle Kraken", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "SEA", @@ -31287,8 +29549,7 @@ "canonical_id": "game_nhl_2025_20260119_sj_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "6p", + "game_datetime_utc": "2026-01-19T23:00:00Z", "home_team": "Florida Panthers", "away_team": "San Jose Sharks", "home_team_abbrev": "FLA", @@ -31305,8 +29566,7 @@ "canonical_id": "game_nba_2025_20260119_ind_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "4p", + "game_datetime_utc": "2026-01-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Indiana Pacers", "home_team_abbrev": "PHI", @@ -31323,8 +29583,7 @@ "canonical_id": "game_nba_2025_20260119_phx_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Phoenix Suns", "home_team_abbrev": "BKN", @@ -31341,8 +29600,7 @@ "canonical_id": "game_nhl_2025_20260119_min_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Minnesota Wild", "home_team_abbrev": "TOR", @@ -31359,8 +29617,7 @@ "canonical_id": "game_nba_2025_20260119_bos_det", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "8p", + "game_datetime_utc": "2026-01-20T01:00:00Z", "home_team": "Detroit Pistons", "away_team": "Boston Celtics", "home_team_abbrev": "DET", @@ -31377,8 +29634,7 @@ "canonical_id": "game_nhl_2025_20260119_phi_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "5p", + "game_datetime_utc": "2026-01-20T01:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Philadelphia Flyers", "home_team_abbrev": "VGK", @@ -31395,8 +29651,7 @@ "canonical_id": "game_nhl_2025_20260119_wpg_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Winnipeg Jets", "home_team_abbrev": "CHI", @@ -31413,8 +29668,7 @@ "canonical_id": "game_nhl_2025_20260119_njd_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T02:00:00Z", "home_team": "Calgary Flames", "away_team": "New Jersey Devils", "home_team_abbrev": "CGY", @@ -31431,8 +29685,7 @@ "canonical_id": "game_nba_2025_20260119_mia_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Miami Heat", "home_team_abbrev": "GSW", @@ -31449,8 +29702,7 @@ "canonical_id": "game_nhl_2025_20260119_nyi_van", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New York Islanders", "home_team_abbrev": "VAN", @@ -31467,8 +29719,7 @@ "canonical_id": "game_nhl_2025_20260119_nyr_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New York Rangers", "home_team_abbrev": "ANA", @@ -31485,8 +29736,7 @@ "canonical_id": "game_nba_2025_20260120_phx_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "4p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Phoenix Suns", "home_team_abbrev": "PHI", @@ -31503,8 +29753,7 @@ "canonical_id": "game_nhl_2025_20260120_ott_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Ottawa Senators", "home_team_abbrev": "CBJ", @@ -31521,8 +29770,7 @@ "canonical_id": "game_nhl_2025_20260120_min_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Minnesota Wild", "home_team_abbrev": "MTL", @@ -31539,8 +29787,7 @@ "canonical_id": "game_nhl_2025_20260120_sj_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "San Jose Sharks", "home_team_abbrev": "TB", @@ -31557,8 +29804,7 @@ "canonical_id": "game_nhl_2025_20260120_bos_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "6:30p", + "game_datetime_utc": "2026-01-21T00:30:00Z", "home_team": "Dallas Stars", "away_team": "Boston Bruins", "home_team_abbrev": "DAL", @@ -31575,8 +29821,7 @@ "canonical_id": "game_nba_2025_20260120_lac_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CHI", @@ -31593,8 +29838,7 @@ "canonical_id": "game_nba_2025_20260120_sas_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Houston Rockets", "away_team": "San Antonio Spurs", "home_team_abbrev": "HOU", @@ -31611,8 +29855,7 @@ "canonical_id": "game_nhl_2025_20260120_stl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "St. Louis Blues", "home_team_abbrev": "WPG", @@ -31629,8 +29872,7 @@ "canonical_id": "game_nhl_2025_20260120_buf_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Buffalo Sabres", "home_team_abbrev": "NSH", @@ -31647,8 +29889,7 @@ "canonical_id": "game_nba_2025_20260120_min_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "UTA", @@ -31665,8 +29906,7 @@ "canonical_id": "game_nba_2025_20260120_lal_den", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "8p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DEN", @@ -31683,8 +29923,7 @@ "canonical_id": "game_nba_2025_20260120_tor_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Toronto Raptors", "home_team_abbrev": "GSW", @@ -31701,8 +29940,7 @@ "canonical_id": "game_nba_2025_20260120_mia_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Miami Heat", "home_team_abbrev": "SAC", @@ -31719,8 +29957,7 @@ "canonical_id": "game_nhl_2025_20260120_nyr_la", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "New York Rangers", "home_team_abbrev": "LA", @@ -31737,8 +29974,7 @@ "canonical_id": "game_nhl_2025_20260120_njd_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "8p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New Jersey Devils", "home_team_abbrev": "EDM", @@ -31755,8 +29991,7 @@ "canonical_id": "game_nba_2025_20260121_cle_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHA", @@ -31773,8 +30008,7 @@ "canonical_id": "game_nhl_2025_20260121_det_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Detroit Red Wings", "home_team_abbrev": "TOR", @@ -31791,8 +30025,7 @@ "canonical_id": "game_nba_2025_20260121_brk_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T00:30:00Z", "home_team": "New York Knicks", "away_team": "Brooklyn Nets", "home_team_abbrev": "NYK", @@ -31809,8 +30042,7 @@ "canonical_id": "game_nba_2025_20260121_ind_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Indiana Pacers", "home_team_abbrev": "BOS", @@ -31827,8 +30059,7 @@ "canonical_id": "game_nba_2025_20260121_atl_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Atlanta Hawks", "home_team_abbrev": "MEM", @@ -31845,8 +30076,7 @@ "canonical_id": "game_nba_2025_20260121_det_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Detroit Pistons", "home_team_abbrev": "NOP", @@ -31863,8 +30093,7 @@ "canonical_id": "game_nhl_2025_20260121_phi_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T02:00:00Z", "home_team": "Utah Club", "away_team": "Philadelphia Flyers", "home_team_abbrev": "ARI", @@ -31881,8 +30110,7 @@ "canonical_id": "game_nhl_2025_20260121_ana_col", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Anaheim Ducks", "home_team_abbrev": "COL", @@ -31899,8 +30127,7 @@ "canonical_id": "game_nba_2025_20260121_okc_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "8:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIL", @@ -31917,8 +30144,7 @@ "canonical_id": "game_nhl_2025_20260121_nyi_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "6:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Seattle Kraken", "away_team": "New York Islanders", "home_team_abbrev": "SEA", @@ -31935,8 +30161,7 @@ "canonical_id": "game_nhl_2025_20260121_pit_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CGY", @@ -31953,8 +30178,7 @@ "canonical_id": "game_nba_2025_20260121_tor_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Toronto Raptors", "home_team_abbrev": "SAC", @@ -31971,8 +30195,7 @@ "canonical_id": "game_nhl_2025_20260121_was_van", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Washington Capitals", "home_team_abbrev": "VAN", @@ -31989,8 +30212,7 @@ "canonical_id": "game_nba_2025_20260122_cho_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Charlotte Hornets", "home_team_abbrev": "ORL", @@ -32007,8 +30229,7 @@ "canonical_id": "game_nba_2025_20260122_hou_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "4p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Houston Rockets", "home_team_abbrev": "PHI", @@ -32025,8 +30246,7 @@ "canonical_id": "game_nba_2025_20260122_den_was", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Denver Nuggets", "home_team_abbrev": "WAS", @@ -32043,8 +30263,7 @@ "canonical_id": "game_nhl_2025_20260122_buf_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Buffalo Sabres", "home_team_abbrev": "MTL", @@ -32061,8 +30280,7 @@ "canonical_id": "game_nhl_2025_20260122_vgk_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Vegas Golden Knights", "home_team_abbrev": "BOS", @@ -32079,8 +30297,7 @@ "canonical_id": "game_nhl_2025_20260122_chi_car", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CAR", @@ -32097,8 +30314,7 @@ "canonical_id": "game_nhl_2025_20260122_dal_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Dallas Stars", "home_team_abbrev": "CBJ", @@ -32115,8 +30331,7 @@ "canonical_id": "game_nba_2025_20260122_gsw_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "6:30p", + "game_datetime_utc": "2026-01-23T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Golden State Warriors", "home_team_abbrev": "DAL", @@ -32133,8 +30348,7 @@ "canonical_id": "game_nba_2025_20260122_chi_min", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Chicago Bulls", "home_team_abbrev": "MIN", @@ -32151,8 +30365,7 @@ "canonical_id": "game_nhl_2025_20260122_fla_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Florida Panthers", "home_team_abbrev": "WPG", @@ -32169,8 +30382,7 @@ "canonical_id": "game_nhl_2025_20260122_ott_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Ottawa Senators", "home_team_abbrev": "NSH", @@ -32187,8 +30399,7 @@ "canonical_id": "game_nba_2025_20260122_sas_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T02:00:00Z", "home_team": "Utah Jazz", "away_team": "San Antonio Spurs", "home_team_abbrev": "UTA", @@ -32205,8 +30416,7 @@ "canonical_id": "game_nhl_2025_20260122_pit_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "EDM", @@ -32223,8 +30433,7 @@ "canonical_id": "game_nhl_2025_20260122_det_min", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "8:30p", + "game_datetime_utc": "2026-01-23T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Detroit Red Wings", "home_team_abbrev": "MIN", @@ -32241,8 +30450,7 @@ "canonical_id": "game_nba_2025_20260122_mia_por", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Miami Heat", "home_team_abbrev": "POR", @@ -32259,8 +30467,7 @@ "canonical_id": "game_nba_2025_20260122_lal_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "LAC", @@ -32277,8 +30484,7 @@ "canonical_id": "game_nba_2025_20260123_hou_det", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Houston Rockets", "home_team_abbrev": "DET", @@ -32295,8 +30501,7 @@ "canonical_id": "game_nhl_2025_20260123_tb_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "6p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CHI", @@ -32313,8 +30518,7 @@ "canonical_id": "game_nhl_2025_20260123_vgk_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Vegas Golden Knights", "home_team_abbrev": "TOR", @@ -32331,8 +30535,7 @@ "canonical_id": "game_nba_2025_20260123_sac_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "6:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Sacramento Kings", "home_team_abbrev": "CLE", @@ -32349,8 +30552,7 @@ "canonical_id": "game_nba_2025_20260123_bos_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Boston Celtics", "home_team_abbrev": "BKN", @@ -32367,8 +30569,7 @@ "canonical_id": "game_nba_2025_20260123_phx_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Phoenix Suns", "home_team_abbrev": "ATL", @@ -32385,8 +30586,7 @@ "canonical_id": "game_nba_2025_20260123_nop_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MEM", @@ -32403,8 +30603,7 @@ "canonical_id": "game_nba_2025_20260123_ind_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Indiana Pacers", "home_team_abbrev": "OKC", @@ -32421,8 +30620,7 @@ "canonical_id": "game_nhl_2025_20260123_stl_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Dallas Stars", "away_team": "St. Louis Blues", "home_team_abbrev": "DAL", @@ -32439,8 +30637,7 @@ "canonical_id": "game_nhl_2025_20260123_was_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Washington Capitals", "home_team_abbrev": "CGY", @@ -32457,8 +30654,7 @@ "canonical_id": "game_nhl_2025_20260123_phi_col", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Philadelphia Flyers", "home_team_abbrev": "COL", @@ -32475,8 +30671,7 @@ "canonical_id": "game_nba_2025_20260123_den_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "8:30p", + "game_datetime_utc": "2026-01-24T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Denver Nuggets", "home_team_abbrev": "MIL", @@ -32493,8 +30688,7 @@ "canonical_id": "game_nba_2025_20260123_tor_por", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Toronto Raptors", "home_team_abbrev": "POR", @@ -32511,8 +30705,7 @@ "canonical_id": "game_nhl_2025_20260123_nyr_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "New York Rangers", "home_team_abbrev": "SJ", @@ -32529,8 +30722,7 @@ "canonical_id": "game_nhl_2025_20260123_njd_van", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New Jersey Devils", "home_team_abbrev": "VAN", @@ -32547,8 +30739,7 @@ "canonical_id": "game_nhl_2025_20260123_ana_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Anaheim Ducks", "home_team_abbrev": "SEA", @@ -32565,8 +30756,7 @@ "canonical_id": "game_nhl_2025_20260124_buf_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "1p", + "game_datetime_utc": "2026-01-24T18:00:00Z", "home_team": "New York Islanders", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYI", @@ -32583,8 +30773,7 @@ "canonical_id": "game_nba_2025_20260124_nyk_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "12p", + "game_datetime_utc": "2026-01-24T20:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "New York Knicks", "home_team_abbrev": "PHI", @@ -32601,8 +30790,7 @@ "canonical_id": "game_nhl_2025_20260124_ari_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "2:30p", + "game_datetime_utc": "2026-01-24T20:30:00Z", "home_team": "Nashville Predators", "away_team": "Utah Club", "home_team_abbrev": "NSH", @@ -32619,8 +30807,7 @@ "canonical_id": "game_nba_2025_20260124_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "4:30p", + "game_datetime_utc": "2026-01-24T22:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -32637,8 +30824,7 @@ "canonical_id": "game_nba_2025_20260124_was_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "6p", + "game_datetime_utc": "2026-01-24T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Washington Wizards", "home_team_abbrev": "CHA", @@ -32655,8 +30841,7 @@ "canonical_id": "game_nba_2025_20260124_cle_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ORL", @@ -32673,8 +30858,7 @@ "canonical_id": "game_nhl_2025_20260124_det_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "6p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Detroit Red Wings", "home_team_abbrev": "WPG", @@ -32691,8 +30875,7 @@ "canonical_id": "game_nhl_2025_20260124_car_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "OTT", @@ -32709,8 +30892,7 @@ "canonical_id": "game_nhl_2025_20260124_mtl_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Montreal Canadiens", "home_team_abbrev": "BOS", @@ -32727,8 +30909,7 @@ "canonical_id": "game_nhl_2025_20260124_tb_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CBJ", @@ -32745,8 +30926,7 @@ "canonical_id": "game_nba_2025_20260124_bos_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Boston Celtics", "home_team_abbrev": "CHI", @@ -32763,8 +30943,7 @@ "canonical_id": "game_nhl_2025_20260124_la_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Los Angeles Kings", "home_team_abbrev": "STL", @@ -32781,8 +30960,7 @@ "canonical_id": "game_nba_2025_20260124_lal_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7:30p", + "game_datetime_utc": "2026-01-25T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DAL", @@ -32799,8 +30977,7 @@ "canonical_id": "game_nhl_2025_20260124_fla_min", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "8p", + "game_datetime_utc": "2026-01-25T02:00:00Z", "home_team": "Minnesota Wild", "away_team": "Florida Panthers", "home_team_abbrev": "MIN", @@ -32817,8 +30994,7 @@ "canonical_id": "game_nba_2025_20260124_mia_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7:30p", + "game_datetime_utc": "2026-01-25T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Miami Heat", "home_team_abbrev": "UTA", @@ -32835,8 +31011,7 @@ "canonical_id": "game_nhl_2025_20260124_was_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "8p", + "game_datetime_utc": "2026-01-25T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Washington Capitals", "home_team_abbrev": "EDM", @@ -32853,8 +31028,7 @@ "canonical_id": "game_nhl_2025_20260125_col_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "1:30p", + "game_datetime_utc": "2026-01-25T18:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Colorado Avalanche", "home_team_abbrev": "TOR", @@ -32871,8 +31045,7 @@ "canonical_id": "game_nba_2025_20260125_sac_det", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "3p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Detroit Pistons", "away_team": "Sacramento Kings", "home_team_abbrev": "DET", @@ -32889,8 +31062,7 @@ "canonical_id": "game_nfl_2026_20260125_ne_den", "sport": "NFL", "season": "2026", - "date": "2026-01-25", - "time": "1p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Denver Broncos", "away_team": "New England Patriots", "home_team_abbrev": "DEN", @@ -32907,8 +31079,7 @@ "canonical_id": "game_nhl_2025_20260125_njd_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "12p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Seattle Kraken", "away_team": "New Jersey Devils", "home_team_abbrev": "SEA", @@ -32925,8 +31096,7 @@ "canonical_id": "game_nba_2025_20260125_den_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "2:30p", + "game_datetime_utc": "2026-01-25T20:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -32943,8 +31113,7 @@ "canonical_id": "game_nhl_2025_20260125_vgk_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "5p", + "game_datetime_utc": "2026-01-25T22:00:00Z", "home_team": "Ottawa Senators", "away_team": "Vegas Golden Knights", "home_team_abbrev": "OTT", @@ -32961,8 +31130,7 @@ "canonical_id": "game_nba_2025_20260125_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "4:30p", + "game_datetime_utc": "2026-01-25T22:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -32979,8 +31147,7 @@ "canonical_id": "game_nhl_2025_20260125_pit_van", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "3p", + "game_datetime_utc": "2026-01-25T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "VAN", @@ -32997,8 +31164,7 @@ "canonical_id": "game_nfl_2026_20260125_lar_sea", "sport": "NFL", "season": "2026", - "date": "2026-01-25", - "time": "3:30p", + "game_datetime_utc": "2026-01-25T23:30:00Z", "home_team": "Seattle Seahawks", "away_team": "Los Angeles Rams", "home_team_abbrev": "SEA", @@ -33015,8 +31181,7 @@ "canonical_id": "game_nba_2025_20260125_tor_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Toronto Raptors", "home_team_abbrev": "OKC", @@ -33033,8 +31198,7 @@ "canonical_id": "game_nba_2025_20260125_dal_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIL", @@ -33051,8 +31215,7 @@ "canonical_id": "game_nba_2025_20260125_nop_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAS", @@ -33069,8 +31232,7 @@ "canonical_id": "game_nhl_2025_20260125_fla_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Florida Panthers", "home_team_abbrev": "CHI", @@ -33087,8 +31249,7 @@ "canonical_id": "game_nba_2025_20260125_mia_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "8p", + "game_datetime_utc": "2026-01-26T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Miami Heat", "home_team_abbrev": "PHX", @@ -33105,8 +31266,7 @@ "canonical_id": "game_nhl_2025_20260125_ana_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Anaheim Ducks", "home_team_abbrev": "CGY", @@ -33123,8 +31283,7 @@ "canonical_id": "game_nba_2025_20260125_brk_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Brooklyn Nets", "home_team_abbrev": "LAC", @@ -33141,8 +31300,7 @@ "canonical_id": "game_nba_2025_20260126_orl_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "6p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Orlando Magic", "home_team_abbrev": "CLE", @@ -33159,8 +31317,7 @@ "canonical_id": "game_nba_2025_20260126_phi_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHA", @@ -33177,8 +31334,7 @@ "canonical_id": "game_nhl_2025_20260126_nyi_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Islanders", "home_team_abbrev": "PHI", @@ -33195,8 +31351,7 @@ "canonical_id": "game_nhl_2025_20260126_ari_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Utah Club", "home_team_abbrev": "TB", @@ -33213,8 +31368,7 @@ "canonical_id": "game_nhl_2025_20260126_bos_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "New York Rangers", "away_team": "Boston Bruins", "home_team_abbrev": "NYR", @@ -33231,8 +31385,7 @@ "canonical_id": "game_nhl_2025_20260126_la_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Los Angeles Kings", "home_team_abbrev": "CBJ", @@ -33249,8 +31402,7 @@ "canonical_id": "game_nba_2025_20260126_ind_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7:30p", + "game_datetime_utc": "2026-01-27T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Indiana Pacers", "home_team_abbrev": "ATL", @@ -33267,8 +31419,7 @@ "canonical_id": "game_nba_2025_20260126_por_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "8p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Boston Celtics", "away_team": "Portland Blazers", "home_team_abbrev": "BOS", @@ -33285,8 +31436,7 @@ "canonical_id": "game_nba_2025_20260126_lal_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CHI", @@ -33303,8 +31453,7 @@ "canonical_id": "game_nba_2025_20260126_mem_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "HOU", @@ -33321,8 +31470,7 @@ "canonical_id": "game_nhl_2025_20260126_ana_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "6:30p", + "game_datetime_utc": "2026-01-27T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Anaheim Ducks", "home_team_abbrev": "EDM", @@ -33339,8 +31487,7 @@ "canonical_id": "game_nba_2025_20260126_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "8:30p", + "game_datetime_utc": "2026-01-27T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -33357,8 +31504,7 @@ "canonical_id": "game_nba_2025_20260127_por_was", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Portland Blazers", "home_team_abbrev": "WAS", @@ -33375,8 +31521,7 @@ "canonical_id": "game_nhl_2025_20260127_wpg_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Winnipeg Jets", "home_team_abbrev": "NJ", @@ -33393,8 +31538,7 @@ "canonical_id": "game_nhl_2025_20260127_vgk_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Vegas Golden Knights", "home_team_abbrev": "MTL", @@ -33411,8 +31555,7 @@ "canonical_id": "game_nhl_2025_20260127_buf_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Buffalo Sabres", "home_team_abbrev": "TOR", @@ -33429,8 +31572,7 @@ "canonical_id": "game_nhl_2025_20260127_nsh_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Nashville Predators", "home_team_abbrev": "BOS", @@ -33447,8 +31589,7 @@ "canonical_id": "game_nhl_2025_20260127_ari_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Utah Club", "home_team_abbrev": "FLA", @@ -33465,8 +31606,7 @@ "canonical_id": "game_nhl_2025_20260127_la_det", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Los Angeles Kings", "home_team_abbrev": "DET", @@ -33483,8 +31623,7 @@ "canonical_id": "game_nba_2025_20260127_sac_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7:30p", + "game_datetime_utc": "2026-01-28T00:30:00Z", "home_team": "New York Knicks", "away_team": "Sacramento Kings", "home_team_abbrev": "NYK", @@ -33501,8 +31640,7 @@ "canonical_id": "game_nba_2025_20260127_nop_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New Orleans Pelicans", "home_team_abbrev": "OKC", @@ -33519,8 +31657,7 @@ "canonical_id": "game_nba_2025_20260127_mil_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "5p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHI", @@ -33537,8 +31674,7 @@ "canonical_id": "game_nhl_2025_20260127_dal_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Dallas Stars", "home_team_abbrev": "STL", @@ -33555,8 +31691,7 @@ "canonical_id": "game_nhl_2025_20260127_chi_min", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MIN", @@ -33573,8 +31708,7 @@ "canonical_id": "game_nba_2025_20260127_det_den", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Detroit Pistons", "home_team_abbrev": "DEN", @@ -33591,8 +31725,7 @@ "canonical_id": "game_nba_2025_20260127_brk_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "9p", + "game_datetime_utc": "2026-01-28T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHX", @@ -33609,8 +31742,7 @@ "canonical_id": "game_nba_2025_20260127_lac_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "8p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Clippers", "home_team_abbrev": "UTA", @@ -33627,8 +31759,7 @@ "canonical_id": "game_nhl_2025_20260127_sj_van", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "San Jose Sharks", "home_team_abbrev": "VAN", @@ -33645,8 +31776,7 @@ "canonical_id": "game_nhl_2025_20260127_was_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Washington Capitals", "home_team_abbrev": "SEA", @@ -33663,8 +31793,7 @@ "canonical_id": "game_nba_2025_20260128_chi_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Chicago Bulls", "home_team_abbrev": "IND", @@ -33681,8 +31810,7 @@ "canonical_id": "game_nba_2025_20260128_lal_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "6p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CLE", @@ -33699,8 +31827,7 @@ "canonical_id": "game_nhl_2025_20260128_nyr_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "New York Islanders", "away_team": "New York Rangers", "home_team_abbrev": "NYI", @@ -33717,8 +31844,7 @@ "canonical_id": "game_nba_2025_20260128_nyk_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -33735,8 +31861,7 @@ "canonical_id": "game_nba_2025_20260128_atl_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Atlanta Hawks", "home_team_abbrev": "BOS", @@ -33753,8 +31878,7 @@ "canonical_id": "game_nba_2025_20260128_orl_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Miami Heat", "away_team": "Orlando Magic", "home_team_abbrev": "MIA", @@ -33771,8 +31895,7 @@ "canonical_id": "game_nhl_2025_20260128_col_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Colorado Avalanche", "home_team_abbrev": "OTT", @@ -33789,8 +31912,7 @@ "canonical_id": "game_nhl_2025_20260128_phi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CBJ", @@ -33807,8 +31929,7 @@ "canonical_id": "game_nba_2025_20260128_cho_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Charlotte Hornets", "home_team_abbrev": "MEM", @@ -33825,8 +31946,7 @@ "canonical_id": "game_nba_2025_20260128_min_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DAL", @@ -33843,8 +31963,7 @@ "canonical_id": "game_nba_2025_20260128_gsw_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Golden State Warriors", "home_team_abbrev": "UTA", @@ -33861,8 +31980,7 @@ "canonical_id": "game_nba_2025_20260128_sas_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "8:30p", + "game_datetime_utc": "2026-01-29T02:30:00Z", "home_team": "Houston Rockets", "away_team": "San Antonio Spurs", "home_team_abbrev": "HOU", @@ -33879,8 +31997,7 @@ "canonical_id": "game_nba_2025_20260129_mil_was", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Milwaukee Bucks", "home_team_abbrev": "WAS", @@ -33897,8 +32014,7 @@ "canonical_id": "game_nba_2025_20260129_sac_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "4p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Sacramento Kings", "home_team_abbrev": "PHI", @@ -33915,8 +32031,7 @@ "canonical_id": "game_nhl_2025_20260129_ari_car", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Utah Club", "home_team_abbrev": "CAR", @@ -33933,8 +32048,7 @@ "canonical_id": "game_nhl_2025_20260129_chi_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Chicago Blackhawks", "home_team_abbrev": "PIT", @@ -33951,8 +32065,7 @@ "canonical_id": "game_nhl_2025_20260129_nyi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "New York Rangers", "away_team": "New York Islanders", "home_team_abbrev": "NYR", @@ -33969,8 +32082,7 @@ "canonical_id": "game_nhl_2025_20260129_nsh_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Nashville Predators", "home_team_abbrev": "NJ", @@ -33987,8 +32099,7 @@ "canonical_id": "game_nhl_2025_20260129_col_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Colorado Avalanche", "home_team_abbrev": "MTL", @@ -34005,8 +32116,7 @@ "canonical_id": "game_nhl_2025_20260129_la_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Los Angeles Kings", "home_team_abbrev": "BUF", @@ -34023,8 +32133,7 @@ "canonical_id": "game_nhl_2025_20260129_phi_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BOS", @@ -34041,8 +32150,7 @@ "canonical_id": "game_nhl_2025_20260129_wpg_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Winnipeg Jets", "home_team_abbrev": "TB", @@ -34059,8 +32167,7 @@ "canonical_id": "game_nhl_2025_20260129_was_det", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7:30p", + "game_datetime_utc": "2026-01-30T00:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Washington Capitals", "home_team_abbrev": "DET", @@ -34077,8 +32184,7 @@ "canonical_id": "game_nba_2025_20260129_hou_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "8p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Houston Rockets", "home_team_abbrev": "ATL", @@ -34095,8 +32201,7 @@ "canonical_id": "game_nba_2025_20260129_mia_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Miami Heat", "home_team_abbrev": "CHI", @@ -34113,8 +32218,7 @@ "canonical_id": "game_nhl_2025_20260129_cgy_min", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Calgary Flames", "home_team_abbrev": "MIN", @@ -34131,8 +32235,7 @@ "canonical_id": "game_nhl_2025_20260129_fla_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Florida Panthers", "home_team_abbrev": "STL", @@ -34149,8 +32252,7 @@ "canonical_id": "game_nba_2025_20260129_cho_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7:30p", + "game_datetime_utc": "2026-01-30T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Charlotte Hornets", "home_team_abbrev": "DAL", @@ -34167,8 +32269,7 @@ "canonical_id": "game_nba_2025_20260129_det_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "9p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Detroit Pistons", "home_team_abbrev": "PHX", @@ -34185,8 +32286,7 @@ "canonical_id": "game_nba_2025_20260129_brk_den", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Brooklyn Nets", "home_team_abbrev": "DEN", @@ -34203,8 +32303,7 @@ "canonical_id": "game_nhl_2025_20260129_sj_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "San Jose Sharks", "home_team_abbrev": "EDM", @@ -34221,8 +32320,7 @@ "canonical_id": "game_nba_2025_20260129_okc_min", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "8:30p", + "game_datetime_utc": "2026-01-30T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIN", @@ -34239,8 +32337,7 @@ "canonical_id": "game_nhl_2025_20260129_tor_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "SEA", @@ -34257,8 +32354,7 @@ "canonical_id": "game_nhl_2025_20260129_dal_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Dallas Stars", "home_team_abbrev": "VGK", @@ -34275,8 +32371,7 @@ "canonical_id": "game_nhl_2025_20260129_ana_van", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Anaheim Ducks", "home_team_abbrev": "VAN", @@ -34293,8 +32388,7 @@ "canonical_id": "game_nba_2025_20260130_lal_was", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Los Angeles Lakers", "home_team_abbrev": "WAS", @@ -34311,8 +32405,7 @@ "canonical_id": "game_nba_2025_20260130_tor_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Toronto Raptors", "home_team_abbrev": "ORL", @@ -34329,8 +32422,7 @@ "canonical_id": "game_nba_2025_20260130_por_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "New York Knicks", "away_team": "Portland Blazers", "home_team_abbrev": "NYK", @@ -34347,8 +32439,7 @@ "canonical_id": "game_nba_2025_20260130_sac_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Sacramento Kings", "home_team_abbrev": "BOS", @@ -34365,8 +32456,7 @@ "canonical_id": "game_nba_2025_20260130_mem_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "6:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "New Orleans Pelicans", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NOP", @@ -34383,8 +32473,7 @@ "canonical_id": "game_nhl_2025_20260130_cbj_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CHI", @@ -34401,8 +32490,7 @@ "canonical_id": "game_nba_2025_20260130_lac_den", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DEN", @@ -34419,8 +32507,7 @@ "canonical_id": "game_nba_2025_20260130_cle_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "9p", + "game_datetime_utc": "2026-01-31T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHX", @@ -34437,8 +32524,7 @@ "canonical_id": "game_nba_2025_20260130_brk_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Brooklyn Nets", "home_team_abbrev": "UTA", @@ -34455,8 +32541,7 @@ "canonical_id": "game_nba_2025_20260130_det_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Detroit Pistons", "home_team_abbrev": "GSW", @@ -34473,8 +32558,7 @@ "canonical_id": "game_nhl_2025_20260131_la_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "12:30p", + "game_datetime_utc": "2026-01-31T17:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Los Angeles Kings", "home_team_abbrev": "PHI", @@ -34491,8 +32575,7 @@ "canonical_id": "game_nhl_2025_20260131_col_det", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "1p", + "game_datetime_utc": "2026-01-31T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Colorado Avalanche", "home_team_abbrev": "DET", @@ -34509,8 +32592,7 @@ "canonical_id": "game_nba_2025_20260131_sas_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "3p", + "game_datetime_utc": "2026-01-31T20:00:00Z", "home_team": "Charlotte Hornets", "away_team": "San Antonio Spurs", "home_team_abbrev": "CHA", @@ -34527,8 +32609,7 @@ "canonical_id": "game_nhl_2025_20260131_nyr_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "3:30p", + "game_datetime_utc": "2026-01-31T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Rangers", "home_team_abbrev": "PIT", @@ -34545,8 +32626,7 @@ "canonical_id": "game_nhl_2025_20260131_sj_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "2p", + "game_datetime_utc": "2026-01-31T21:00:00Z", "home_team": "Calgary Flames", "away_team": "San Jose Sharks", "home_team_abbrev": "CGY", @@ -34563,8 +32643,7 @@ "canonical_id": "game_nhl_2025_20260131_wpg_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "4p", + "game_datetime_utc": "2026-01-31T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Winnipeg Jets", "home_team_abbrev": "FLA", @@ -34581,8 +32660,7 @@ "canonical_id": "game_nhl_2025_20260131_car_was", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "5p", + "game_datetime_utc": "2026-01-31T22:00:00Z", "home_team": "Washington Capitals", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WAS", @@ -34599,8 +32677,7 @@ "canonical_id": "game_nba_2025_20260131_atl_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Atlanta Hawks", "home_team_abbrev": "IND", @@ -34617,8 +32694,7 @@ "canonical_id": "game_nhl_2025_20260131_cbj_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "6p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "STL", @@ -34635,8 +32711,7 @@ "canonical_id": "game_nhl_2025_20260131_tor_van", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "4p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "VAN", @@ -34653,8 +32728,7 @@ "canonical_id": "game_nhl_2025_20260131_njd_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New Jersey Devils", "home_team_abbrev": "OTT", @@ -34671,8 +32745,7 @@ "canonical_id": "game_nhl_2025_20260131_nsh_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "New York Islanders", "away_team": "Nashville Predators", "home_team_abbrev": "NYI", @@ -34689,8 +32762,7 @@ "canonical_id": "game_nhl_2025_20260131_mtl_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Montreal Canadiens", "home_team_abbrev": "BUF", @@ -34707,8 +32779,7 @@ "canonical_id": "game_nba_2025_20260131_nop_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "4:30p", + "game_datetime_utc": "2026-02-01T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHI", @@ -34725,8 +32796,7 @@ "canonical_id": "game_nba_2025_20260131_min_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MEM", @@ -34743,8 +32813,7 @@ "canonical_id": "game_nba_2025_20260131_chi_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "8p", + "game_datetime_utc": "2026-02-01T01:00:00Z", "home_team": "Miami Heat", "away_team": "Chicago Bulls", "home_team_abbrev": "MIA", @@ -34761,8 +32830,7 @@ "canonical_id": "game_nba_2025_20260131_dal_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7:30p", + "game_datetime_utc": "2026-02-01T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Dallas Mavericks", "home_team_abbrev": "HOU", @@ -34779,8 +32847,7 @@ "canonical_id": "game_nhl_2025_20260131_dal_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T02:00:00Z", "home_team": "Utah Club", "away_team": "Dallas Stars", "home_team_abbrev": "ARI", @@ -34797,8 +32864,7 @@ "canonical_id": "game_nhl_2025_20260131_min_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "8p", + "game_datetime_utc": "2026-02-01T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Minnesota Wild", "home_team_abbrev": "EDM", @@ -34815,8 +32881,7 @@ "canonical_id": "game_nhl_2025_20260131_sea_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Seattle Kraken", "home_team_abbrev": "VGK", @@ -34833,8 +32898,7 @@ "canonical_id": "game_nhl_2025_20260201_la_car", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "3p", + "game_datetime_utc": "2026-02-01T20:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Los Angeles Kings", "home_team_abbrev": "CAR", @@ -34851,8 +32915,7 @@ "canonical_id": "game_nba_2025_20260201_mil_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "3:30p", + "game_datetime_utc": "2026-02-01T20:30:00Z", "home_team": "Boston Celtics", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BOS", @@ -34869,8 +32932,7 @@ "canonical_id": "game_nba_2025_20260201_orl_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "3p", + "game_datetime_utc": "2026-02-01T21:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Orlando Magic", "home_team_abbrev": "SAS", @@ -34887,8 +32949,7 @@ "canonical_id": "game_nba_2025_20260201_uta_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Utah Jazz", "home_team_abbrev": "TOR", @@ -34905,8 +32966,7 @@ "canonical_id": "game_nba_2025_20260201_brk_det", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Brooklyn Nets", "home_team_abbrev": "DET", @@ -34923,8 +32983,7 @@ "canonical_id": "game_nba_2025_20260201_chi_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Miami Heat", "away_team": "Chicago Bulls", "home_team_abbrev": "MIA", @@ -34941,8 +33000,7 @@ "canonical_id": "game_nba_2025_20260201_sac_was", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Sacramento Kings", "home_team_abbrev": "WAS", @@ -34959,8 +33017,7 @@ "canonical_id": "game_nhl_2025_20260201_bos_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "6:30p", + "game_datetime_utc": "2026-02-01T23:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Boston Bruins", "home_team_abbrev": "TB", @@ -34977,8 +33034,7 @@ "canonical_id": "game_nba_2025_20260201_lal_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "7p", + "game_datetime_utc": "2026-02-02T00:00:00Z", "home_team": "New York Knicks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NYK", @@ -34995,8 +33051,7 @@ "canonical_id": "game_nba_2025_20260201_lac_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "8p", + "game_datetime_utc": "2026-02-02T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHX", @@ -35013,8 +33068,7 @@ "canonical_id": "game_nba_2025_20260201_cle_por", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-02T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "POR", @@ -35031,8 +33085,7 @@ "canonical_id": "game_nba_2025_20260201_okc_den", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "7:30p", + "game_datetime_utc": "2026-02-02T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DEN", @@ -35049,8 +33102,7 @@ "canonical_id": "game_nhl_2025_20260201_vgk_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "6:30p", + "game_datetime_utc": "2026-02-02T02:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ANA", @@ -35067,8 +33119,7 @@ "canonical_id": "game_nba_2025_20260202_nop_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHA", @@ -35085,8 +33136,7 @@ "canonical_id": "game_nba_2025_20260202_hou_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Houston Rockets", "home_team_abbrev": "IND", @@ -35103,8 +33153,7 @@ "canonical_id": "game_nhl_2025_20260202_ott_pit", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Ottawa Senators", "home_team_abbrev": "PIT", @@ -35121,8 +33170,7 @@ "canonical_id": "game_nhl_2025_20260202_buf_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Buffalo Sabres", "home_team_abbrev": "FLA", @@ -35139,8 +33187,7 @@ "canonical_id": "game_nhl_2025_20260202_nyi_was", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Islanders", "home_team_abbrev": "WAS", @@ -35157,8 +33204,7 @@ "canonical_id": "game_nba_2025_20260202_min_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "6:30p", + "game_datetime_utc": "2026-02-03T00:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MEM", @@ -35175,8 +33221,7 @@ "canonical_id": "game_nhl_2025_20260202_mtl_min", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "6:30p", + "game_datetime_utc": "2026-02-03T00:30:00Z", "home_team": "Minnesota Wild", "away_team": "Montreal Canadiens", "home_team_abbrev": "MIN", @@ -35193,8 +33238,7 @@ "canonical_id": "game_nhl_2025_20260202_stl_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T01:00:00Z", "home_team": "Nashville Predators", "away_team": "St. Louis Blues", "home_team_abbrev": "NSH", @@ -35211,8 +33255,7 @@ "canonical_id": "game_nhl_2025_20260202_wpg_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T01:30:00Z", "home_team": "Dallas Stars", "away_team": "Winnipeg Jets", "home_team_abbrev": "DAL", @@ -35229,8 +33272,7 @@ "canonical_id": "game_nhl_2025_20260202_sj_chi", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "San Jose Sharks", "home_team_abbrev": "CHI", @@ -35247,8 +33289,7 @@ "canonical_id": "game_nhl_2025_20260202_det_col", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Detroit Red Wings", "home_team_abbrev": "COL", @@ -35265,8 +33306,7 @@ "canonical_id": "game_nhl_2025_20260202_van_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T02:30:00Z", "home_team": "Utah Club", "away_team": "Vancouver Canucks", "home_team_abbrev": "ARI", @@ -35283,8 +33323,7 @@ "canonical_id": "game_nba_2025_20260202_phi_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "LAC", @@ -35301,8 +33340,7 @@ "canonical_id": "game_nhl_2025_20260202_tor_cgy", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "8p", + "game_datetime_utc": "2026-02-03T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CGY", @@ -35319,8 +33357,7 @@ "canonical_id": "game_nba_2025_20260203_nyk_was", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Washington Wizards", "away_team": "New York Knicks", "home_team_abbrev": "WAS", @@ -35337,8 +33374,7 @@ "canonical_id": "game_nba_2025_20260203_den_det", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Denver Nuggets", "home_team_abbrev": "DET", @@ -35355,8 +33391,7 @@ "canonical_id": "game_nba_2025_20260203_uta_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Utah Jazz", "home_team_abbrev": "IND", @@ -35373,8 +33408,7 @@ "canonical_id": "game_nhl_2025_20260203_cbj_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NJ", @@ -35391,8 +33425,7 @@ "canonical_id": "game_nhl_2025_20260203_ott_car", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Ottawa Senators", "home_team_abbrev": "CAR", @@ -35409,8 +33442,7 @@ "canonical_id": "game_nhl_2025_20260203_was_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Washington Capitals", "home_team_abbrev": "PHI", @@ -35427,8 +33459,7 @@ "canonical_id": "game_nba_2025_20260203_atl_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Miami Heat", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIA", @@ -35445,8 +33476,7 @@ "canonical_id": "game_nba_2025_20260203_lal_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "BKN", @@ -35463,8 +33493,7 @@ "canonical_id": "game_nhl_2025_20260203_buf_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Buffalo Sabres", "home_team_abbrev": "TB", @@ -35481,8 +33510,7 @@ "canonical_id": "game_nhl_2025_20260203_pit_nyi", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "New York Islanders", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYI", @@ -35499,8 +33527,7 @@ "canonical_id": "game_nba_2025_20260203_chi_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Chicago Bulls", "home_team_abbrev": "MIL", @@ -35517,8 +33544,7 @@ "canonical_id": "game_nba_2025_20260203_bos_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Boston Celtics", "home_team_abbrev": "DAL", @@ -35535,8 +33561,7 @@ "canonical_id": "game_nba_2025_20260203_orl_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Orlando Magic", "home_team_abbrev": "OKC", @@ -35553,8 +33578,7 @@ "canonical_id": "game_nhl_2025_20260203_tor_edm", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "6:30p", + "game_datetime_utc": "2026-02-04T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "EDM", @@ -35571,8 +33595,7 @@ "canonical_id": "game_nba_2025_20260203_phi_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "GSW", @@ -35589,8 +33612,7 @@ "canonical_id": "game_nhl_2025_20260203_sea_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Seattle Kraken", "home_team_abbrev": "ANA", @@ -35607,8 +33629,7 @@ "canonical_id": "game_nba_2025_20260203_phx_por", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "8p", + "game_datetime_utc": "2026-02-04T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Phoenix Suns", "home_team_abbrev": "POR", @@ -35625,8 +33646,7 @@ "canonical_id": "game_nba_2025_20260204_den_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "New York Knicks", "away_team": "Denver Nuggets", "home_team_abbrev": "NYK", @@ -35643,8 +33663,7 @@ "canonical_id": "game_nhl_2025_20260204_bos_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Boston Bruins", "home_team_abbrev": "FLA", @@ -35661,8 +33680,7 @@ "canonical_id": "game_nhl_2025_20260204_chi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CBJ", @@ -35679,8 +33697,7 @@ "canonical_id": "game_nhl_2025_20260204_mtl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "6p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Montreal Canadiens", "home_team_abbrev": "WPG", @@ -35697,8 +33714,7 @@ "canonical_id": "game_nba_2025_20260204_min_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7:30p", + "game_datetime_utc": "2026-02-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "TOR", @@ -35715,8 +33731,7 @@ "canonical_id": "game_nba_2025_20260204_nop_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIL", @@ -35733,8 +33748,7 @@ "canonical_id": "game_nba_2025_20260204_bos_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Boston Celtics", "home_team_abbrev": "HOU", @@ -35751,8 +33765,7 @@ "canonical_id": "game_nhl_2025_20260204_min_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Minnesota Wild", "home_team_abbrev": "NSH", @@ -35769,8 +33782,7 @@ "canonical_id": "game_nhl_2025_20260204_det_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T02:00:00Z", "home_team": "Utah Club", "away_team": "Detroit Red Wings", "home_team_abbrev": "ARI", @@ -35787,8 +33799,7 @@ "canonical_id": "game_nhl_2025_20260204_sj_col", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "San Jose Sharks", "home_team_abbrev": "COL", @@ -35805,8 +33816,7 @@ "canonical_id": "game_nba_2025_20260204_okc_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "8:30p", + "game_datetime_utc": "2026-02-05T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAS", @@ -35823,8 +33833,7 @@ "canonical_id": "game_nhl_2025_20260204_stl_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "8:30p", + "game_datetime_utc": "2026-02-05T02:30:00Z", "home_team": "Dallas Stars", "away_team": "St. Louis Blues", "home_team_abbrev": "DAL", @@ -35841,8 +33850,7 @@ "canonical_id": "game_nba_2025_20260204_mem_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAC", @@ -35859,8 +33867,7 @@ "canonical_id": "game_nhl_2025_20260204_van_vgk", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Vancouver Canucks", "home_team_abbrev": "VGK", @@ -35877,8 +33884,7 @@ "canonical_id": "game_nhl_2025_20260204_edm_cgy", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "8p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Edmonton Oilers", "home_team_abbrev": "CGY", @@ -35895,8 +33901,7 @@ "canonical_id": "game_nhl_2025_20260204_sea_la", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Seattle Kraken", "home_team_abbrev": "LA", @@ -35913,8 +33918,7 @@ "canonical_id": "game_nba_2025_20260204_cle_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7:30p", + "game_datetime_utc": "2026-02-05T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "LAC", @@ -35931,8 +33935,7 @@ "canonical_id": "game_nba_2025_20260205_was_det", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Washington Wizards", "home_team_abbrev": "DET", @@ -35949,8 +33952,7 @@ "canonical_id": "game_nba_2025_20260205_brk_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Brooklyn Nets", "home_team_abbrev": "ORL", @@ -35967,8 +33969,7 @@ "canonical_id": "game_nhl_2025_20260205_car_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYR", @@ -35985,8 +33986,7 @@ "canonical_id": "game_nhl_2025_20260205_nsh_was", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Nashville Predators", "home_team_abbrev": "WAS", @@ -36003,8 +34003,7 @@ "canonical_id": "game_nhl_2025_20260205_ott_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Ottawa Senators", "home_team_abbrev": "PHI", @@ -36021,8 +34020,7 @@ "canonical_id": "game_nhl_2025_20260205_pit_buf", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BUF", @@ -36039,8 +34037,7 @@ "canonical_id": "game_nhl_2025_20260205_nyi_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Islanders", "home_team_abbrev": "NJ", @@ -36057,8 +34054,7 @@ "canonical_id": "game_nba_2025_20260205_chi_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Chicago Bulls", "home_team_abbrev": "TOR", @@ -36075,8 +34071,7 @@ "canonical_id": "game_nba_2025_20260205_uta_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Utah Jazz", "home_team_abbrev": "ATL", @@ -36093,8 +34088,7 @@ "canonical_id": "game_nhl_2025_20260205_fla_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Florida Panthers", "home_team_abbrev": "TB", @@ -36111,8 +34105,7 @@ "canonical_id": "game_nba_2025_20260205_cho_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Charlotte Hornets", "home_team_abbrev": "HOU", @@ -36129,8 +34122,7 @@ "canonical_id": "game_nba_2025_20260205_sas_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "San Antonio Spurs", "home_team_abbrev": "DAL", @@ -36147,8 +34139,7 @@ "canonical_id": "game_nba_2025_20260205_phi_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "LAL", @@ -36165,8 +34156,7 @@ "canonical_id": "game_nba_2025_20260205_gsw_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "10p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Golden State Warriors", "home_team_abbrev": "PHX", @@ -36183,8 +34173,7 @@ "canonical_id": "game_nhl_2025_20260205_la_vgk", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Los Angeles Kings", "home_team_abbrev": "VGK", @@ -36201,8 +34190,7 @@ "canonical_id": "game_nba_2025_20260206_nyk_det", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7:30p", + "game_datetime_utc": "2026-02-07T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "New York Knicks", "home_team_abbrev": "DET", @@ -36219,8 +34207,7 @@ "canonical_id": "game_nba_2025_20260206_mia_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7:30p", + "game_datetime_utc": "2026-02-07T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Miami Heat", "home_team_abbrev": "BOS", @@ -36237,8 +34224,7 @@ "canonical_id": "game_nba_2025_20260206_nop_min", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIN", @@ -36255,8 +34241,7 @@ "canonical_id": "game_nba_2025_20260206_ind_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Indiana Pacers", "home_team_abbrev": "MIL", @@ -36273,8 +34258,7 @@ "canonical_id": "game_nba_2025_20260206_lac_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAC", @@ -36291,8 +34275,7 @@ "canonical_id": "game_nba_2025_20260206_mem_por", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "POR", @@ -36309,8 +34292,7 @@ "canonical_id": "game_nba_2025_20260207_was_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "3p", + "game_datetime_utc": "2026-02-07T20:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Washington Wizards", "home_team_abbrev": "BKN", @@ -36327,8 +34309,7 @@ "canonical_id": "game_nba_2025_20260207_hou_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "2:30p", + "game_datetime_utc": "2026-02-07T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Houston Rockets", "home_team_abbrev": "OKC", @@ -36345,8 +34326,7 @@ "canonical_id": "game_nba_2025_20260207_dal_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "5p", + "game_datetime_utc": "2026-02-07T23:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAS", @@ -36363,8 +34343,7 @@ "canonical_id": "game_nba_2025_20260207_uta_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Utah Jazz", "home_team_abbrev": "ORL", @@ -36381,8 +34360,7 @@ "canonical_id": "game_nba_2025_20260207_cho_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7:30p", + "game_datetime_utc": "2026-02-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Charlotte Hornets", "home_team_abbrev": "ATL", @@ -36399,8 +34377,7 @@ "canonical_id": "game_nba_2025_20260207_den_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Denver Nuggets", "home_team_abbrev": "CHI", @@ -36417,8 +34394,7 @@ "canonical_id": "game_nba_2025_20260207_gsw_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "5:30p", + "game_datetime_utc": "2026-02-08T01:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAL", @@ -36435,8 +34411,7 @@ "canonical_id": "game_nba_2025_20260207_phi_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "9p", + "game_datetime_utc": "2026-02-08T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Philadelphia 76ers", "home_team_abbrev": "PHX", @@ -36453,8 +34428,7 @@ "canonical_id": "game_nba_2025_20260207_cle_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "SAC", @@ -36471,8 +34445,7 @@ "canonical_id": "game_nba_2025_20260207_mem_por", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "POR", @@ -36489,8 +34462,7 @@ "canonical_id": "game_nba_2025_20260208_nyk_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "12:30p", + "game_datetime_utc": "2026-02-08T17:30:00Z", "home_team": "Boston Celtics", "away_team": "New York Knicks", "home_team_abbrev": "BOS", @@ -36507,8 +34479,7 @@ "canonical_id": "game_nba_2025_20260208_mia_was", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "2p", + "game_datetime_utc": "2026-02-08T19:00:00Z", "home_team": "Washington Wizards", "away_team": "Miami Heat", "home_team_abbrev": "WAS", @@ -36525,8 +34496,7 @@ "canonical_id": "game_nba_2025_20260208_lac_min", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "2p", + "game_datetime_utc": "2026-02-08T20:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIN", @@ -36543,8 +34513,7 @@ "canonical_id": "game_nba_2025_20260208_ind_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "3p", + "game_datetime_utc": "2026-02-08T20:00:00Z", "home_team": "Toronto Raptors", "away_team": "Indiana Pacers", "home_team_abbrev": "TOR", @@ -36561,8 +34530,7 @@ "canonical_id": "game_nba_2025_20260209_det_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Detroit Pistons", "home_team_abbrev": "CHA", @@ -36579,8 +34547,7 @@ "canonical_id": "game_nba_2025_20260209_chi_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Chicago Bulls", "home_team_abbrev": "BKN", @@ -36597,8 +34564,7 @@ "canonical_id": "game_nba_2025_20260209_uta_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Miami Heat", "away_team": "Utah Jazz", "home_team_abbrev": "MIA", @@ -36615,8 +34581,7 @@ "canonical_id": "game_nba_2025_20260209_mil_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ORL", @@ -36633,8 +34598,7 @@ "canonical_id": "game_nba_2025_20260209_sac_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Sacramento Kings", "home_team_abbrev": "NOP", @@ -36651,8 +34615,7 @@ "canonical_id": "game_nba_2025_20260209_atl_min", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIN", @@ -36669,8 +34632,7 @@ "canonical_id": "game_nba_2025_20260209_cle_den", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DEN", @@ -36687,8 +34649,7 @@ "canonical_id": "game_nba_2025_20260209_phi_por", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "POR", @@ -36705,8 +34666,7 @@ "canonical_id": "game_nba_2025_20260209_okc_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAL", @@ -36723,8 +34683,7 @@ "canonical_id": "game_nba_2025_20260209_mem_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "GSW", @@ -36741,8 +34700,7 @@ "canonical_id": "game_nba_2025_20260210_ind_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7:30p", + "game_datetime_utc": "2026-02-11T00:30:00Z", "home_team": "New York Knicks", "away_team": "Indiana Pacers", "home_team_abbrev": "NYK", @@ -36759,8 +34717,7 @@ "canonical_id": "game_nba_2025_20260210_lac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7p", + "game_datetime_utc": "2026-02-11T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -36777,8 +34734,7 @@ "canonical_id": "game_nba_2025_20260210_dal_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "9p", + "game_datetime_utc": "2026-02-11T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHX", @@ -36795,8 +34751,7 @@ "canonical_id": "game_nba_2025_20260210_sas_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7:30p", + "game_datetime_utc": "2026-02-11T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -36813,8 +34768,7 @@ "canonical_id": "game_nba_2025_20260211_atl_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHA", @@ -36831,8 +34785,7 @@ "canonical_id": "game_nba_2025_20260211_mil_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ORL", @@ -36849,8 +34802,7 @@ "canonical_id": "game_nba_2025_20260211_was_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "6p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Washington Wizards", "home_team_abbrev": "CLE", @@ -36867,8 +34819,7 @@ "canonical_id": "game_nba_2025_20260211_det_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Detroit Pistons", "home_team_abbrev": "TOR", @@ -36885,8 +34836,7 @@ "canonical_id": "game_nba_2025_20260211_chi_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Chicago Bulls", "home_team_abbrev": "BOS", @@ -36903,8 +34853,7 @@ "canonical_id": "game_nba_2025_20260211_ind_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Indiana Pacers", "home_team_abbrev": "BKN", @@ -36921,8 +34870,7 @@ "canonical_id": "game_nba_2025_20260211_nyk_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "4:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "New York Knicks", "home_team_abbrev": "PHI", @@ -36939,8 +34887,7 @@ "canonical_id": "game_nba_2025_20260211_mia_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Miami Heat", "home_team_abbrev": "NOP", @@ -36957,8 +34904,7 @@ "canonical_id": "game_nba_2025_20260211_por_min", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Portland Blazers", "home_team_abbrev": "MIN", @@ -36975,8 +34921,7 @@ "canonical_id": "game_nba_2025_20260211_lac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -36993,8 +34938,7 @@ "canonical_id": "game_nba_2025_20260211_okc_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "9p", + "game_datetime_utc": "2026-02-12T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHX", @@ -37011,8 +34955,7 @@ "canonical_id": "game_nba_2025_20260211_sac_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Sacramento Kings", "home_team_abbrev": "UTA", @@ -37029,8 +34972,7 @@ "canonical_id": "game_nba_2025_20260211_mem_den", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "8p", + "game_datetime_utc": "2026-02-12T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DEN", @@ -37047,8 +34989,7 @@ "canonical_id": "game_nba_2025_20260211_sas_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "San Antonio Spurs", "home_team_abbrev": "GSW", @@ -37065,8 +35006,7 @@ "canonical_id": "game_nba_2025_20260212_mil_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "6:30p", + "game_datetime_utc": "2026-02-13T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Milwaukee Bucks", "home_team_abbrev": "OKC", @@ -37083,8 +35023,7 @@ "canonical_id": "game_nba_2025_20260212_por_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "7p", + "game_datetime_utc": "2026-02-13T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Portland Blazers", "home_team_abbrev": "UTA", @@ -37101,8 +35040,7 @@ "canonical_id": "game_nba_2025_20260212_dal_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "7p", + "game_datetime_utc": "2026-02-13T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAL", @@ -37119,8 +35057,7 @@ "canonical_id": "game_nba_2025_20260219_brk_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "6p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Brooklyn Nets", "home_team_abbrev": "CLE", @@ -37137,8 +35074,7 @@ "canonical_id": "game_nba_2025_20260219_atl_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "4p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHI", @@ -37155,8 +35091,7 @@ "canonical_id": "game_nba_2025_20260219_ind_was", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Indiana Pacers", "home_team_abbrev": "WAS", @@ -37173,8 +35108,7 @@ "canonical_id": "game_nba_2025_20260219_hou_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Houston Rockets", "home_team_abbrev": "CHA", @@ -37191,8 +35125,7 @@ "canonical_id": "game_nba_2025_20260219_det_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T00:30:00Z", "home_team": "New York Knicks", "away_team": "Detroit Pistons", "home_team_abbrev": "NYK", @@ -37209,8 +35142,7 @@ "canonical_id": "game_nba_2025_20260219_tor_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Toronto Raptors", "home_team_abbrev": "CHI", @@ -37227,8 +35159,7 @@ "canonical_id": "game_nba_2025_20260219_phx_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T01:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Phoenix Suns", "home_team_abbrev": "SAS", @@ -37245,8 +35176,7 @@ "canonical_id": "game_nba_2025_20260219_bos_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Boston Celtics", "home_team_abbrev": "GSW", @@ -37263,8 +35193,7 @@ "canonical_id": "game_nba_2025_20260219_orl_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Orlando Magic", "home_team_abbrev": "SAC", @@ -37281,8 +35210,7 @@ "canonical_id": "game_nba_2025_20260219_den_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAC", @@ -37299,8 +35227,7 @@ "canonical_id": "game_nba_2025_20260220_uta_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "6p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Utah Jazz", "home_team_abbrev": "MEM", @@ -37317,8 +35244,7 @@ "canonical_id": "game_nba_2025_20260220_cle_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHA", @@ -37335,8 +35261,7 @@ "canonical_id": "game_nba_2025_20260220_ind_was", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Indiana Pacers", "home_team_abbrev": "WAS", @@ -37353,8 +35278,7 @@ "canonical_id": "game_nba_2025_20260220_dal_min", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "6:30p", + "game_datetime_utc": "2026-02-21T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIN", @@ -37371,8 +35295,7 @@ "canonical_id": "game_nba_2025_20260220_mia_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7:30p", + "game_datetime_utc": "2026-02-21T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Miami Heat", "home_team_abbrev": "ATL", @@ -37389,8 +35312,7 @@ "canonical_id": "game_nba_2025_20260220_mil_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Milwaukee Bucks", "home_team_abbrev": "NOP", @@ -37407,8 +35329,7 @@ "canonical_id": "game_nba_2025_20260220_brk_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Brooklyn Nets", "home_team_abbrev": "OKC", @@ -37425,8 +35346,7 @@ "canonical_id": "game_nba_2025_20260220_den_por", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Denver Nuggets", "home_team_abbrev": "POR", @@ -37443,8 +35363,7 @@ "canonical_id": "game_nba_2025_20260220_lac_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "LAL", @@ -37461,8 +35380,7 @@ "canonical_id": "game_mls_2026_20260221_clt_stl", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "1:30p", + "game_datetime_utc": "2026-02-21T19:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "STL", @@ -37479,8 +35397,7 @@ "canonical_id": "game_mls_2026_20260221_atl_cin", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "4:45p", + "game_datetime_utc": "2026-02-21T21:45:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CIN", @@ -37497,8 +35414,7 @@ "canonical_id": "game_nba_2025_20260221_orl_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "5p", + "game_datetime_utc": "2026-02-21T22:00:00Z", "home_team": "Phoenix Suns", "away_team": "Orlando Magic", "home_team_abbrev": "PHX", @@ -37515,8 +35431,7 @@ "canonical_id": "game_nba_2025_20260221_phi_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "6p", + "game_datetime_utc": "2026-02-22T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NOP", @@ -37533,8 +35448,7 @@ "canonical_id": "game_mls_2026_20260222_slc_van", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "4:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "VAN", @@ -37551,8 +35465,7 @@ "canonical_id": "game_mls_2026_20260222_phi_dc", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Washington D.C. United", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "DC", @@ -37569,8 +35482,7 @@ "canonical_id": "game_mls_2026_20260222_ny_orl", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Orlando Orlando City", "away_team": "New York New York Red Bulls", "home_team_abbrev": "ORL", @@ -37587,8 +35499,7 @@ "canonical_id": "game_nba_2025_20260221_mem_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "8p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "Miami Heat", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIA", @@ -37605,8 +35516,7 @@ "canonical_id": "game_nba_2025_20260221_det_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "7p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Detroit Pistons", "home_team_abbrev": "CHI", @@ -37623,8 +35533,7 @@ "canonical_id": "game_nba_2025_20260221_sac_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "7p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Sacramento Kings", "home_team_abbrev": "SAS", @@ -37641,8 +35550,7 @@ "canonical_id": "game_mls_2026_20260222_tor_dal", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Toronto Toronto FC", "home_team_abbrev": "DAL", @@ -37659,8 +35567,7 @@ "canonical_id": "game_mls_2026_20260222_min_aus", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Austin Austin FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "AUS", @@ -37677,8 +35584,7 @@ "canonical_id": "game_mls_2026_20260222_chi_hou", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "HOU", @@ -37695,8 +35601,7 @@ "canonical_id": "game_mls_2026_20260222_ne_nsh", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New England New England Revolution", "home_team_abbrev": "NSH", @@ -37713,8 +35618,7 @@ "canonical_id": "game_nba_2025_20260221_hou_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "8:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "New York Knicks", "away_team": "Houston Rockets", "home_team_abbrev": "NYK", @@ -37731,8 +35635,7 @@ "canonical_id": "game_mls_2026_20260222_mia_lafc", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "6:30p", + "game_datetime_utc": "2026-02-22T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "LAFC", @@ -37749,8 +35652,7 @@ "canonical_id": "game_mls_2026_20260222_skc_sj", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SJ", @@ -37767,8 +35669,7 @@ "canonical_id": "game_mls_2026_20260222_clb_por", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "POR", @@ -37785,8 +35686,7 @@ "canonical_id": "game_mls_2026_20260222_mtl_sd", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "SD", @@ -37803,8 +35703,7 @@ "canonical_id": "game_nba_2025_20260222_cle_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "12p", + "game_datetime_utc": "2026-02-22T18:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "OKC", @@ -37821,8 +35720,7 @@ "canonical_id": "game_nba_2025_20260222_brk_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "3:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Brooklyn Nets", "home_team_abbrev": "ATL", @@ -37839,8 +35737,7 @@ "canonical_id": "game_nba_2025_20260222_tor_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "2:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Toronto Raptors", "home_team_abbrev": "MIL", @@ -37857,8 +35754,7 @@ "canonical_id": "game_nba_2025_20260222_den_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "12:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Golden State Warriors", "away_team": "Denver Nuggets", "home_team_abbrev": "GSW", @@ -37875,8 +35771,7 @@ "canonical_id": "game_nba_2025_20260222_dal_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "5p", + "game_datetime_utc": "2026-02-22T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Dallas Mavericks", "home_team_abbrev": "IND", @@ -37893,8 +35788,7 @@ "canonical_id": "game_nba_2025_20260222_cho_was", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-22T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Charlotte Hornets", "home_team_abbrev": "WAS", @@ -37911,8 +35805,7 @@ "canonical_id": "game_nba_2025_20260222_bos_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "3:30p", + "game_datetime_utc": "2026-02-22T23:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Boston Celtics", "home_team_abbrev": "LAL", @@ -37929,8 +35822,7 @@ "canonical_id": "game_mls_2026_20260223_nyc_lag", "sport": "MLS", "season": "2026", - "date": "2026-02-22", - "time": "4p", + "game_datetime_utc": "2026-02-23T00:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "New York New York City FC", "home_team_abbrev": "LAG", @@ -37947,8 +35839,7 @@ "canonical_id": "game_nba_2025_20260222_phi_min", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-23T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIN", @@ -37965,8 +35856,7 @@ "canonical_id": "game_nba_2025_20260222_por_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "8p", + "game_datetime_utc": "2026-02-23T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Portland Blazers", "home_team_abbrev": "PHX", @@ -37983,8 +35873,7 @@ "canonical_id": "game_nba_2025_20260222_nyk_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "7p", + "game_datetime_utc": "2026-02-23T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "New York Knicks", "home_team_abbrev": "CHI", @@ -38001,8 +35890,7 @@ "canonical_id": "game_nba_2025_20260222_orl_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-23T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Orlando Magic", "home_team_abbrev": "LAC", @@ -38019,8 +35907,7 @@ "canonical_id": "game_mls_2026_20260223_col_sea", "sport": "MLS", "season": "2026", - "date": "2026-02-22", - "time": "6:15p", + "game_datetime_utc": "2026-02-23T02:15:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SEA", @@ -38037,8 +35924,7 @@ "canonical_id": "game_nba_2025_20260223_sas_det", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "7p", + "game_datetime_utc": "2026-02-24T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "San Antonio Spurs", "home_team_abbrev": "DET", @@ -38055,8 +35941,7 @@ "canonical_id": "game_nba_2025_20260223_sac_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "7p", + "game_datetime_utc": "2026-02-24T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Sacramento Kings", "home_team_abbrev": "MEM", @@ -38073,8 +35958,7 @@ "canonical_id": "game_nba_2025_20260223_uta_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "8:30p", + "game_datetime_utc": "2026-02-24T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Utah Jazz", "home_team_abbrev": "HOU", @@ -38091,8 +35975,7 @@ "canonical_id": "game_nba_2025_20260224_phi_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "IND", @@ -38109,8 +35992,7 @@ "canonical_id": "game_nba_2025_20260224_was_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Washington Wizards", "home_team_abbrev": "ATL", @@ -38127,8 +36009,7 @@ "canonical_id": "game_nba_2025_20260224_okc_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "TOR", @@ -38145,8 +36026,7 @@ "canonical_id": "game_nba_2025_20260224_dal_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Dallas Mavericks", "home_team_abbrev": "BKN", @@ -38163,8 +36043,7 @@ "canonical_id": "game_nba_2025_20260224_cho_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Charlotte Hornets", "home_team_abbrev": "CHI", @@ -38181,8 +36060,7 @@ "canonical_id": "game_nba_2025_20260224_nyk_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "New York Knicks", "home_team_abbrev": "CLE", @@ -38199,8 +36077,7 @@ "canonical_id": "game_nba_2025_20260224_mia_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Miami Heat", "home_team_abbrev": "MIL", @@ -38217,8 +36094,7 @@ "canonical_id": "game_nba_2025_20260224_gsw_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Golden State Warriors", "home_team_abbrev": "NOP", @@ -38235,8 +36111,7 @@ "canonical_id": "game_nba_2025_20260224_bos_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "9p", + "game_datetime_utc": "2026-02-25T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Boston Celtics", "home_team_abbrev": "PHX", @@ -38253,8 +36128,7 @@ "canonical_id": "game_nba_2025_20260224_orl_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Orlando Magic", "home_team_abbrev": "LAL", @@ -38271,8 +36145,7 @@ "canonical_id": "game_nba_2025_20260224_min_por", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "8p", + "game_datetime_utc": "2026-02-25T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "POR", @@ -38289,8 +36162,7 @@ "canonical_id": "game_nba_2025_20260225_okc_det", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DET", @@ -38307,8 +36179,7 @@ "canonical_id": "game_nhl_2025_20260225_phi_was", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WAS", @@ -38325,8 +36196,7 @@ "canonical_id": "game_nhl_2025_20260225_buf_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Buffalo Sabres", "home_team_abbrev": "NJ", @@ -38343,8 +36213,7 @@ "canonical_id": "game_nba_2025_20260225_sas_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "San Antonio Spurs", "home_team_abbrev": "TOR", @@ -38361,8 +36230,7 @@ "canonical_id": "game_nba_2025_20260225_gsw_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "6:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Golden State Warriors", "home_team_abbrev": "MEM", @@ -38379,8 +36247,7 @@ "canonical_id": "game_nhl_2025_20260225_tor_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "TB", @@ -38397,8 +36264,7 @@ "canonical_id": "game_nba_2025_20260225_sac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Sacramento Kings", "home_team_abbrev": "HOU", @@ -38415,8 +36281,7 @@ "canonical_id": "game_nba_2025_20260225_cle_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIL", @@ -38433,8 +36298,7 @@ "canonical_id": "game_nhl_2025_20260225_sea_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Seattle Kraken", "home_team_abbrev": "DAL", @@ -38451,8 +36315,7 @@ "canonical_id": "game_nhl_2025_20260225_col_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T02:00:00Z", "home_team": "Utah Club", "away_team": "Colorado Avalanche", "home_team_abbrev": "ARI", @@ -38469,8 +36332,7 @@ "canonical_id": "game_nba_2025_20260225_bos_den", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "8p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Boston Celtics", "home_team_abbrev": "DEN", @@ -38487,8 +36349,7 @@ "canonical_id": "game_nhl_2025_20260225_wpg_van", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Winnipeg Jets", "home_team_abbrev": "VAN", @@ -38505,8 +36366,7 @@ "canonical_id": "game_nhl_2025_20260225_vgk_la", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "LA", @@ -38523,8 +36383,7 @@ "canonical_id": "game_nhl_2025_20260225_edm_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T03:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Edmonton Oilers", "home_team_abbrev": "ANA", @@ -38541,8 +36400,7 @@ "canonical_id": "game_nba_2025_20260226_cho_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Charlotte Hornets", "home_team_abbrev": "IND", @@ -38559,8 +36417,7 @@ "canonical_id": "game_nba_2025_20260226_mia_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "4p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Miami Heat", "home_team_abbrev": "PHI", @@ -38577,8 +36434,7 @@ "canonical_id": "game_nhl_2025_20260226_det_ott", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Detroit Red Wings", "home_team_abbrev": "OTT", @@ -38595,8 +36451,7 @@ "canonical_id": "game_nhl_2025_20260226_cbj_bos", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BOS", @@ -38613,8 +36468,7 @@ "canonical_id": "game_nhl_2025_20260226_tor_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "FLA", @@ -38631,8 +36485,7 @@ "canonical_id": "game_nhl_2025_20260226_nyi_mtl", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Islanders", "home_team_abbrev": "MTL", @@ -38649,8 +36502,7 @@ "canonical_id": "game_nhl_2025_20260226_njd_pit", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New Jersey Devils", "home_team_abbrev": "PIT", @@ -38667,8 +36519,7 @@ "canonical_id": "game_nhl_2025_20260226_tb_car", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CAR", @@ -38685,8 +36536,7 @@ "canonical_id": "game_nba_2025_20260226_sas_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "San Antonio Spurs", "home_team_abbrev": "BKN", @@ -38703,8 +36553,7 @@ "canonical_id": "game_nba_2025_20260226_hou_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Houston Rockets", "home_team_abbrev": "ORL", @@ -38721,8 +36570,7 @@ "canonical_id": "game_nba_2025_20260226_was_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Washington Wizards", "home_team_abbrev": "ATL", @@ -38739,8 +36587,7 @@ "canonical_id": "game_nba_2025_20260226_por_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Portland Blazers", "home_team_abbrev": "CHI", @@ -38757,8 +36604,7 @@ "canonical_id": "game_nhl_2025_20260226_sea_stl", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Seattle Kraken", "home_team_abbrev": "STL", @@ -38775,8 +36621,7 @@ "canonical_id": "game_nhl_2025_20260226_chi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NSH", @@ -38793,8 +36638,7 @@ "canonical_id": "game_nhl_2025_20260226_phi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "8p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "New York Rangers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYR", @@ -38811,8 +36655,7 @@ "canonical_id": "game_nba_2025_20260226_sac_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Sacramento Kings", "home_team_abbrev": "DAL", @@ -38829,8 +36672,7 @@ "canonical_id": "game_nba_2025_20260226_lal_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "9p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -38847,8 +36689,7 @@ "canonical_id": "game_nba_2025_20260226_nop_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Utah Jazz", "away_team": "New Orleans Pelicans", "home_team_abbrev": "UTA", @@ -38865,8 +36706,7 @@ "canonical_id": "game_nhl_2025_20260226_min_col", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Minnesota Wild", "home_team_abbrev": "COL", @@ -38883,8 +36723,7 @@ "canonical_id": "game_nba_2025_20260226_min_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAC", @@ -38901,8 +36740,7 @@ "canonical_id": "game_nhl_2025_20260226_cgy_sj", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Calgary Flames", "home_team_abbrev": "SJ", @@ -38919,8 +36757,7 @@ "canonical_id": "game_nhl_2025_20260226_edm_la", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Edmonton Oilers", "home_team_abbrev": "LA", @@ -38937,8 +36774,7 @@ "canonical_id": "game_nba_2025_20260227_cle_det", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DET", @@ -38955,8 +36791,7 @@ "canonical_id": "game_nhl_2025_20260227_vgk_was", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WAS", @@ -38973,8 +36808,7 @@ "canonical_id": "game_nhl_2025_20260227_buf_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Buffalo Sabres", "home_team_abbrev": "FLA", @@ -38991,8 +36825,7 @@ "canonical_id": "game_nba_2025_20260227_brk_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7:30p", + "game_datetime_utc": "2026-02-28T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Brooklyn Nets", "home_team_abbrev": "BOS", @@ -39009,8 +36842,7 @@ "canonical_id": "game_nba_2025_20260227_nyk_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New York Knicks", "home_team_abbrev": "MIL", @@ -39027,8 +36859,7 @@ "canonical_id": "game_nba_2025_20260227_mem_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7:30p", + "game_datetime_utc": "2026-02-28T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DAL", @@ -39045,8 +36876,7 @@ "canonical_id": "game_nhl_2025_20260227_min_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T02:00:00Z", "home_team": "Utah Club", "away_team": "Minnesota Wild", "home_team_abbrev": "ARI", @@ -39063,8 +36893,7 @@ "canonical_id": "game_nba_2025_20260227_den_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "8:30p", + "game_datetime_utc": "2026-02-28T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Denver Nuggets", "home_team_abbrev": "OKC", @@ -39081,8 +36910,7 @@ "canonical_id": "game_nhl_2025_20260227_wpg_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Winnipeg Jets", "home_team_abbrev": "ANA", @@ -39099,8 +36927,7 @@ "canonical_id": "game_nhl_2025_20260228_pit_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "12:30p", + "game_datetime_utc": "2026-02-28T17:30:00Z", "home_team": "New York Rangers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYR", @@ -39117,8 +36944,7 @@ "canonical_id": "game_nba_2025_20260228_por_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "1p", + "game_datetime_utc": "2026-02-28T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Portland Blazers", "home_team_abbrev": "CHA", @@ -39135,8 +36961,7 @@ "canonical_id": "game_mls_2026_20260228_mtl_chi", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "1:30p", + "game_datetime_utc": "2026-02-28T19:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CHI", @@ -39153,8 +36978,7 @@ "canonical_id": "game_mls_2026_20260228_ne_ny", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "2:30p", + "game_datetime_utc": "2026-02-28T19:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "New England New England Revolution", "home_team_abbrev": "RB", @@ -39171,8 +36995,7 @@ "canonical_id": "game_nba_2025_20260228_hou_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "3p", + "game_datetime_utc": "2026-02-28T20:00:00Z", "home_team": "Miami Heat", "away_team": "Houston Rockets", "home_team_abbrev": "MIA", @@ -39189,8 +37012,7 @@ "canonical_id": "game_nhl_2025_20260228_bos_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "3p", + "game_datetime_utc": "2026-02-28T20:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Boston Bruins", "home_team_abbrev": "PHI", @@ -39207,8 +37029,7 @@ "canonical_id": "game_nhl_2025_20260228_edm_sj", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "1p", + "game_datetime_utc": "2026-02-28T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Edmonton Oilers", "home_team_abbrev": "SJ", @@ -39225,8 +37046,7 @@ "canonical_id": "game_mls_2026_20260228_por_col", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "2:30p", + "game_datetime_utc": "2026-02-28T21:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Portland Portland Timbers", "home_team_abbrev": "COL", @@ -39243,8 +37063,7 @@ "canonical_id": "game_mls_2026_20260228_cin_min", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "3:30p", + "game_datetime_utc": "2026-02-28T21:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MIN", @@ -39261,8 +37080,7 @@ "canonical_id": "game_nhl_2025_20260228_njd_stl", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-02-28T22:00:00Z", "home_team": "St. Louis Blues", "away_team": "New Jersey Devils", "home_team_abbrev": "STL", @@ -39279,8 +37097,7 @@ "canonical_id": "game_nhl_2025_20260228_nyi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "6p", + "game_datetime_utc": "2026-02-28T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Islanders", "home_team_abbrev": "CBJ", @@ -39297,8 +37114,7 @@ "canonical_id": "game_nhl_2025_20260228_chi_col", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-02-28T23:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Chicago Blackhawks", "home_team_abbrev": "COL", @@ -39315,8 +37131,7 @@ "canonical_id": "game_nba_2025_20260228_tor_was", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Toronto Raptors", "home_team_abbrev": "WAS", @@ -39333,8 +37148,7 @@ "canonical_id": "game_nhl_2025_20260228_was_mtl", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Washington Capitals", "home_team_abbrev": "MTL", @@ -39351,8 +37165,7 @@ "canonical_id": "game_nhl_2025_20260228_cgy_la", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Calgary Flames", "home_team_abbrev": "LA", @@ -39369,8 +37182,7 @@ "canonical_id": "game_nhl_2025_20260228_buf_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Buffalo Sabres", "home_team_abbrev": "TB", @@ -39387,8 +37199,7 @@ "canonical_id": "game_nhl_2025_20260228_det_car", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Detroit Red Wings", "home_team_abbrev": "CAR", @@ -39405,8 +37216,7 @@ "canonical_id": "game_nhl_2025_20260228_ott_tor", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Ottawa Senators", "home_team_abbrev": "TOR", @@ -39423,8 +37233,7 @@ "canonical_id": "game_mls_2026_20260301_sea_slc", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-01T00:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SLC", @@ -39441,8 +37250,7 @@ "canonical_id": "game_mls_2026_20260301_atl_sj", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "4:30p", + "game_datetime_utc": "2026-03-01T00:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "SJ", @@ -39459,8 +37267,7 @@ "canonical_id": "game_nhl_2025_20260228_nsh_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Nashville Predators", "home_team_abbrev": "DAL", @@ -39477,8 +37284,7 @@ "canonical_id": "game_mls_2026_20260301_lafc_hou", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "HOU", @@ -39495,8 +37301,7 @@ "canonical_id": "game_mls_2026_20260301_clb_skc", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "SKC", @@ -39513,8 +37318,7 @@ "canonical_id": "game_mls_2026_20260301_nsh_dal", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Nashville Nashville SC", "home_team_abbrev": "DAL", @@ -39531,8 +37335,7 @@ "canonical_id": "game_nba_2025_20260228_lal_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "GSW", @@ -39549,8 +37352,7 @@ "canonical_id": "game_mls_2026_20260301_tor_van", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "6:30p", + "game_datetime_utc": "2026-03-01T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Toronto Toronto FC", "home_team_abbrev": "VAN", @@ -39567,8 +37369,7 @@ "canonical_id": "game_nba_2025_20260228_nop_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T02:30:00Z", "home_team": "Utah Jazz", "away_team": "New Orleans Pelicans", "home_team_abbrev": "UTA", @@ -39585,8 +37386,7 @@ "canonical_id": "game_nhl_2025_20260228_van_sea", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vancouver Canucks", "home_team_abbrev": "SEA", @@ -39603,8 +37403,7 @@ "canonical_id": "game_mls_2026_20260301_clt_lag", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T03:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "LAG", @@ -39621,8 +37420,7 @@ "canonical_id": "game_nba_2025_20260301_sas_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T18:00:00Z", "home_team": "New York Knicks", "away_team": "San Antonio Spurs", "home_team_abbrev": "NYK", @@ -39639,8 +37437,7 @@ "canonical_id": "game_nhl_2025_20260301_vgk_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T18:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Vegas Golden Knights", "home_team_abbrev": "PIT", @@ -39657,8 +37454,7 @@ "canonical_id": "game_mlb_2026_20260301_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -39675,8 +37471,7 @@ "canonical_id": "game_mlb_2026_20260301_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -39693,8 +37488,7 @@ "canonical_id": "game_mlb_2026_20260301_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -39711,8 +37505,7 @@ "canonical_id": "game_mlb_2026_20260301_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -39729,8 +37522,7 @@ "canonical_id": "game_mlb_2026_20260301_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -39747,8 +37539,7 @@ "canonical_id": "game_mlb_2026_20260301_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -39765,8 +37556,7 @@ "canonical_id": "game_mlb_2026_20260301_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -39783,8 +37573,7 @@ "canonical_id": "game_mlb_2026_20260301_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T18:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -39801,8 +37590,7 @@ "canonical_id": "game_mls_2026_20260301_dc_aus", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "1:30p", + "game_datetime_utc": "2026-03-01T19:30:00Z", "home_team": "Austin Austin FC", "away_team": "Washington D.C. United", "home_team_abbrev": "AUS", @@ -39819,8 +37607,7 @@ "canonical_id": "game_mlb_2026_20260301_chw_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -39837,8 +37624,7 @@ "canonical_id": "game_mlb_2026_20260301_cin_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cincinnati Reds", "home_team_abbrev": "OAK", @@ -39855,8 +37641,7 @@ "canonical_id": "game_mlb_2026_20260301_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -39873,8 +37658,7 @@ "canonical_id": "game_mlb_2026_20260301_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -39891,8 +37675,7 @@ "canonical_id": "game_mlb_2026_20260301_col_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Colorado Rockies", "home_team_abbrev": "CLE", @@ -39909,8 +37692,7 @@ "canonical_id": "game_mlb_2026_20260301_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -39927,8 +37709,7 @@ "canonical_id": "game_mlb_2026_20260301_cle_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -39945,8 +37726,7 @@ "canonical_id": "game_mlb_2026_20260301_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -39963,8 +37743,7 @@ "canonical_id": "game_nba_2025_20260301_mil_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "2:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Chicago Bulls", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHI", @@ -39981,8 +37760,7 @@ "canonical_id": "game_nba_2025_20260301_min_den", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "1:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Denver Nuggets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DEN", @@ -39999,8 +37777,7 @@ "canonical_id": "game_nba_2025_20260301_cle_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "3:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BKN", @@ -40017,8 +37794,7 @@ "canonical_id": "game_nhl_2025_20260301_wpg_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Winnipeg Jets", "home_team_abbrev": "SJ", @@ -40035,8 +37811,7 @@ "canonical_id": "game_nhl_2025_20260301_chi_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "2p", + "game_datetime_utc": "2026-03-01T21:00:00Z", "home_team": "Utah Club", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ARI", @@ -40053,8 +37828,7 @@ "canonical_id": "game_mls_2026_20260301_nyc_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "4:30p", + "game_datetime_utc": "2026-03-01T21:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New York New York City FC", "home_team_abbrev": "PHI", @@ -40071,8 +37845,7 @@ "canonical_id": "game_nba_2025_20260301_mem_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "5p", + "game_datetime_utc": "2026-03-01T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "IND", @@ -40089,8 +37862,7 @@ "canonical_id": "game_nhl_2025_20260301_stl_min", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "4p", + "game_datetime_utc": "2026-03-01T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "St. Louis Blues", "home_team_abbrev": "MIN", @@ -40107,8 +37879,7 @@ "canonical_id": "game_nba_2025_20260301_phi_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BOS", @@ -40125,8 +37896,7 @@ "canonical_id": "game_nba_2025_20260301_det_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Detroit Pistons", "home_team_abbrev": "ORL", @@ -40143,8 +37913,7 @@ "canonical_id": "game_nba_2025_20260301_por_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Portland Blazers", "home_team_abbrev": "ATL", @@ -40161,8 +37930,7 @@ "canonical_id": "game_nhl_2025_20260301_fla_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "6:30p", + "game_datetime_utc": "2026-03-01T23:30:00Z", "home_team": "New York Islanders", "away_team": "Florida Panthers", "home_team_abbrev": "NYI", @@ -40179,8 +37947,7 @@ "canonical_id": "game_mls_2026_20260302_mia_orl", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "7p", + "game_datetime_utc": "2026-03-02T00:00:00Z", "home_team": "Orlando Orlando City", "away_team": "Miami Inter Miami", "home_team_abbrev": "ORL", @@ -40197,8 +37964,7 @@ "canonical_id": "game_nba_2025_20260301_okc_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "7p", + "game_datetime_utc": "2026-03-02T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DAL", @@ -40215,8 +37981,7 @@ "canonical_id": "game_nhl_2025_20260301_cgy_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "5p", + "game_datetime_utc": "2026-03-02T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Calgary Flames", "home_team_abbrev": "ANA", @@ -40233,8 +37998,7 @@ "canonical_id": "game_mls_2026_20260302_stl_sd", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-02T02:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SD", @@ -40251,8 +38015,7 @@ "canonical_id": "game_nba_2025_20260301_nop_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-02T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAC", @@ -40269,8 +38032,7 @@ "canonical_id": "game_nba_2025_20260301_sac_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6:30p", + "game_datetime_utc": "2026-03-02T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAL", @@ -40287,8 +38049,7 @@ "canonical_id": "game_mlb_2026_20260302_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -40305,8 +38066,7 @@ "canonical_id": "game_mlb_2026_20260302_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -40323,8 +38083,7 @@ "canonical_id": "game_mlb_2026_20260302_atl_det", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Atlanta Braves", "home_team_abbrev": "DET", @@ -40341,8 +38100,7 @@ "canonical_id": "game_mlb_2026_20260302_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -40359,8 +38117,7 @@ "canonical_id": "game_mlb_2026_20260302_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:07p", + "game_datetime_utc": "2026-03-02T18:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -40377,8 +38134,7 @@ "canonical_id": "game_nhl_2025_20260302_det_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "1p", + "game_datetime_utc": "2026-03-02T19:00:00Z", "home_team": "Nashville Predators", "away_team": "Detroit Red Wings", "home_team_abbrev": "NSH", @@ -40395,8 +38151,7 @@ "canonical_id": "game_mlb_2026_20260302_sf_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "CHW", @@ -40413,8 +38168,7 @@ "canonical_id": "game_mlb_2026_20260302_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -40431,8 +38185,7 @@ "canonical_id": "game_mlb_2026_20260302_cle_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -40449,8 +38202,7 @@ "canonical_id": "game_mlb_2026_20260302_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -40467,8 +38219,7 @@ "canonical_id": "game_mlb_2026_20260302_kc_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -40485,8 +38236,7 @@ "canonical_id": "game_mlb_2026_20260302_oak_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -40503,8 +38253,7 @@ "canonical_id": "game_nba_2025_20260302_hou_was", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Houston Rockets", "home_team_abbrev": "WAS", @@ -40521,8 +38270,7 @@ "canonical_id": "game_nhl_2025_20260302_cbj_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T00:00:00Z", "home_team": "New York Rangers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYR", @@ -40539,8 +38287,7 @@ "canonical_id": "game_nba_2025_20260302_bos_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "6:30p", + "game_datetime_utc": "2026-03-03T00:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -40557,8 +38304,7 @@ "canonical_id": "game_nhl_2025_20260302_phi_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7:30p", + "game_datetime_utc": "2026-03-03T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Philadelphia Flyers", "home_team_abbrev": "TOR", @@ -40575,8 +38321,7 @@ "canonical_id": "game_nba_2025_20260302_den_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Denver Nuggets", "home_team_abbrev": "UTA", @@ -40593,8 +38338,7 @@ "canonical_id": "game_nba_2025_20260302_lac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "GSW", @@ -40611,8 +38355,7 @@ "canonical_id": "game_nhl_2025_20260302_dal_van", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Dallas Stars", "home_team_abbrev": "VAN", @@ -40629,8 +38372,7 @@ "canonical_id": "game_nhl_2025_20260302_car_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Carolina Hurricanes", "home_team_abbrev": "SEA", @@ -40647,8 +38389,7 @@ "canonical_id": "game_nhl_2025_20260302_col_la", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7:30p", + "game_datetime_utc": "2026-03-03T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Colorado Avalanche", "home_team_abbrev": "LA", @@ -40665,8 +38406,7 @@ "canonical_id": "game_mlb_2026_20260303_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T18:05:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -40683,8 +38423,7 @@ "canonical_id": "game_mlb_2026_20260303_phi_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T18:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TB", @@ -40701,8 +38440,7 @@ "canonical_id": "game_mlb_2026_20260303_lad_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CLE", @@ -40719,8 +38457,7 @@ "canonical_id": "game_mlb_2026_20260303_sd_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "San Diego Padres", "home_team_abbrev": "CHW", @@ -40737,8 +38474,7 @@ "canonical_id": "game_mlb_2026_20260303_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:10p", + "game_datetime_utc": "2026-03-03T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -40755,8 +38491,7 @@ "canonical_id": "game_nba_2025_20260303_was_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Washington Wizards", "home_team_abbrev": "ORL", @@ -40773,8 +38508,7 @@ "canonical_id": "game_nba_2025_20260303_det_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "6p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Detroit Pistons", "home_team_abbrev": "CLE", @@ -40791,8 +38525,7 @@ "canonical_id": "game_nba_2025_20260303_dal_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Dallas Mavericks", "home_team_abbrev": "CHA", @@ -40809,8 +38542,7 @@ "canonical_id": "game_nhl_2025_20260303_pit_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BOS", @@ -40827,8 +38559,7 @@ "canonical_id": "game_nhl_2025_20260303_ari_was", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Utah Club", "home_team_abbrev": "WAS", @@ -40845,8 +38576,7 @@ "canonical_id": "game_nhl_2025_20260303_fla_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Florida Panthers", "home_team_abbrev": "NJ", @@ -40863,8 +38593,7 @@ "canonical_id": "game_nhl_2025_20260303_nsh_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Nashville Predators", "home_team_abbrev": "CBJ", @@ -40881,8 +38610,7 @@ "canonical_id": "game_nhl_2025_20260303_vgk_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Vegas Golden Knights", "home_team_abbrev": "BUF", @@ -40899,8 +38627,7 @@ "canonical_id": "game_nba_2025_20260303_brk_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T00:30:00Z", "home_team": "Miami Heat", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIA", @@ -40917,8 +38644,7 @@ "canonical_id": "game_nba_2025_20260303_nyk_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -40935,8 +38661,7 @@ "canonical_id": "game_nba_2025_20260303_mem_min", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIN", @@ -40953,8 +38678,7 @@ "canonical_id": "game_nba_2025_20260303_sas_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "5p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHI", @@ -40971,8 +38695,7 @@ "canonical_id": "game_nba_2025_20260303_okc_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CHI", @@ -40989,8 +38712,7 @@ "canonical_id": "game_nhl_2025_20260303_chi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WPG", @@ -41007,8 +38729,7 @@ "canonical_id": "game_nhl_2025_20260303_ott_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Ottawa Senators", "home_team_abbrev": "EDM", @@ -41025,8 +38746,7 @@ "canonical_id": "game_nhl_2025_20260303_dal_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Dallas Stars", "home_team_abbrev": "CGY", @@ -41043,8 +38763,7 @@ "canonical_id": "game_nhl_2025_20260303_tb_min", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "8:30p", + "game_datetime_utc": "2026-03-04T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MIN", @@ -41061,8 +38780,7 @@ "canonical_id": "game_nhl_2025_20260303_col_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Colorado Avalanche", "home_team_abbrev": "ANA", @@ -41079,8 +38797,7 @@ "canonical_id": "game_nhl_2025_20260303_mtl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Montreal Canadiens", "home_team_abbrev": "SJ", @@ -41097,8 +38814,7 @@ "canonical_id": "game_nba_2025_20260303_nop_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAL", @@ -41115,8 +38831,7 @@ "canonical_id": "game_nba_2025_20260303_phx_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "8p", + "game_datetime_utc": "2026-03-04T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Phoenix Suns", "home_team_abbrev": "SAC", @@ -41133,8 +38848,7 @@ "canonical_id": "game_mlb_2026_20260304_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -41151,8 +38865,7 @@ "canonical_id": "game_mlb_2026_20260304_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -41169,8 +38882,7 @@ "canonical_id": "game_mlb_2026_20260304_ari_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "OAK", @@ -41187,8 +38899,7 @@ "canonical_id": "game_mlb_2026_20260304_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:10p", + "game_datetime_utc": "2026-03-04T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -41205,8 +38916,7 @@ "canonical_id": "game_nba_2025_20260304_okc_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "New York Knicks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "NYK", @@ -41223,8 +38933,7 @@ "canonical_id": "game_nhl_2025_20260304_vgk_det", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DET", @@ -41241,8 +38950,7 @@ "canonical_id": "game_nhl_2025_20260304_tor_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NJ", @@ -41259,8 +38967,7 @@ "canonical_id": "game_nba_2025_20260304_uta_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "4:30p", + "game_datetime_utc": "2026-03-05T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Utah Jazz", "home_team_abbrev": "PHI", @@ -41277,8 +38984,7 @@ "canonical_id": "game_nba_2025_20260304_cho_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7:30p", + "game_datetime_utc": "2026-03-05T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Charlotte Hornets", "home_team_abbrev": "BOS", @@ -41295,8 +39001,7 @@ "canonical_id": "game_nba_2025_20260304_por_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Portland Blazers", "home_team_abbrev": "MEM", @@ -41313,8 +39018,7 @@ "canonical_id": "game_mlb_2026_20260305_sea_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "7:05p", + "game_datetime_utc": "2026-03-05T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Seattle Mariners", "home_team_abbrev": "SF", @@ -41331,8 +39035,7 @@ "canonical_id": "game_nba_2025_20260304_atl_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "8:30p", + "game_datetime_utc": "2026-03-05T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIL", @@ -41349,8 +39052,7 @@ "canonical_id": "game_nhl_2025_20260304_nyi_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New York Islanders", "home_team_abbrev": "ANA", @@ -41367,8 +39069,7 @@ "canonical_id": "game_nhl_2025_20260304_car_van", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "VAN", @@ -41385,8 +39086,7 @@ "canonical_id": "game_nhl_2025_20260304_stl_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "St. Louis Blues", "home_team_abbrev": "SEA", @@ -41403,8 +39103,7 @@ "canonical_id": "game_nba_2025_20260304_ind_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7:30p", + "game_datetime_utc": "2026-03-05T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Indiana Pacers", "home_team_abbrev": "LAC", @@ -41421,8 +39120,7 @@ "canonical_id": "game_mlb_2026_20260305_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -41439,8 +39137,7 @@ "canonical_id": "game_mlb_2026_20260305_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -41457,8 +39154,7 @@ "canonical_id": "game_mlb_2026_20260305_bos_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Boston Red Sox", "home_team_abbrev": "PHI", @@ -41475,8 +39171,7 @@ "canonical_id": "game_mlb_2026_20260305_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -41493,8 +39188,7 @@ "canonical_id": "game_mlb_2026_20260305_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -41511,8 +39205,7 @@ "canonical_id": "game_mlb_2026_20260305_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -41529,8 +39222,7 @@ "canonical_id": "game_mlb_2026_20260305_hou_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T18:10:00Z", "home_team": "Miami Marlins", "away_team": "Houston Astros", "home_team_abbrev": "MIA", @@ -41547,8 +39239,7 @@ "canonical_id": "game_mlb_2026_20260305_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -41565,8 +39256,7 @@ "canonical_id": "game_mlb_2026_20260305_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -41583,8 +39273,7 @@ "canonical_id": "game_mlb_2026_20260305_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -41601,8 +39290,7 @@ "canonical_id": "game_mlb_2026_20260305_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -41619,8 +39307,7 @@ "canonical_id": "game_mlb_2026_20260305_mil_col", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -41637,8 +39324,7 @@ "canonical_id": "game_nba_2025_20260305_uta_was", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Utah Jazz", "home_team_abbrev": "WAS", @@ -41655,8 +39341,7 @@ "canonical_id": "game_nba_2025_20260305_dal_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Dallas Mavericks", "home_team_abbrev": "ORL", @@ -41673,8 +39358,7 @@ "canonical_id": "game_nhl_2025_20260305_tor_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYR", @@ -41691,8 +39375,7 @@ "canonical_id": "game_nhl_2025_20260305_fla_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Florida Panthers", "home_team_abbrev": "CBJ", @@ -41709,8 +39392,7 @@ "canonical_id": "game_nhl_2025_20260305_ari_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Utah Club", "home_team_abbrev": "PHI", @@ -41727,8 +39409,7 @@ "canonical_id": "game_nhl_2025_20260305_buf_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Buffalo Sabres", "home_team_abbrev": "PIT", @@ -41745,8 +39426,7 @@ "canonical_id": "game_nba_2025_20260305_gsw_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "6:30p", + "game_datetime_utc": "2026-03-06T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Golden State Warriors", "home_team_abbrev": "HOU", @@ -41763,8 +39443,7 @@ "canonical_id": "game_nba_2025_20260305_brk_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7:30p", + "game_datetime_utc": "2026-03-06T00:30:00Z", "home_team": "Miami Heat", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIA", @@ -41781,8 +39460,7 @@ "canonical_id": "game_nba_2025_20260305_tor_min", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Toronto Raptors", "home_team_abbrev": "MIN", @@ -41799,8 +39477,7 @@ "canonical_id": "game_nba_2025_20260305_det_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Detroit Pistons", "home_team_abbrev": "SAS", @@ -41817,8 +39494,7 @@ "canonical_id": "game_nhl_2025_20260305_tb_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WPG", @@ -41835,8 +39511,7 @@ "canonical_id": "game_nhl_2025_20260305_bos_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Boston Bruins", "home_team_abbrev": "NSH", @@ -41853,8 +39528,7 @@ "canonical_id": "game_mlb_2026_20260306_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T01:05:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -41871,8 +39545,7 @@ "canonical_id": "game_mlb_2026_20260306_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -41889,8 +39562,7 @@ "canonical_id": "game_nba_2025_20260305_chi_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "9p", + "game_datetime_utc": "2026-03-06T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Chicago Bulls", "home_team_abbrev": "PHX", @@ -41907,8 +39579,7 @@ "canonical_id": "game_nhl_2025_20260305_ott_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Ottawa Senators", "home_team_abbrev": "CGY", @@ -41925,8 +39596,7 @@ "canonical_id": "game_nhl_2025_20260305_nyi_la", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "6:30p", + "game_datetime_utc": "2026-03-06T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "New York Islanders", "home_team_abbrev": "LA", @@ -41943,8 +39613,7 @@ "canonical_id": "game_nba_2025_20260305_nop_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAC", @@ -41961,8 +39630,7 @@ "canonical_id": "game_nba_2025_20260305_lal_den", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "8p", + "game_datetime_utc": "2026-03-06T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DEN", @@ -41979,8 +39647,7 @@ "canonical_id": "game_mlb_2026_20260306_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -41997,8 +39664,7 @@ "canonical_id": "game_mlb_2026_20260306_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -42015,8 +39681,7 @@ "canonical_id": "game_mlb_2026_20260306_stl_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "St. Louis Cardinals", "home_team_abbrev": "BAL", @@ -42033,8 +39698,7 @@ "canonical_id": "game_mlb_2026_20260306_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -42051,8 +39715,7 @@ "canonical_id": "game_mlb_2026_20260306_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:07p", + "game_datetime_utc": "2026-03-06T18:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -42069,8 +39732,7 @@ "canonical_id": "game_mlb_2026_20260306_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -42087,8 +39749,7 @@ "canonical_id": "game_mlb_2026_20260306_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -42105,8 +39766,7 @@ "canonical_id": "game_mlb_2026_20260306_col_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -42123,8 +39783,7 @@ "canonical_id": "game_mlb_2026_20260306_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -42141,8 +39800,7 @@ "canonical_id": "game_mlb_2026_20260306_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:10p", + "game_datetime_utc": "2026-03-06T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -42159,8 +39817,7 @@ "canonical_id": "game_mlb_2026_20260306_chw_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:10p", + "game_datetime_utc": "2026-03-06T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -42177,8 +39834,7 @@ "canonical_id": "game_mlb_2026_20260306_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T23:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -42195,8 +39851,7 @@ "canonical_id": "game_mlb_2026_20260306_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:35p", + "game_datetime_utc": "2026-03-06T23:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -42213,8 +39868,7 @@ "canonical_id": "game_nba_2025_20260306_mia_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Miami Heat", "home_team_abbrev": "CHA", @@ -42231,8 +39885,7 @@ "canonical_id": "game_nba_2025_20260306_dal_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Dallas Mavericks", "home_team_abbrev": "BOS", @@ -42249,8 +39902,7 @@ "canonical_id": "game_nhl_2025_20260306_fla_det", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Florida Panthers", "home_team_abbrev": "DET", @@ -42267,8 +39919,7 @@ "canonical_id": "game_mlb_2026_20260307_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "7:10p", + "game_datetime_utc": "2026-03-07T00:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -42285,8 +39936,7 @@ "canonical_id": "game_nba_2025_20260306_por_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Portland Blazers", "home_team_abbrev": "HOU", @@ -42303,8 +39953,7 @@ "canonical_id": "game_nhl_2025_20260306_col_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Colorado Avalanche", "home_team_abbrev": "DAL", @@ -42321,8 +39970,7 @@ "canonical_id": "game_mlb_2026_20260307_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:05p", + "game_datetime_utc": "2026-03-07T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -42339,8 +39987,7 @@ "canonical_id": "game_mlb_2026_20260307_chc_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:10p", + "game_datetime_utc": "2026-03-07T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -42357,8 +40004,7 @@ "canonical_id": "game_nhl_2025_20260306_van_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7:30p", + "game_datetime_utc": "2026-03-07T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vancouver Canucks", "home_team_abbrev": "CHI", @@ -42375,8 +40021,7 @@ "canonical_id": "game_nba_2025_20260306_nop_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "9p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHX", @@ -42393,8 +40038,7 @@ "canonical_id": "game_nba_2025_20260306_nyk_den", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "New York Knicks", "home_team_abbrev": "DEN", @@ -42411,8 +40055,7 @@ "canonical_id": "game_nhl_2025_20260306_mtl_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "6p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Montreal Canadiens", "home_team_abbrev": "ANA", @@ -42429,8 +40072,7 @@ "canonical_id": "game_nhl_2025_20260306_car_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "EDM", @@ -42447,8 +40089,7 @@ "canonical_id": "game_nba_2025_20260306_lac_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "8:30p", + "game_datetime_utc": "2026-03-07T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAS", @@ -42465,8 +40106,7 @@ "canonical_id": "game_nhl_2025_20260306_min_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Minnesota Wild", "home_team_abbrev": "VGK", @@ -42483,8 +40123,7 @@ "canonical_id": "game_nhl_2025_20260306_stl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "St. Louis Blues", "home_team_abbrev": "SJ", @@ -42501,8 +40140,7 @@ "canonical_id": "game_nba_2025_20260306_ind_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7:30p", + "game_datetime_utc": "2026-03-07T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Indiana Pacers", "home_team_abbrev": "LAL", @@ -42519,8 +40157,7 @@ "canonical_id": "game_mlb_2026_20260307_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "12:05p", + "game_datetime_utc": "2026-03-07T17:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -42537,8 +40174,7 @@ "canonical_id": "game_nhl_2025_20260307_was_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "12:30p", + "game_datetime_utc": "2026-03-07T17:30:00Z", "home_team": "Boston Bruins", "away_team": "Washington Capitals", "home_team_abbrev": "BOS", @@ -42555,8 +40191,7 @@ "canonical_id": "game_mlb_2026_20260307_bal_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Baltimore Orioles", "home_team_abbrev": "ATL", @@ -42573,8 +40208,7 @@ "canonical_id": "game_mlb_2026_20260307_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -42591,8 +40225,7 @@ "canonical_id": "game_mlb_2026_20260307_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -42609,8 +40242,7 @@ "canonical_id": "game_mlb_2026_20260307_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -42627,8 +40259,7 @@ "canonical_id": "game_mlb_2026_20260307_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -42645,8 +40276,7 @@ "canonical_id": "game_mlb_2026_20260307_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -42663,8 +40293,7 @@ "canonical_id": "game_mls_2026_20260307_hou_ne", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "2:30p", + "game_datetime_utc": "2026-03-07T19:30:00Z", "home_team": "New England New England Revolution", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "NE", @@ -42681,8 +40310,7 @@ "canonical_id": "game_mls_2026_20260307_orl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "2:30p", + "game_datetime_utc": "2026-03-07T19:30:00Z", "home_team": "New York New York City FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "NYC", @@ -42699,8 +40327,7 @@ "canonical_id": "game_nba_2025_20260307_orl_min", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "2p", + "game_datetime_utc": "2026-03-07T20:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Orlando Magic", "home_team_abbrev": "MIN", @@ -42717,8 +40344,7 @@ "canonical_id": "game_nhl_2025_20260307_nyr_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "3p", + "game_datetime_utc": "2026-03-07T20:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Rangers", "home_team_abbrev": "NJ", @@ -42735,8 +40361,7 @@ "canonical_id": "game_mlb_2026_20260307_cin_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Cincinnati Reds", "home_team_abbrev": "KC", @@ -42753,8 +40378,7 @@ "canonical_id": "game_mlb_2026_20260307_tex_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Texas Rangers", "home_team_abbrev": "SF", @@ -42771,8 +40395,7 @@ "canonical_id": "game_mlb_2026_20260307_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -42789,8 +40412,7 @@ "canonical_id": "game_mlb_2026_20260307_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -42807,8 +40429,7 @@ "canonical_id": "game_mlb_2026_20260307_chw_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -42825,8 +40446,7 @@ "canonical_id": "game_mlb_2026_20260307_mil_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -42843,8 +40463,7 @@ "canonical_id": "game_mlb_2026_20260307_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -42861,8 +40480,7 @@ "canonical_id": "game_mlb_2026_20260307_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T21:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -42879,8 +40497,7 @@ "canonical_id": "game_mls_2026_20260307_mia_dc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "4:30p", + "game_datetime_utc": "2026-03-07T21:30:00Z", "home_team": "Washington D.C. United", "away_team": "Miami Inter Miami", "home_team_abbrev": "DC", @@ -42897,8 +40514,7 @@ "canonical_id": "game_nhl_2025_20260307_phi_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "5:30p", + "game_datetime_utc": "2026-03-07T22:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "PIT", @@ -42915,8 +40531,7 @@ "canonical_id": "game_nhl_2025_20260307_nsh_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "5:30p", + "game_datetime_utc": "2026-03-07T22:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Nashville Predators", "home_team_abbrev": "BUF", @@ -42933,8 +40548,7 @@ "canonical_id": "game_nba_2025_20260307_brk_det", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "6p", + "game_datetime_utc": "2026-03-07T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Brooklyn Nets", "home_team_abbrev": "DET", @@ -42951,8 +40565,7 @@ "canonical_id": "game_mlb_2026_20260307_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "6:05p", + "game_datetime_utc": "2026-03-07T23:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -42969,8 +40582,7 @@ "canonical_id": "game_nhl_2025_20260307_van_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "6p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vancouver Canucks", "home_team_abbrev": "WPG", @@ -42987,8 +40599,7 @@ "canonical_id": "game_nhl_2025_20260307_tb_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "TOR", @@ -43005,8 +40616,7 @@ "canonical_id": "game_nhl_2025_20260307_mtl_la", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "4p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Montreal Canadiens", "home_team_abbrev": "LA", @@ -43023,8 +40633,7 @@ "canonical_id": "game_nhl_2025_20260307_ari_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Utah Club", "home_team_abbrev": "CBJ", @@ -43041,8 +40650,7 @@ "canonical_id": "game_mls_2026_20260308_slc_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "ATL", @@ -43059,8 +40667,7 @@ "canonical_id": "game_mls_2026_20260308_sj_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "PHI", @@ -43077,8 +40684,7 @@ "canonical_id": "game_mls_2026_20260308_chi_clb", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CLB", @@ -43095,8 +40701,7 @@ "canonical_id": "game_mls_2026_20260308_aus_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Austin Austin FC", "home_team_abbrev": "CLT", @@ -43113,8 +40718,7 @@ "canonical_id": "game_nba_2025_20260307_phi_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ATL", @@ -43131,8 +40735,7 @@ "canonical_id": "game_nba_2025_20260307_lac_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MEM", @@ -43149,8 +40752,7 @@ "canonical_id": "game_nba_2025_20260307_uta_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Utah Jazz", "home_team_abbrev": "MIL", @@ -43167,8 +40769,7 @@ "canonical_id": "game_mlb_2026_20260308_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "6:05p", + "game_datetime_utc": "2026-03-08T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -43185,8 +40786,7 @@ "canonical_id": "game_mls_2026_20260308_sea_stl", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "STL", @@ -43203,8 +40803,7 @@ "canonical_id": "game_mls_2026_20260308_min_nsh", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "NSH", @@ -43221,8 +40820,7 @@ "canonical_id": "game_mls_2026_20260308_sd_skc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SKC", @@ -43239,8 +40837,7 @@ "canonical_id": "game_nba_2025_20260307_gsw_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Golden State Warriors", "home_team_abbrev": "OKC", @@ -43257,8 +40854,7 @@ "canonical_id": "game_mls_2026_20260308_lag_col", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T02:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "COL", @@ -43275,8 +40871,7 @@ "canonical_id": "game_nhl_2025_20260307_nyi_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "New York Islanders", "home_team_abbrev": "SJ", @@ -43293,8 +40888,7 @@ "canonical_id": "game_nhl_2025_20260307_ott_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Ottawa Senators", "home_team_abbrev": "SEA", @@ -43311,8 +40905,7 @@ "canonical_id": "game_nhl_2025_20260307_car_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "8p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CGY", @@ -43329,8 +40922,7 @@ "canonical_id": "game_mls_2026_20260308_dal_lafc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T03:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "LAFC", @@ -43347,8 +40939,7 @@ "canonical_id": "game_mls_2026_20260308_van_por", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T03:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "POR", @@ -43365,8 +40956,7 @@ "canonical_id": "game_nba_2025_20260308_bos_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "12p", + "game_datetime_utc": "2026-03-08T17:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Boston Celtics", "home_team_abbrev": "CLE", @@ -43383,8 +40973,7 @@ "canonical_id": "game_mlb_2026_20260308_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -43401,8 +40990,7 @@ "canonical_id": "game_mlb_2026_20260308_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -43419,8 +41007,7 @@ "canonical_id": "game_mlb_2026_20260308_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -43437,8 +41024,7 @@ "canonical_id": "game_mlb_2026_20260308_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -43455,8 +41041,7 @@ "canonical_id": "game_mlb_2026_20260308_atl_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Atlanta Braves", "home_team_abbrev": "TB", @@ -43473,8 +41058,7 @@ "canonical_id": "game_mlb_2026_20260308_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:07p", + "game_datetime_utc": "2026-03-08T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -43491,8 +41075,7 @@ "canonical_id": "game_mlb_2026_20260308_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T17:10:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -43509,8 +41092,7 @@ "canonical_id": "game_mlb_2026_20260308_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T17:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -43527,8 +41109,7 @@ "canonical_id": "game_nhl_2025_20260308_min_col", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "12p", + "game_datetime_utc": "2026-03-08T18:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Minnesota Wild", "home_team_abbrev": "COL", @@ -43545,8 +41126,7 @@ "canonical_id": "game_nba_2025_20260308_nyk_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "12:30p", + "game_datetime_utc": "2026-03-08T19:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New York Knicks", "home_team_abbrev": "LAL", @@ -43563,8 +41143,7 @@ "canonical_id": "game_mlb_2026_20260308_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -43581,8 +41160,7 @@ "canonical_id": "game_mlb_2026_20260308_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -43599,8 +41177,7 @@ "canonical_id": "game_mlb_2026_20260308_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -43617,8 +41194,7 @@ "canonical_id": "game_mlb_2026_20260308_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -43635,8 +41211,7 @@ "canonical_id": "game_mlb_2026_20260308_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -43653,8 +41228,7 @@ "canonical_id": "game_mlb_2026_20260308_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -43671,8 +41245,7 @@ "canonical_id": "game_mlb_2026_20260308_cle_col", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -43689,8 +41262,7 @@ "canonical_id": "game_mlb_2026_20260308_cin_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -43707,8 +41279,7 @@ "canonical_id": "game_mlb_2026_20260308_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -43725,8 +41296,7 @@ "canonical_id": "game_mls_2026_20260308_mtl_ny", "sport": "MLS", "season": "2026", - "date": "2026-03-08", - "time": "4:30p", + "game_datetime_utc": "2026-03-08T20:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Montreal CF Montreal", "home_team_abbrev": "RB", @@ -43743,8 +41313,7 @@ "canonical_id": "game_nhl_2025_20260308_bos_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "4:30p", + "game_datetime_utc": "2026-03-08T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Boston Bruins", "home_team_abbrev": "PIT", @@ -43761,8 +41330,7 @@ "canonical_id": "game_nba_2025_20260308_det_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Miami Heat", "away_team": "Detroit Pistons", "home_team_abbrev": "MIA", @@ -43779,8 +41347,7 @@ "canonical_id": "game_nba_2025_20260308_dal_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Dallas Mavericks", "home_team_abbrev": "TOR", @@ -43797,8 +41364,7 @@ "canonical_id": "game_nhl_2025_20260308_tb_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BUF", @@ -43815,8 +41381,7 @@ "canonical_id": "game_nhl_2025_20260308_chi_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "5p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Dallas Stars", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DAL", @@ -43833,8 +41398,7 @@ "canonical_id": "game_mls_2026_20260308_tor_cin", "sport": "MLS", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CIN", @@ -43851,8 +41415,7 @@ "canonical_id": "game_nba_2025_20260308_was_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Washington Wizards", "home_team_abbrev": "NOP", @@ -43869,8 +41432,7 @@ "canonical_id": "game_nhl_2025_20260308_det_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Detroit Red Wings", "home_team_abbrev": "NJ", @@ -43887,8 +41449,7 @@ "canonical_id": "game_nba_2025_20260308_hou_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-09T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Houston Rockets", "home_team_abbrev": "SAS", @@ -43905,8 +41466,7 @@ "canonical_id": "game_nba_2025_20260308_orl_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-09T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Orlando Magic", "home_team_abbrev": "MIL", @@ -43923,8 +41483,7 @@ "canonical_id": "game_nba_2025_20260308_chi_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Chicago Bulls", "home_team_abbrev": "SAC", @@ -43941,8 +41500,7 @@ "canonical_id": "game_nba_2025_20260308_cho_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "9p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Charlotte Hornets", "home_team_abbrev": "PHX", @@ -43959,8 +41517,7 @@ "canonical_id": "game_nba_2025_20260308_ind_por", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Portland Blazers", "away_team": "Indiana Pacers", "home_team_abbrev": "POR", @@ -43977,8 +41534,7 @@ "canonical_id": "game_nhl_2025_20260308_stl_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "St. Louis Blues", "home_team_abbrev": "ANA", @@ -43995,8 +41551,7 @@ "canonical_id": "game_nhl_2025_20260308_edm_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6:30p", + "game_datetime_utc": "2026-03-09T01:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Edmonton Oilers", "home_team_abbrev": "VGK", @@ -44013,8 +41568,7 @@ "canonical_id": "game_nhl_2025_20260309_la_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "1p", + "game_datetime_utc": "2026-03-09T17:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Los Angeles Kings", "home_team_abbrev": "CBJ", @@ -44031,8 +41585,7 @@ "canonical_id": "game_mlb_2026_20260309_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -44049,8 +41602,7 @@ "canonical_id": "game_mlb_2026_20260309_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -44067,8 +41619,7 @@ "canonical_id": "game_mlb_2026_20260309_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -44085,8 +41636,7 @@ "canonical_id": "game_mlb_2026_20260309_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -44103,8 +41653,7 @@ "canonical_id": "game_mlb_2026_20260309_min_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Minnesota Twins", "home_team_abbrev": "ATL", @@ -44121,8 +41670,7 @@ "canonical_id": "game_mlb_2026_20260309_laa_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -44139,8 +41687,7 @@ "canonical_id": "game_mlb_2026_20260309_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -44157,8 +41704,7 @@ "canonical_id": "game_mlb_2026_20260309_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -44175,8 +41721,7 @@ "canonical_id": "game_mlb_2026_20260309_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -44193,8 +41738,7 @@ "canonical_id": "game_mlb_2026_20260309_sea_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Seattle Mariners", "home_team_abbrev": "ARI", @@ -44211,8 +41755,7 @@ "canonical_id": "game_mlb_2026_20260309_tex_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Texas Rangers", "home_team_abbrev": "SD", @@ -44229,8 +41772,7 @@ "canonical_id": "game_mlb_2026_20260309_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -44247,8 +41789,7 @@ "canonical_id": "game_mlb_2026_20260309_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "6:10p", + "game_datetime_utc": "2026-03-09T22:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -44265,8 +41806,7 @@ "canonical_id": "game_mlb_2026_20260309_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "6:35p", + "game_datetime_utc": "2026-03-09T22:35:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -44283,8 +41823,7 @@ "canonical_id": "game_nba_2025_20260309_phi_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "6p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CLE", @@ -44301,8 +41840,7 @@ "canonical_id": "game_nhl_2025_20260309_cgy_was", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Calgary Flames", "home_team_abbrev": "WAS", @@ -44319,8 +41857,7 @@ "canonical_id": "game_nhl_2025_20260309_nyr_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Rangers", "home_team_abbrev": "PHI", @@ -44337,8 +41874,7 @@ "canonical_id": "game_nba_2025_20260309_den_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "6:30p", + "game_datetime_utc": "2026-03-09T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Denver Nuggets", "home_team_abbrev": "OKC", @@ -44355,8 +41891,7 @@ "canonical_id": "game_nba_2025_20260309_mem_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7:30p", + "game_datetime_utc": "2026-03-09T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "BKN", @@ -44373,8 +41908,7 @@ "canonical_id": "game_nhl_2025_20260309_ari_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Utah Club", "home_team_abbrev": "CHI", @@ -44391,8 +41925,7 @@ "canonical_id": "game_nba_2025_20260309_gsw_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-10T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Golden State Warriors", "home_team_abbrev": "UTA", @@ -44409,8 +41942,7 @@ "canonical_id": "game_nhl_2025_20260309_ott_van", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "6p", + "game_datetime_utc": "2026-03-10T01:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Ottawa Senators", "home_team_abbrev": "VAN", @@ -44427,8 +41959,7 @@ "canonical_id": "game_nba_2025_20260309_nyk_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-10T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "New York Knicks", "home_team_abbrev": "LAC", @@ -44445,8 +41976,7 @@ "canonical_id": "game_mlb_2026_20260310_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -44463,8 +41993,7 @@ "canonical_id": "game_mlb_2026_20260310_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -44481,8 +42010,7 @@ "canonical_id": "game_mlb_2026_20260310_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -44499,8 +42027,7 @@ "canonical_id": "game_mlb_2026_20260310_bal_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -44517,8 +42044,7 @@ "canonical_id": "game_mlb_2026_20260310_atl_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:07p", + "game_datetime_utc": "2026-03-10T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Atlanta Braves", "home_team_abbrev": "TOR", @@ -44535,8 +42061,7 @@ "canonical_id": "game_mlb_2026_20260310_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -44553,8 +42078,7 @@ "canonical_id": "game_mlb_2026_20260310_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -44571,8 +42095,7 @@ "canonical_id": "game_mlb_2026_20260310_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -44589,8 +42112,7 @@ "canonical_id": "game_mlb_2026_20260310_chc_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -44607,8 +42129,7 @@ "canonical_id": "game_mlb_2026_20260310_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -44625,8 +42146,7 @@ "canonical_id": "game_mlb_2026_20260310_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -44643,8 +42163,7 @@ "canonical_id": "game_mlb_2026_20260310_sd_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -44661,8 +42180,7 @@ "canonical_id": "game_mlb_2026_20260310_kc_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -44679,8 +42197,7 @@ "canonical_id": "game_mlb_2026_20260310_cin_col", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -44697,8 +42214,7 @@ "canonical_id": "game_nba_2025_20260310_mem_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "4p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "PHI", @@ -44715,8 +42231,7 @@ "canonical_id": "game_nhl_2025_20260310_sj_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "San Jose Sharks", "home_team_abbrev": "BUF", @@ -44733,8 +42248,7 @@ "canonical_id": "game_nhl_2025_20260310_pit_car", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CAR", @@ -44751,8 +42265,7 @@ "canonical_id": "game_nhl_2025_20260310_det_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Detroit Red Wings", "home_team_abbrev": "FLA", @@ -44769,8 +42282,7 @@ "canonical_id": "game_nhl_2025_20260310_tor_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MTL", @@ -44787,8 +42299,7 @@ "canonical_id": "game_nhl_2025_20260310_cbj_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "TB", @@ -44805,8 +42316,7 @@ "canonical_id": "game_nhl_2025_20260310_la_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Los Angeles Kings", "home_team_abbrev": "BOS", @@ -44823,8 +42333,7 @@ "canonical_id": "game_nhl_2025_20260310_cgy_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "New York Rangers", "away_team": "Calgary Flames", "home_team_abbrev": "NYR", @@ -44841,8 +42350,7 @@ "canonical_id": "game_nba_2025_20260310_det_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Detroit Pistons", "home_team_abbrev": "BKN", @@ -44859,8 +42367,7 @@ "canonical_id": "game_nba_2025_20260310_was_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "Miami Heat", "away_team": "Washington Wizards", "home_team_abbrev": "MIA", @@ -44877,8 +42384,7 @@ "canonical_id": "game_nhl_2025_20260310_nyi_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "6:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "St. Louis Blues", "away_team": "New York Islanders", "home_team_abbrev": "STL", @@ -44895,8 +42401,7 @@ "canonical_id": "game_nba_2025_20260310_phx_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Phoenix Suns", "home_team_abbrev": "MIL", @@ -44913,8 +42418,7 @@ "canonical_id": "game_nba_2025_20260310_tor_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Toronto Raptors", "home_team_abbrev": "HOU", @@ -44931,8 +42435,7 @@ "canonical_id": "game_nba_2025_20260310_dal_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Dallas Mavericks", "home_team_abbrev": "ATL", @@ -44949,8 +42452,7 @@ "canonical_id": "game_nba_2025_20260310_bos_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Boston Celtics", "home_team_abbrev": "SAS", @@ -44967,8 +42469,7 @@ "canonical_id": "game_nhl_2025_20260310_ari_min", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Utah Club", "home_team_abbrev": "MIN", @@ -44985,8 +42486,7 @@ "canonical_id": "game_nhl_2025_20260310_vgk_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DAL", @@ -45003,8 +42503,7 @@ "canonical_id": "game_nhl_2025_20260310_ana_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Anaheim Ducks", "home_team_abbrev": "WPG", @@ -45021,8 +42520,7 @@ "canonical_id": "game_nba_2025_20260310_chi_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Chicago Bulls", "home_team_abbrev": "GSW", @@ -45039,8 +42537,7 @@ "canonical_id": "game_nba_2025_20260310_cho_por", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Charlotte Hornets", "home_team_abbrev": "POR", @@ -45057,8 +42554,7 @@ "canonical_id": "game_nba_2025_20260310_ind_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Indiana Pacers", "home_team_abbrev": "SAC", @@ -45075,8 +42571,7 @@ "canonical_id": "game_nhl_2025_20260310_edm_col", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Edmonton Oilers", "home_team_abbrev": "COL", @@ -45093,8 +42588,7 @@ "canonical_id": "game_nhl_2025_20260310_nsh_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Nashville Predators", "home_team_abbrev": "SEA", @@ -45111,8 +42605,7 @@ "canonical_id": "game_nba_2025_20260310_min_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAL", @@ -45129,8 +42622,7 @@ "canonical_id": "game_mlb_2026_20260311_pit_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "BAL", @@ -45147,8 +42639,7 @@ "canonical_id": "game_mlb_2026_20260311_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -45165,8 +42656,7 @@ "canonical_id": "game_mlb_2026_20260311_det_min", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -45183,8 +42673,7 @@ "canonical_id": "game_mlb_2026_20260311_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -45201,8 +42690,7 @@ "canonical_id": "game_mlb_2026_20260311_hou_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Houston Astros", "home_team_abbrev": "MIA", @@ -45219,8 +42707,7 @@ "canonical_id": "game_mlb_2026_20260311_kc_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Kansas City Royals", "home_team_abbrev": "CHC", @@ -45237,8 +42724,7 @@ "canonical_id": "game_mlb_2026_20260311_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -45255,8 +42741,7 @@ "canonical_id": "game_mlb_2026_20260311_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -45273,8 +42758,7 @@ "canonical_id": "game_mlb_2026_20260311_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -45291,8 +42775,7 @@ "canonical_id": "game_mlb_2026_20260311_col_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Colorado Rockies", "home_team_abbrev": "SEA", @@ -45309,8 +42792,7 @@ "canonical_id": "game_mlb_2026_20260311_oak_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -45327,8 +42809,7 @@ "canonical_id": "game_mlb_2026_20260311_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "6:35p", + "game_datetime_utc": "2026-03-11T22:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -45345,8 +42826,7 @@ "canonical_id": "game_nba_2025_20260311_cle_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Orlando Magic", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ORL", @@ -45363,8 +42843,7 @@ "canonical_id": "game_nhl_2025_20260311_mtl_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Montreal Canadiens", "home_team_abbrev": "OTT", @@ -45381,8 +42860,7 @@ "canonical_id": "game_nhl_2025_20260311_was_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Washington Capitals", "home_team_abbrev": "PHI", @@ -45399,8 +42877,7 @@ "canonical_id": "game_nba_2025_20260311_tor_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Toronto Raptors", "home_team_abbrev": "NOP", @@ -45417,8 +42894,7 @@ "canonical_id": "game_nba_2025_20260311_nyk_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T01:00:00Z", "home_team": "Utah Jazz", "away_team": "New York Knicks", "home_team_abbrev": "UTA", @@ -45435,8 +42911,7 @@ "canonical_id": "game_nba_2025_20260311_hou_den", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "8p", + "game_datetime_utc": "2026-03-12T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -45453,8 +42928,7 @@ "canonical_id": "game_nba_2025_20260311_cho_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Charlotte Hornets", "home_team_abbrev": "SAC", @@ -45471,8 +42945,7 @@ "canonical_id": "game_nba_2025_20260311_min_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAC", @@ -45489,8 +42962,7 @@ "canonical_id": "game_mlb_2026_20260312_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -45507,8 +42979,7 @@ "canonical_id": "game_mlb_2026_20260312_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -45525,8 +42996,7 @@ "canonical_id": "game_mlb_2026_20260312_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -45543,8 +43013,7 @@ "canonical_id": "game_mlb_2026_20260312_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -45561,8 +43030,7 @@ "canonical_id": "game_mlb_2026_20260312_sea_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Seattle Mariners", "home_team_abbrev": "CHC", @@ -45579,8 +43047,7 @@ "canonical_id": "game_mlb_2026_20260312_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -45597,8 +43064,7 @@ "canonical_id": "game_mlb_2026_20260312_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:10p", + "game_datetime_utc": "2026-03-12T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -45615,8 +43081,7 @@ "canonical_id": "game_mlb_2026_20260312_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-12T22:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -45633,8 +43098,7 @@ "canonical_id": "game_mlb_2026_20260312_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-12T22:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -45651,8 +43115,7 @@ "canonical_id": "game_nba_2025_20260312_phi_det", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DET", @@ -45669,8 +43132,7 @@ "canonical_id": "game_nba_2025_20260312_was_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Washington Wizards", "home_team_abbrev": "ORL", @@ -45687,8 +43149,7 @@ "canonical_id": "game_nba_2025_20260312_phx_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Phoenix Suns", "home_team_abbrev": "IND", @@ -45705,8 +43166,7 @@ "canonical_id": "game_nhl_2025_20260312_stl_car", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "St. Louis Blues", "home_team_abbrev": "CAR", @@ -45723,8 +43183,7 @@ "canonical_id": "game_nhl_2025_20260312_was_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Washington Capitals", "home_team_abbrev": "BUF", @@ -45741,8 +43200,7 @@ "canonical_id": "game_nhl_2025_20260312_sj_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Boston Bruins", "away_team": "San Jose Sharks", "home_team_abbrev": "BOS", @@ -45759,8 +43217,7 @@ "canonical_id": "game_nhl_2025_20260312_ana_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Anaheim Ducks", "home_team_abbrev": "TOR", @@ -45777,8 +43234,7 @@ "canonical_id": "game_nhl_2025_20260312_cgy_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Calgary Flames", "home_team_abbrev": "NJ", @@ -45795,8 +43251,7 @@ "canonical_id": "game_nhl_2025_20260312_cbj_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "FLA", @@ -45813,8 +43268,7 @@ "canonical_id": "game_nhl_2025_20260312_det_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Detroit Red Wings", "home_team_abbrev": "TB", @@ -45831,8 +43285,7 @@ "canonical_id": "game_nba_2025_20260312_brk_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Brooklyn Nets", "home_team_abbrev": "ATL", @@ -45849,8 +43302,7 @@ "canonical_id": "game_nba_2025_20260312_mil_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T23:30:00Z", "home_team": "Miami Heat", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIA", @@ -45867,8 +43319,7 @@ "canonical_id": "game_nba_2025_20260312_dal_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -45885,8 +43336,7 @@ "canonical_id": "game_nhl_2025_20260312_edm_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Edmonton Oilers", "home_team_abbrev": "DAL", @@ -45903,8 +43353,7 @@ "canonical_id": "game_nhl_2025_20260312_phi_min", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MIN", @@ -45921,8 +43370,7 @@ "canonical_id": "game_nhl_2025_20260312_nyr_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New York Rangers", "home_team_abbrev": "WPG", @@ -45939,8 +43387,7 @@ "canonical_id": "game_nba_2025_20260312_den_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "8p", + "game_datetime_utc": "2026-03-13T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Denver Nuggets", "home_team_abbrev": "SAS", @@ -45957,8 +43404,7 @@ "canonical_id": "game_nhl_2025_20260312_chi_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T01:00:00Z", "home_team": "Utah Club", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ARI", @@ -45975,8 +43421,7 @@ "canonical_id": "game_mlb_2026_20260313_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -45993,8 +43438,7 @@ "canonical_id": "game_mlb_2026_20260313_chw_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -46011,8 +43455,7 @@ "canonical_id": "game_mlb_2026_20260313_mil_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CLE", @@ -46029,8 +43472,7 @@ "canonical_id": "game_mlb_2026_20260313_kc_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:10p", + "game_datetime_utc": "2026-03-13T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Kansas City Royals", "home_team_abbrev": "SD", @@ -46047,8 +43489,7 @@ "canonical_id": "game_nba_2025_20260312_bos_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "8:30p", + "game_datetime_utc": "2026-03-13T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Boston Celtics", "home_team_abbrev": "OKC", @@ -46065,8 +43506,7 @@ "canonical_id": "game_nhl_2025_20260312_col_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Colorado Avalanche", "home_team_abbrev": "SEA", @@ -46083,8 +43523,7 @@ "canonical_id": "game_nhl_2025_20260312_pit_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "VGK", @@ -46101,8 +43540,7 @@ "canonical_id": "game_nhl_2025_20260312_nsh_van", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Nashville Predators", "home_team_abbrev": "VAN", @@ -46119,8 +43557,7 @@ "canonical_id": "game_nba_2025_20260312_chi_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Chicago Bulls", "home_team_abbrev": "LAL", @@ -46137,8 +43574,7 @@ "canonical_id": "game_mlb_2026_20260313_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -46155,8 +43591,7 @@ "canonical_id": "game_mlb_2026_20260313_bal_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Baltimore Orioles", "home_team_abbrev": "PHI", @@ -46173,8 +43608,7 @@ "canonical_id": "game_mlb_2026_20260313_nyy_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "New York Yankees", "home_team_abbrev": "ATL", @@ -46191,8 +43625,7 @@ "canonical_id": "game_mlb_2026_20260313_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:07p", + "game_datetime_utc": "2026-03-13T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -46209,8 +43642,7 @@ "canonical_id": "game_mlb_2026_20260313_sd_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "San Diego Padres", "home_team_abbrev": "OAK", @@ -46227,8 +43659,7 @@ "canonical_id": "game_mlb_2026_20260313_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -46245,8 +43676,7 @@ "canonical_id": "game_mlb_2026_20260313_oak_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Oakland Athletics", "home_team_abbrev": "MIL", @@ -46263,8 +43693,7 @@ "canonical_id": "game_mlb_2026_20260313_tex_col", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -46281,8 +43710,7 @@ "canonical_id": "game_mlb_2026_20260313_cle_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -46299,8 +43727,7 @@ "canonical_id": "game_mlb_2026_20260313_hou_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Houston Astros", "home_team_abbrev": "STL", @@ -46317,8 +43744,7 @@ "canonical_id": "game_mlb_2026_20260313_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -46335,8 +43761,7 @@ "canonical_id": "game_mlb_2026_20260313_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -46353,8 +43778,7 @@ "canonical_id": "game_mlb_2026_20260313_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:10p", + "game_datetime_utc": "2026-03-13T22:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -46371,8 +43795,7 @@ "canonical_id": "game_nhl_2025_20260313_la_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-13T23:00:00Z", "home_team": "New York Islanders", "away_team": "Los Angeles Kings", "home_team_abbrev": "NYI", @@ -46389,8 +43812,7 @@ "canonical_id": "game_mlb_2026_20260313_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "4:05p", + "game_datetime_utc": "2026-03-13T23:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -46407,8 +43829,7 @@ "canonical_id": "game_nba_2025_20260313_nyk_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "New York Knicks", "home_team_abbrev": "IND", @@ -46425,8 +43846,7 @@ "canonical_id": "game_nba_2025_20260313_phx_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Toronto Raptors", "away_team": "Phoenix Suns", "home_team_abbrev": "TOR", @@ -46443,8 +43863,7 @@ "canonical_id": "game_nba_2025_20260313_mem_det", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DET", @@ -46461,8 +43880,7 @@ "canonical_id": "game_nba_2025_20260313_cle_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "6:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DAL", @@ -46479,8 +43897,7 @@ "canonical_id": "game_nba_2025_20260313_nop_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "HOU", @@ -46497,8 +43914,7 @@ "canonical_id": "game_nhl_2025_20260313_edm_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Edmonton Oilers", "home_team_abbrev": "STL", @@ -46515,8 +43931,7 @@ "canonical_id": "game_nwsl_2026_20260314_por_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-03-13", - "time": "8p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Portland Portland Thorns", "home_team_abbrev": "WSH", @@ -46533,8 +43948,7 @@ "canonical_id": "game_mlb_2026_20260314_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -46551,8 +43965,7 @@ "canonical_id": "game_mlb_2026_20260314_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T01:05:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -46569,8 +43982,7 @@ "canonical_id": "game_mlb_2026_20260314_lad_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:10p", + "game_datetime_utc": "2026-03-14T01:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SEA", @@ -46587,8 +43999,7 @@ "canonical_id": "game_nba_2025_20260313_min_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "GSW", @@ -46605,8 +44016,7 @@ "canonical_id": "game_nba_2025_20260313_uta_por", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Utah Jazz", "home_team_abbrev": "POR", @@ -46623,8 +44033,7 @@ "canonical_id": "game_nba_2025_20260313_chi_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Chicago Bulls", "home_team_abbrev": "LAC", @@ -46641,8 +44050,7 @@ "canonical_id": "game_mlb_2026_20260314_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "12:05p", + "game_datetime_utc": "2026-03-14T16:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -46659,8 +44067,7 @@ "canonical_id": "game_nwsl_2026_20260314_njy_bos", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "12:30p", + "game_datetime_utc": "2026-03-14T16:30:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "BOS", @@ -46677,8 +44084,7 @@ "canonical_id": "game_mls_2026_20260314_ny_tor", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "1p", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "TOR", @@ -46695,8 +44101,7 @@ "canonical_id": "game_nba_2025_20260314_brk_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "10a", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHI", @@ -46713,8 +44118,7 @@ "canonical_id": "game_nhl_2025_20260314_ana_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "1p", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Anaheim Ducks", "home_team_abbrev": "OTT", @@ -46731,8 +44135,7 @@ "canonical_id": "game_mlb_2026_20260314_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -46749,8 +44152,7 @@ "canonical_id": "game_mlb_2026_20260314_phi_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "New York Yankees", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYY", @@ -46767,8 +44169,7 @@ "canonical_id": "game_mlb_2026_20260314_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -46785,8 +44186,7 @@ "canonical_id": "game_mlb_2026_20260314_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:07p", + "game_datetime_utc": "2026-03-14T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -46803,8 +44203,7 @@ "canonical_id": "game_mlb_2026_20260314_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T17:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -46821,8 +44220,7 @@ "canonical_id": "game_mls_2026_20260314_phi_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "ATL", @@ -46839,8 +44237,7 @@ "canonical_id": "game_nba_2025_20260314_mil_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ATL", @@ -46857,8 +44254,7 @@ "canonical_id": "game_nhl_2025_20260314_bos_was", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Washington Capitals", "away_team": "Boston Bruins", "home_team_abbrev": "WAS", @@ -46875,8 +44271,7 @@ "canonical_id": "game_nhl_2025_20260314_col_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T20:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Colorado Avalanche", "home_team_abbrev": "WPG", @@ -46893,8 +44288,7 @@ "canonical_id": "game_nwsl_2026_20260314_uta_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T20:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Utah Utah Royals", "home_team_abbrev": "KCC", @@ -46911,8 +44305,7 @@ "canonical_id": "game_mlb_2026_20260314_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -46929,8 +44322,7 @@ "canonical_id": "game_mlb_2026_20260314_sd_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -46947,8 +44339,7 @@ "canonical_id": "game_mlb_2026_20260314_tex_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Texas Rangers", "home_team_abbrev": "CIN", @@ -46965,8 +44356,7 @@ "canonical_id": "game_mlb_2026_20260314_kc_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -46983,8 +44373,7 @@ "canonical_id": "game_mlb_2026_20260314_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -47001,8 +44390,7 @@ "canonical_id": "game_mlb_2026_20260314_chc_col", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -47019,8 +44407,7 @@ "canonical_id": "game_mlb_2026_20260314_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -47037,8 +44424,7 @@ "canonical_id": "game_mlb_2026_20260314_cle_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cleveland Guardians", "home_team_abbrev": "SD", @@ -47055,8 +44441,7 @@ "canonical_id": "game_mlb_2026_20260314_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -47073,8 +44458,7 @@ "canonical_id": "game_mls_2026_20260314_nsh_clb", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "6p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CLB", @@ -47091,8 +44475,7 @@ "canonical_id": "game_nba_2025_20260314_was_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "6p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Washington Wizards", "home_team_abbrev": "BOS", @@ -47109,8 +44492,7 @@ "canonical_id": "game_nhl_2025_20260314_nyr_min", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "5p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "New York Rangers", "home_team_abbrev": "MIN", @@ -47127,8 +44509,7 @@ "canonical_id": "game_mlb_2026_20260314_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T22:05:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -47145,8 +44526,7 @@ "canonical_id": "game_mlb_2026_20260314_nym_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T22:05:00Z", "home_team": "Houston Astros", "away_team": "New York Mets", "home_team_abbrev": "HOU", @@ -47163,8 +44543,7 @@ "canonical_id": "game_nwsl_2026_20260314_den_bay", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "3:30p", + "game_datetime_utc": "2026-03-14T22:30:00Z", "home_team": "San Francisco Bay FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "BAY", @@ -47181,8 +44560,7 @@ "canonical_id": "game_nhl_2025_20260314_car_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TB", @@ -47199,8 +44577,7 @@ "canonical_id": "game_nhl_2025_20260314_tor_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BUF", @@ -47217,8 +44594,7 @@ "canonical_id": "game_nhl_2025_20260314_la_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Los Angeles Kings", "home_team_abbrev": "NJ", @@ -47235,8 +44611,7 @@ "canonical_id": "game_nhl_2025_20260314_cgy_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "New York Islanders", "away_team": "Calgary Flames", "home_team_abbrev": "NYI", @@ -47253,8 +44628,7 @@ "canonical_id": "game_nhl_2025_20260314_sj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "San Jose Sharks", "home_team_abbrev": "MTL", @@ -47271,8 +44645,7 @@ "canonical_id": "game_nwsl_2026_20260314_rgn_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "NCC", @@ -47289,8 +44662,7 @@ "canonical_id": "game_mls_2026_20260314_mtl_orl", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Montreal CF Montreal", "home_team_abbrev": "ORL", @@ -47307,8 +44679,7 @@ "canonical_id": "game_mls_2026_20260314_mia_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "CLT", @@ -47325,8 +44696,7 @@ "canonical_id": "game_mls_2026_20260314_col_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "NYC", @@ -47343,8 +44713,7 @@ "canonical_id": "game_nhl_2025_20260314_cbj_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PHI", @@ -47361,8 +44730,7 @@ "canonical_id": "game_nba_2025_20260314_orl_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "8p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "Miami Heat", "away_team": "Orlando Magic", "home_team_abbrev": "MIA", @@ -47379,8 +44747,7 @@ "canonical_id": "game_nba_2025_20260314_cho_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Charlotte Hornets", "home_team_abbrev": "SAS", @@ -47397,8 +44764,7 @@ "canonical_id": "game_nhl_2025_20260314_det_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Detroit Red Wings", "home_team_abbrev": "DAL", @@ -47415,8 +44781,7 @@ "canonical_id": "game_mls_2026_20260315_sd_dal", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "San Diego San Diego FC", "home_team_abbrev": "DAL", @@ -47433,8 +44798,7 @@ "canonical_id": "game_mls_2026_20260315_por_hou", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Portland Portland Timbers", "home_team_abbrev": "HOU", @@ -47451,8 +44815,7 @@ "canonical_id": "game_mls_2026_20260315_dc_chi", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Washington D.C. United", "home_team_abbrev": "CHI", @@ -47469,8 +44832,7 @@ "canonical_id": "game_nba_2025_20260314_den_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "5:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAL", @@ -47487,8 +44849,7 @@ "canonical_id": "game_nwsl_2026_20260315_hou_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "5:45p", + "game_datetime_utc": "2026-03-15T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Houston Houston Dash", "home_team_abbrev": "SDW", @@ -47505,8 +44866,7 @@ "canonical_id": "game_nhl_2025_20260314_pit_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T01:00:00Z", "home_team": "Utah Club", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "ARI", @@ -47523,8 +44883,7 @@ "canonical_id": "game_mls_2026_20260315_aus_slc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Austin Austin FC", "home_team_abbrev": "SLC", @@ -47541,8 +44900,7 @@ "canonical_id": "game_mls_2026_20260315_skc_lag", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "6:30p", + "game_datetime_utc": "2026-03-15T01:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "LAG", @@ -47559,8 +44917,7 @@ "canonical_id": "game_nhl_2025_20260314_chi_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VGK", @@ -47577,8 +44934,7 @@ "canonical_id": "game_nhl_2025_20260314_sea_van", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Seattle Kraken", "home_team_abbrev": "VAN", @@ -47595,8 +44951,7 @@ "canonical_id": "game_mls_2026_20260315_stl_lafc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "LAFC", @@ -47613,8 +44968,7 @@ "canonical_id": "game_mls_2026_20260315_min_van", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "VAN", @@ -47631,8 +44985,7 @@ "canonical_id": "game_nba_2025_20260314_sac_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAC", @@ -47649,8 +45002,7 @@ "canonical_id": "game_nba_2025_20260315_min_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "12p", + "game_datetime_utc": "2026-03-15T17:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "OKC", @@ -47667,8 +45019,7 @@ "canonical_id": "game_mlb_2026_20260315_pit_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TB", @@ -47685,8 +45036,7 @@ "canonical_id": "game_mlb_2026_20260315_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -47703,8 +45053,7 @@ "canonical_id": "game_mlb_2026_20260315_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -47721,8 +45070,7 @@ "canonical_id": "game_mlb_2026_20260315_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -47739,8 +45087,7 @@ "canonical_id": "game_mlb_2026_20260315_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -47757,8 +45104,7 @@ "canonical_id": "game_mlb_2026_20260315_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -47775,8 +45121,7 @@ "canonical_id": "game_mlb_2026_20260315_tor_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T17:10:00Z", "home_team": "New York Mets", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYM", @@ -47793,8 +45138,7 @@ "canonical_id": "game_mls_2026_20260315_cin_ne", "sport": "MLS", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T18:30:00Z", "home_team": "New England New England Revolution", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NE", @@ -47811,8 +45155,7 @@ "canonical_id": "game_nhl_2025_20260315_stl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "2p", + "game_datetime_utc": "2026-03-15T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "St. Louis Blues", "home_team_abbrev": "WPG", @@ -47829,8 +45172,7 @@ "canonical_id": "game_nba_2025_20260315_dal_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Dallas Mavericks", "home_team_abbrev": "CLE", @@ -47847,8 +45189,7 @@ "canonical_id": "game_nba_2025_20260315_det_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "3:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Toronto Raptors", "away_team": "Detroit Pistons", "home_team_abbrev": "TOR", @@ -47865,8 +45206,7 @@ "canonical_id": "game_nba_2025_20260315_ind_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Indiana Pacers", "home_team_abbrev": "MIL", @@ -47883,8 +45223,7 @@ "canonical_id": "game_nwsl_2026_20260315_sea_orl", "sport": "NWSL", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "ORL", @@ -47901,8 +45240,7 @@ "canonical_id": "game_mlb_2026_20260315_mil_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -47919,8 +45257,7 @@ "canonical_id": "game_mlb_2026_20260315_tex_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -47937,8 +45274,7 @@ "canonical_id": "game_mlb_2026_20260315_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -47955,8 +45291,7 @@ "canonical_id": "game_mlb_2026_20260315_lad_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -47973,8 +45308,7 @@ "canonical_id": "game_mlb_2026_20260315_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -47991,8 +45325,7 @@ "canonical_id": "game_mlb_2026_20260315_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -48009,8 +45342,7 @@ "canonical_id": "game_mlb_2026_20260315_cin_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -48027,8 +45359,7 @@ "canonical_id": "game_mlb_2026_20260315_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -48045,8 +45376,7 @@ "canonical_id": "game_nhl_2025_20260315_sj_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "5p", + "game_datetime_utc": "2026-03-15T21:00:00Z", "home_team": "Ottawa Senators", "away_team": "San Jose Sharks", "home_team_abbrev": "OTT", @@ -48063,8 +45393,7 @@ "canonical_id": "game_nba_2025_20260315_por_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "3p", + "game_datetime_utc": "2026-03-15T22:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Portland Blazers", "home_team_abbrev": "PHI", @@ -48081,8 +45410,7 @@ "canonical_id": "game_mlb_2026_20260315_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "6:05p", + "game_datetime_utc": "2026-03-15T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -48099,8 +45427,7 @@ "canonical_id": "game_mls_2026_20260315_sea_sj", "sport": "MLS", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SJ", @@ -48117,8 +45444,7 @@ "canonical_id": "game_nhl_2025_20260315_ana_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "7p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Anaheim Ducks", "home_team_abbrev": "MTL", @@ -48135,8 +45461,7 @@ "canonical_id": "game_nwsl_2026_20260315_chi_ang", "sport": "NWSL", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "ANG", @@ -48153,8 +45478,7 @@ "canonical_id": "game_nhl_2025_20260315_tor_min", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "6:30p", + "game_datetime_utc": "2026-03-15T23:30:00Z", "home_team": "Minnesota Wild", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MIN", @@ -48171,8 +45495,7 @@ "canonical_id": "game_nba_2025_20260315_gsw_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "8p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "New York Knicks", "away_team": "Golden State Warriors", "home_team_abbrev": "NYK", @@ -48189,8 +45512,7 @@ "canonical_id": "game_nhl_2025_20260315_fla_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "5p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "Seattle Kraken", "away_team": "Florida Panthers", "home_team_abbrev": "SEA", @@ -48207,8 +45529,7 @@ "canonical_id": "game_nhl_2025_20260315_nsh_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "6p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Nashville Predators", "home_team_abbrev": "EDM", @@ -48225,8 +45546,7 @@ "canonical_id": "game_nba_2025_20260315_uta_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "7p", + "game_datetime_utc": "2026-03-16T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Utah Jazz", "home_team_abbrev": "SAC", @@ -48243,8 +45563,7 @@ "canonical_id": "game_mlb_2026_20260316_pit_min", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIN", @@ -48261,8 +45580,7 @@ "canonical_id": "game_mlb_2026_20260316_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -48279,8 +45597,7 @@ "canonical_id": "game_mlb_2026_20260316_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -48297,8 +45614,7 @@ "canonical_id": "game_mlb_2026_20260316_tor_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIA", @@ -48315,8 +45631,7 @@ "canonical_id": "game_mlb_2026_20260316_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -48333,8 +45648,7 @@ "canonical_id": "game_mlb_2026_20260316_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -48351,8 +45665,7 @@ "canonical_id": "game_mlb_2026_20260316_cin_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -48369,8 +45682,7 @@ "canonical_id": "game_mlb_2026_20260316_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -48387,8 +45699,7 @@ "canonical_id": "game_mlb_2026_20260316_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:05p", + "game_datetime_utc": "2026-03-16T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -48405,8 +45716,7 @@ "canonical_id": "game_mlb_2026_20260316_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:10p", + "game_datetime_utc": "2026-03-16T22:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -48423,8 +45733,7 @@ "canonical_id": "game_nba_2025_20260316_orl_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Orlando Magic", "home_team_abbrev": "ATL", @@ -48441,8 +45750,7 @@ "canonical_id": "game_nba_2025_20260316_gsw_was", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Golden State Warriors", "home_team_abbrev": "WAS", @@ -48459,8 +45767,7 @@ "canonical_id": "game_nhl_2025_20260316_la_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "New York Rangers", "away_team": "Los Angeles Kings", "home_team_abbrev": "NYR", @@ -48477,8 +45784,7 @@ "canonical_id": "game_nhl_2025_20260316_bos_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Boston Bruins", "home_team_abbrev": "NJ", @@ -48495,8 +45801,7 @@ "canonical_id": "game_nhl_2025_20260316_cgy_det", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Calgary Flames", "home_team_abbrev": "DET", @@ -48513,8 +45818,7 @@ "canonical_id": "game_nba_2025_20260316_por_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-16T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Portland Blazers", "home_team_abbrev": "BKN", @@ -48531,8 +45835,7 @@ "canonical_id": "game_nba_2025_20260316_phx_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "8p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Phoenix Suns", "home_team_abbrev": "BOS", @@ -48549,8 +45852,7 @@ "canonical_id": "game_nba_2025_20260316_mem_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CHI", @@ -48567,8 +45869,7 @@ "canonical_id": "game_nba_2025_20260316_dal_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Dallas Mavericks", "home_team_abbrev": "NOP", @@ -48585,8 +45886,7 @@ "canonical_id": "game_nhl_2025_20260316_ari_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Utah Club", "home_team_abbrev": "DAL", @@ -48603,8 +45903,7 @@ "canonical_id": "game_mlb_2026_20260317_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "5:05p", + "game_datetime_utc": "2026-03-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -48621,8 +45920,7 @@ "canonical_id": "game_nba_2025_20260316_lal_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "8p", + "game_datetime_utc": "2026-03-17T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "HOU", @@ -48639,8 +45937,7 @@ "canonical_id": "game_mlb_2026_20260317_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:05p", + "game_datetime_utc": "2026-03-17T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -48657,8 +45954,7 @@ "canonical_id": "game_nhl_2025_20260316_pit_col", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "COL", @@ -48675,8 +45971,7 @@ "canonical_id": "game_nba_2025_20260316_sas_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAC", @@ -48693,8 +45988,7 @@ "canonical_id": "game_mlb_2026_20260317_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -48711,8 +46005,7 @@ "canonical_id": "game_mlb_2026_20260317_hou_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Houston Astros", "home_team_abbrev": "PIT", @@ -48729,8 +46022,7 @@ "canonical_id": "game_mlb_2026_20260317_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -48747,8 +46039,7 @@ "canonical_id": "game_mlb_2026_20260317_min_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Minnesota Twins", "home_team_abbrev": "PHI", @@ -48765,8 +46056,7 @@ "canonical_id": "game_mlb_2026_20260317_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -48783,8 +46073,7 @@ "canonical_id": "game_mlb_2026_20260317_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -48801,8 +46090,7 @@ "canonical_id": "game_mlb_2026_20260317_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -48819,8 +46107,7 @@ "canonical_id": "game_mlb_2026_20260317_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -48837,8 +46124,7 @@ "canonical_id": "game_mlb_2026_20260317_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -48855,8 +46141,7 @@ "canonical_id": "game_mlb_2026_20260317_sea_col", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -48873,8 +46158,7 @@ "canonical_id": "game_nba_2025_20260317_mia_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Miami Heat", "home_team_abbrev": "CHA", @@ -48891,8 +46175,7 @@ "canonical_id": "game_nba_2025_20260317_det_was", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Detroit Pistons", "home_team_abbrev": "WAS", @@ -48909,8 +46192,7 @@ "canonical_id": "game_nba_2025_20260317_okc_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "ORL", @@ -48927,8 +46209,7 @@ "canonical_id": "game_nhl_2025_20260317_nyi_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Islanders", "home_team_abbrev": "TOR", @@ -48945,8 +46226,7 @@ "canonical_id": "game_nhl_2025_20260317_car_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CBJ", @@ -48963,8 +46243,7 @@ "canonical_id": "game_nhl_2025_20260317_bos_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Boston Bruins", "home_team_abbrev": "MTL", @@ -48981,8 +46260,7 @@ "canonical_id": "game_nba_2025_20260317_ind_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T23:30:00Z", "home_team": "New York Knicks", "away_team": "Indiana Pacers", "home_team_abbrev": "NYK", @@ -48999,8 +46277,7 @@ "canonical_id": "game_nhl_2025_20260317_min_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "6:30p", + "game_datetime_utc": "2026-03-17T23:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Minnesota Wild", "home_team_abbrev": "CHI", @@ -49017,8 +46294,7 @@ "canonical_id": "game_nba_2025_20260317_cle_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIL", @@ -49035,8 +46311,7 @@ "canonical_id": "game_nba_2025_20260317_phx_min", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Phoenix Suns", "home_team_abbrev": "MIN", @@ -49053,8 +46328,7 @@ "canonical_id": "game_nhl_2025_20260317_nsh_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Nashville Predators", "home_team_abbrev": "WPG", @@ -49071,8 +46345,7 @@ "canonical_id": "game_nba_2025_20260317_phi_den", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DEN", @@ -49089,8 +46362,7 @@ "canonical_id": "game_nhl_2025_20260317_sj_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "San Jose Sharks", "home_team_abbrev": "EDM", @@ -49107,8 +46379,7 @@ "canonical_id": "game_mlb_2026_20260318_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -49125,8 +46396,7 @@ "canonical_id": "game_mlb_2026_20260318_lad_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "KC", @@ -49143,8 +46413,7 @@ "canonical_id": "game_mlb_2026_20260318_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -49161,8 +46430,7 @@ "canonical_id": "game_nhl_2025_20260317_buf_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Buffalo Sabres", "home_team_abbrev": "VGK", @@ -49179,8 +46447,7 @@ "canonical_id": "game_nhl_2025_20260317_fla_van", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Florida Panthers", "home_team_abbrev": "VAN", @@ -49197,8 +46464,7 @@ "canonical_id": "game_nhl_2025_20260317_tb_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "SEA", @@ -49215,8 +46481,7 @@ "canonical_id": "game_nba_2025_20260317_sas_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "8p", + "game_datetime_utc": "2026-03-18T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "San Antonio Spurs", "home_team_abbrev": "SAC", @@ -49233,8 +46498,7 @@ "canonical_id": "game_mlb_2026_20260318_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -49251,8 +46515,7 @@ "canonical_id": "game_mlb_2026_20260318_hou_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Houston Astros", "home_team_abbrev": "STL", @@ -49269,8 +46532,7 @@ "canonical_id": "game_mlb_2026_20260318_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -49287,8 +46549,7 @@ "canonical_id": "game_mlb_2026_20260318_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:07p", + "game_datetime_utc": "2026-03-18T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -49305,8 +46566,7 @@ "canonical_id": "game_mlb_2026_20260318_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -49323,8 +46583,7 @@ "canonical_id": "game_mlb_2026_20260318_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -49341,8 +46600,7 @@ "canonical_id": "game_mlb_2026_20260318_chc_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -49359,8 +46617,7 @@ "canonical_id": "game_mlb_2026_20260318_mil_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SEA", @@ -49377,8 +46634,7 @@ "canonical_id": "game_mlb_2026_20260318_laa_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIL", @@ -49395,8 +46651,7 @@ "canonical_id": "game_mlb_2026_20260318_cin_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAA", @@ -49413,8 +46668,7 @@ "canonical_id": "game_mlb_2026_20260318_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T22:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -49431,8 +46685,7 @@ "canonical_id": "game_mlb_2026_20260318_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T22:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -49449,8 +46702,7 @@ "canonical_id": "game_nba_2025_20260318_gsw_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Golden State Warriors", "home_team_abbrev": "BOS", @@ -49467,8 +46719,7 @@ "canonical_id": "game_nhl_2025_20260318_pit_car", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CAR", @@ -49485,8 +46736,7 @@ "canonical_id": "game_nhl_2025_20260318_njd_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "New York Rangers", "away_team": "New Jersey Devils", "home_team_abbrev": "NYR", @@ -49503,8 +46753,7 @@ "canonical_id": "game_nba_2025_20260318_okc_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "BKN", @@ -49521,8 +46770,7 @@ "canonical_id": "game_nba_2025_20260318_por_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Portland Blazers", "home_team_abbrev": "IND", @@ -49539,8 +46787,7 @@ "canonical_id": "game_nhl_2025_20260318_ott_was", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Washington Capitals", "away_team": "Ottawa Senators", "home_team_abbrev": "WAS", @@ -49557,8 +46804,7 @@ "canonical_id": "game_nba_2025_20260318_lac_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NOP", @@ -49575,8 +46821,7 @@ "canonical_id": "game_nba_2025_20260318_uta_min", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Utah Jazz", "home_team_abbrev": "MIN", @@ -49593,8 +46838,7 @@ "canonical_id": "game_nba_2025_20260318_nyk_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New York Knicks", "home_team_abbrev": "MEM", @@ -49611,8 +46855,7 @@ "canonical_id": "game_nba_2025_20260318_den_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -49629,8 +46872,7 @@ "canonical_id": "game_nba_2025_20260318_tor_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Toronto Raptors", "home_team_abbrev": "CHI", @@ -49647,8 +46889,7 @@ "canonical_id": "game_mlb_2026_20260319_kc_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "5:05p", + "game_datetime_utc": "2026-03-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -49665,8 +46906,7 @@ "canonical_id": "game_nba_2025_20260318_atl_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Atlanta Hawks", "home_team_abbrev": "DAL", @@ -49683,8 +46923,7 @@ "canonical_id": "game_nba_2025_20260318_lal_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "8:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "HOU", @@ -49701,8 +46940,7 @@ "canonical_id": "game_nhl_2025_20260318_dal_col", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Dallas Stars", "home_team_abbrev": "COL", @@ -49719,8 +46957,7 @@ "canonical_id": "game_nhl_2025_20260318_stl_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Calgary Flames", "away_team": "St. Louis Blues", "home_team_abbrev": "CGY", @@ -49737,8 +46974,7 @@ "canonical_id": "game_nhl_2025_20260318_phi_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "ANA", @@ -49755,8 +46991,7 @@ "canonical_id": "game_mlb_2026_20260319_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -49773,8 +47008,7 @@ "canonical_id": "game_mlb_2026_20260319_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -49791,8 +47025,7 @@ "canonical_id": "game_mlb_2026_20260319_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -49809,8 +47042,7 @@ "canonical_id": "game_mlb_2026_20260319_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:07p", + "game_datetime_utc": "2026-03-19T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -49827,8 +47059,7 @@ "canonical_id": "game_mlb_2026_20260319_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -49845,8 +47076,7 @@ "canonical_id": "game_mlb_2026_20260319_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:10p", + "game_datetime_utc": "2026-03-19T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -49863,8 +47093,7 @@ "canonical_id": "game_mlb_2026_20260319_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -49881,8 +47110,7 @@ "canonical_id": "game_mlb_2026_20260319_nym_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Houston Astros", "away_team": "New York Mets", "home_team_abbrev": "HOU", @@ -49899,8 +47127,7 @@ "canonical_id": "game_mlb_2026_20260319_pit_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "BAL", @@ -49917,8 +47144,7 @@ "canonical_id": "game_nba_2025_20260319_orl_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Orlando Magic", "home_team_abbrev": "CHA", @@ -49935,8 +47161,7 @@ "canonical_id": "game_nba_2025_20260319_det_was", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Detroit Pistons", "home_team_abbrev": "WAS", @@ -49953,8 +47178,7 @@ "canonical_id": "game_nhl_2025_20260319_mtl_det", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Montreal Canadiens", "home_team_abbrev": "DET", @@ -49971,8 +47195,7 @@ "canonical_id": "game_nhl_2025_20260319_wpg_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Winnipeg Jets", "home_team_abbrev": "BOS", @@ -49989,8 +47212,7 @@ "canonical_id": "game_nhl_2025_20260319_nyr_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Rangers", "home_team_abbrev": "CBJ", @@ -50007,8 +47229,7 @@ "canonical_id": "game_nhl_2025_20260319_nyi_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Islanders", "home_team_abbrev": "OTT", @@ -50025,8 +47246,7 @@ "canonical_id": "game_nhl_2025_20260319_chi_min", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "6:30p", + "game_datetime_utc": "2026-03-19T23:30:00Z", "home_team": "Minnesota Wild", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MIN", @@ -50043,8 +47263,7 @@ "canonical_id": "game_nba_2025_20260319_cle_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHI", @@ -50061,8 +47280,7 @@ "canonical_id": "game_nba_2025_20260319_phx_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Phoenix Suns", "home_team_abbrev": "SAS", @@ -50079,8 +47297,7 @@ "canonical_id": "game_nba_2025_20260319_lac_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NOP", @@ -50097,8 +47314,7 @@ "canonical_id": "game_nba_2025_20260319_lal_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "8p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Miami Heat", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIA", @@ -50115,8 +47331,7 @@ "canonical_id": "game_nhl_2025_20260319_sea_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Seattle Kraken", "home_team_abbrev": "NSH", @@ -50133,8 +47348,7 @@ "canonical_id": "game_nba_2025_20260319_mil_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Milwaukee Bucks", "home_team_abbrev": "UTA", @@ -50151,8 +47365,7 @@ "canonical_id": "game_nhl_2025_20260319_fla_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Florida Panthers", "home_team_abbrev": "EDM", @@ -50169,8 +47382,7 @@ "canonical_id": "game_mlb_2026_20260320_ari_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T01:05:00Z", "home_team": "Chicago White Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHW", @@ -50187,8 +47399,7 @@ "canonical_id": "game_mlb_2026_20260320_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -50205,8 +47416,7 @@ "canonical_id": "game_mlb_2026_20260320_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -50223,8 +47433,7 @@ "canonical_id": "game_mlb_2026_20260320_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -50241,8 +47450,7 @@ "canonical_id": "game_mlb_2026_20260320_chw_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -50259,8 +47467,7 @@ "canonical_id": "game_nba_2025_20260319_phi_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Philadelphia 76ers", "home_team_abbrev": "SAC", @@ -50277,8 +47484,7 @@ "canonical_id": "game_nhl_2025_20260319_ari_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Utah Club", "home_team_abbrev": "VGK", @@ -50295,8 +47501,7 @@ "canonical_id": "game_nhl_2025_20260319_buf_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Buffalo Sabres", "home_team_abbrev": "SJ", @@ -50313,8 +47518,7 @@ "canonical_id": "game_nhl_2025_20260319_tb_van", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "VAN", @@ -50331,8 +47535,7 @@ "canonical_id": "game_nhl_2025_20260319_phi_la", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "LA", @@ -50349,8 +47552,7 @@ "canonical_id": "game_mlb_2026_20260320_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -50367,8 +47569,7 @@ "canonical_id": "game_mlb_2026_20260320_det_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Detroit Tigers", "home_team_abbrev": "PHI", @@ -50385,8 +47586,7 @@ "canonical_id": "game_mlb_2026_20260320_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -50403,8 +47603,7 @@ "canonical_id": "game_mlb_2026_20260320_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -50421,8 +47620,7 @@ "canonical_id": "game_mlb_2026_20260320_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -50439,8 +47637,7 @@ "canonical_id": "game_mlb_2026_20260320_chw_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "12:10p", + "game_datetime_utc": "2026-03-20T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -50457,8 +47654,7 @@ "canonical_id": "game_mlb_2026_20260320_chc_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago Cubs", "home_team_abbrev": "OAK", @@ -50475,8 +47671,7 @@ "canonical_id": "game_mlb_2026_20260320_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -50493,8 +47688,7 @@ "canonical_id": "game_mlb_2026_20260320_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -50511,8 +47705,7 @@ "canonical_id": "game_mlb_2026_20260320_mil_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -50529,8 +47722,7 @@ "canonical_id": "game_mlb_2026_20260320_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T22:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -50547,8 +47739,7 @@ "canonical_id": "game_mlb_2026_20260320_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T22:05:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -50565,8 +47756,7 @@ "canonical_id": "game_mlb_2026_20260320_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:35p", + "game_datetime_utc": "2026-03-20T22:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -50583,8 +47773,7 @@ "canonical_id": "game_nhl_2025_20260320_car_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-20T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TOR", @@ -50601,8 +47790,7 @@ "canonical_id": "game_nhl_2025_20260320_njd_was", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-20T23:00:00Z", "home_team": "Washington Capitals", "away_team": "New Jersey Devils", "home_team_abbrev": "WAS", @@ -50619,8 +47807,7 @@ "canonical_id": "game_nba_2025_20260320_gsw_det", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Golden State Warriors", "home_team_abbrev": "DET", @@ -50637,8 +47824,7 @@ "canonical_id": "game_nba_2025_20260320_nyk_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "New York Knicks", "home_team_abbrev": "BKN", @@ -50655,8 +47841,7 @@ "canonical_id": "game_nba_2025_20260320_bos_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Boston Celtics", "home_team_abbrev": "MEM", @@ -50673,8 +47858,7 @@ "canonical_id": "game_nba_2025_20260320_por_min", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Portland Blazers", "home_team_abbrev": "MIN", @@ -50691,8 +47875,7 @@ "canonical_id": "game_nba_2025_20260320_atl_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Atlanta Hawks", "home_team_abbrev": "HOU", @@ -50709,8 +47892,7 @@ "canonical_id": "game_nwsl_2026_20260321_den_orl", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "ORL", @@ -50727,8 +47909,7 @@ "canonical_id": "game_nwsl_2026_20260321_wsh_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Washington Washington Spirit", "home_team_abbrev": "RGN", @@ -50745,8 +47926,7 @@ "canonical_id": "game_mlb_2026_20260321_sf_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "5:05p", + "game_datetime_utc": "2026-03-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -50763,8 +47943,7 @@ "canonical_id": "game_mlb_2026_20260321_kc_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "5:05p", + "game_datetime_utc": "2026-03-21T00:05:00Z", "home_team": "San Francisco Giants", "away_team": "Kansas City Royals", "home_team_abbrev": "SF", @@ -50781,8 +47960,7 @@ "canonical_id": "game_nhl_2025_20260320_col_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Colorado Avalanche", "home_team_abbrev": "CHI", @@ -50799,8 +47977,7 @@ "canonical_id": "game_nba_2025_20260320_tor_den", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Toronto Raptors", "home_team_abbrev": "DEN", @@ -50817,8 +47994,7 @@ "canonical_id": "game_nhl_2025_20260320_fla_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Florida Panthers", "home_team_abbrev": "CGY", @@ -50835,8 +48011,7 @@ "canonical_id": "game_mlb_2026_20260321_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-21T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -50853,8 +48028,7 @@ "canonical_id": "game_mlb_2026_20260321_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:10p", + "game_datetime_utc": "2026-03-21T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -50871,8 +48045,7 @@ "canonical_id": "game_nhl_2025_20260320_ana_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T02:00:00Z", "home_team": "Utah Club", "away_team": "Anaheim Ducks", "home_team_abbrev": "ARI", @@ -50889,8 +48062,7 @@ "canonical_id": "game_nwsl_2026_20260321_sea_por", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "POR", @@ -50907,8 +48079,7 @@ "canonical_id": "game_mls_2026_20260321_clb_tor", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "TOR", @@ -50925,8 +48096,7 @@ "canonical_id": "game_nhl_2025_20260321_wpg_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T17:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Winnipeg Jets", "home_team_abbrev": "PIT", @@ -50943,8 +48113,7 @@ "canonical_id": "game_mlb_2026_20260321_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -50961,8 +48130,7 @@ "canonical_id": "game_mlb_2026_20260321_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -50979,8 +48147,7 @@ "canonical_id": "game_mlb_2026_20260321_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -50997,8 +48164,7 @@ "canonical_id": "game_mlb_2026_20260321_tor_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PIT", @@ -51015,8 +48181,7 @@ "canonical_id": "game_mlb_2026_20260321_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -51033,8 +48198,7 @@ "canonical_id": "game_mlb_2026_20260321_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -51051,8 +48215,7 @@ "canonical_id": "game_mlb_2026_20260321_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -51069,8 +48232,7 @@ "canonical_id": "game_mlb_2026_20260321_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T17:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -51087,8 +48249,7 @@ "canonical_id": "game_nhl_2025_20260321_vgk_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T18:00:00Z", "home_team": "Nashville Predators", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NSH", @@ -51105,8 +48266,7 @@ "canonical_id": "game_mlb_2026_20260321_oak_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Oakland Athletics", "home_team_abbrev": "LAD", @@ -51123,8 +48283,7 @@ "canonical_id": "game_mlb_2026_20260321_col_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "Kansas City Royals", "away_team": "Colorado Rockies", "home_team_abbrev": "KC", @@ -51141,8 +48300,7 @@ "canonical_id": "game_mlb_2026_20260321_cle_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cleveland Guardians", "home_team_abbrev": "SF", @@ -51159,8 +48317,7 @@ "canonical_id": "game_nhl_2025_20260321_buf_la", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Buffalo Sabres", "home_team_abbrev": "LA", @@ -51177,8 +48334,7 @@ "canonical_id": "game_nhl_2025_20260321_dal_min", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "3p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Minnesota Wild", "away_team": "Dallas Stars", "home_team_abbrev": "MIN", @@ -51195,8 +48351,7 @@ "canonical_id": "game_nhl_2025_20260321_phi_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "San Jose Sharks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "SJ", @@ -51213,8 +48368,7 @@ "canonical_id": "game_nwsl_2026_20260321_bos_hou", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "3p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "HOU", @@ -51231,8 +48385,7 @@ "canonical_id": "game_mlb_2026_20260321_chw_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago White Sox", "home_team_abbrev": "CIN", @@ -51249,8 +48402,7 @@ "canonical_id": "game_mlb_2026_20260321_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -51267,8 +48419,7 @@ "canonical_id": "game_mlb_2026_20260321_chc_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -51285,8 +48436,7 @@ "canonical_id": "game_mlb_2026_20260321_tex_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -51303,8 +48453,7 @@ "canonical_id": "game_mls_2026_20260321_chi_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "4:30p", + "game_datetime_utc": "2026-03-21T20:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "PHI", @@ -51321,8 +48470,7 @@ "canonical_id": "game_nba_2025_20260321_okc_was", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T21:00:00Z", "home_team": "Washington Wizards", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "WAS", @@ -51339,8 +48487,7 @@ "canonical_id": "game_nhl_2025_20260321_sea_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Seattle Kraken", "home_team_abbrev": "CBJ", @@ -51357,8 +48504,7 @@ "canonical_id": "game_mls_2026_20260321_orl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T22:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Orlando Orlando City", "home_team_abbrev": "NSH", @@ -51375,8 +48521,7 @@ "canonical_id": "game_nwsl_2026_20260321_ncc_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "6:30p", + "game_datetime_utc": "2026-03-21T22:30:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "NJY", @@ -51393,8 +48538,7 @@ "canonical_id": "game_nba_2025_20260321_lal_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Los Angeles Lakers", "home_team_abbrev": "ORL", @@ -51411,8 +48555,7 @@ "canonical_id": "game_nba_2025_20260321_cle_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "6p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NOP", @@ -51429,8 +48572,7 @@ "canonical_id": "game_nba_2025_20260321_mem_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CHA", @@ -51447,8 +48589,7 @@ "canonical_id": "game_nhl_2025_20260321_nyi_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Islanders", "home_team_abbrev": "MTL", @@ -51465,8 +48606,7 @@ "canonical_id": "game_nhl_2025_20260321_stl_van", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "4p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "St. Louis Blues", "home_team_abbrev": "VAN", @@ -51483,8 +48623,7 @@ "canonical_id": "game_nhl_2025_20260321_tor_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "OTT", @@ -51501,8 +48640,7 @@ "canonical_id": "game_mls_2026_20260321_mtl_cin", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CIN", @@ -51519,8 +48657,7 @@ "canonical_id": "game_mls_2026_20260321_dc_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Washington D.C. United", "home_team_abbrev": "ATL", @@ -51537,8 +48674,7 @@ "canonical_id": "game_mls_2026_20260321_ny_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CLT", @@ -51555,8 +48691,7 @@ "canonical_id": "game_nba_2025_20260321_gsw_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Golden State Warriors", "home_team_abbrev": "ATL", @@ -51573,8 +48708,7 @@ "canonical_id": "game_nba_2025_20260321_ind_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Indiana Pacers", "home_team_abbrev": "SAS", @@ -51591,8 +48725,7 @@ "canonical_id": "game_nba_2025_20260321_mia_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Miami Heat", "home_team_abbrev": "HOU", @@ -51609,8 +48742,7 @@ "canonical_id": "game_nhl_2025_20260321_bos_det", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Boston Bruins", "home_team_abbrev": "DET", @@ -51627,8 +48759,7 @@ "canonical_id": "game_mls_2026_20260322_hou_dal", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "DAL", @@ -51645,8 +48776,7 @@ "canonical_id": "game_mls_2026_20260322_ne_stl", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "New England New England Revolution", "home_team_abbrev": "STL", @@ -51663,8 +48793,7 @@ "canonical_id": "game_mls_2026_20260322_col_skc", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SKC", @@ -51681,8 +48810,7 @@ "canonical_id": "game_mls_2026_20260322_lafc_aus", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "AUS", @@ -51699,8 +48827,7 @@ "canonical_id": "game_nba_2025_20260321_lac_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DAL", @@ -51717,8 +48844,7 @@ "canonical_id": "game_nwsl_2026_20260322_ang_bay", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "5:45p", + "game_datetime_utc": "2026-03-22T00:45:00Z", "home_team": "San Francisco Bay FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "BAY", @@ -51735,8 +48861,7 @@ "canonical_id": "game_nba_2025_20260321_phi_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T01:30:00Z", "home_team": "Utah Jazz", "away_team": "Philadelphia 76ers", "home_team_abbrev": "UTA", @@ -51753,8 +48878,7 @@ "canonical_id": "game_nba_2025_20260321_mil_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "10p", + "game_datetime_utc": "2026-03-22T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHX", @@ -51771,8 +48895,7 @@ "canonical_id": "game_nhl_2025_20260321_tb_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "EDM", @@ -51789,8 +48912,7 @@ "canonical_id": "game_mls_2026_20260322_sj_van", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "VAN", @@ -51807,8 +48929,7 @@ "canonical_id": "game_nhl_2025_20260322_wpg_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "12p", + "game_datetime_utc": "2026-03-22T16:00:00Z", "home_team": "New York Rangers", "away_team": "Winnipeg Jets", "home_team_abbrev": "NYR", @@ -51825,8 +48946,7 @@ "canonical_id": "game_mlb_2026_20260322_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T16:05:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -51843,8 +48963,7 @@ "canonical_id": "game_nhl_2025_20260322_col_was", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "12:30p", + "game_datetime_utc": "2026-03-22T16:30:00Z", "home_team": "Washington Capitals", "away_team": "Colorado Avalanche", "home_team_abbrev": "WAS", @@ -51861,8 +48980,7 @@ "canonical_id": "game_mls_2026_20260322_mia_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1p", + "game_datetime_utc": "2026-03-22T17:00:00Z", "home_team": "New York New York City FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "NYC", @@ -51879,8 +48997,7 @@ "canonical_id": "game_mlb_2026_20260322_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -51897,8 +49014,7 @@ "canonical_id": "game_mlb_2026_20260322_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -51915,8 +49031,7 @@ "canonical_id": "game_mlb_2026_20260322_phi_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "New York Yankees", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYY", @@ -51933,8 +49048,7 @@ "canonical_id": "game_mlb_2026_20260322_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:07p", + "game_datetime_utc": "2026-03-22T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -51951,8 +49065,7 @@ "canonical_id": "game_mlb_2026_20260322_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -51969,8 +49082,7 @@ "canonical_id": "game_mlb_2026_20260322_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:35p", + "game_datetime_utc": "2026-03-22T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -51987,8 +49099,7 @@ "canonical_id": "game_nwsl_2026_20260322_kcc_chi", "sport": "NWSL", "season": "2026", - "date": "2026-03-22", - "time": "1p", + "game_datetime_utc": "2026-03-22T18:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "CHI", @@ -52005,8 +49116,7 @@ "canonical_id": "game_mls_2026_20260322_sea_min", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1:30p", + "game_datetime_utc": "2026-03-22T18:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "MIN", @@ -52023,8 +49133,7 @@ "canonical_id": "game_nhl_2025_20260322_car_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PIT", @@ -52041,8 +49150,7 @@ "canonical_id": "game_nhl_2025_20260322_nsh_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "2p", + "game_datetime_utc": "2026-03-22T19:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Nashville Predators", "home_team_abbrev": "CHI", @@ -52059,8 +49167,7 @@ "canonical_id": "game_mlb_2026_20260322_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -52077,8 +49184,7 @@ "canonical_id": "game_mlb_2026_20260322_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -52095,8 +49201,7 @@ "canonical_id": "game_mlb_2026_20260322_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -52113,8 +49218,7 @@ "canonical_id": "game_mlb_2026_20260322_oak_col", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Oakland Athletics", "home_team_abbrev": "COL", @@ -52131,8 +49235,7 @@ "canonical_id": "game_mlb_2026_20260322_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -52149,8 +49252,7 @@ "canonical_id": "game_mls_2026_20260322_lag_por", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1:30p", + "game_datetime_utc": "2026-03-22T20:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "POR", @@ -52167,8 +49269,7 @@ "canonical_id": "game_nba_2025_20260322_por_den", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T21:00:00Z", "home_team": "Denver Nuggets", "away_team": "Portland Blazers", "home_team_abbrev": "DEN", @@ -52185,8 +49286,7 @@ "canonical_id": "game_nba_2025_20260322_brk_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T22:00:00Z", "home_team": "Sacramento Kings", "away_team": "Brooklyn Nets", "home_team_abbrev": "SAC", @@ -52203,8 +49303,7 @@ "canonical_id": "game_mls_2026_20260322_slc_sd", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "4p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SD", @@ -52221,8 +49320,7 @@ "canonical_id": "game_nhl_2025_20260322_vgk_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "6p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DAL", @@ -52239,8 +49337,7 @@ "canonical_id": "game_nhl_2025_20260322_cbj_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "7p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "New York Islanders", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYI", @@ -52257,8 +49354,7 @@ "canonical_id": "game_nwsl_2026_20260322_sdw_uta", "sport": "NWSL", "season": "2026", - "date": "2026-03-22", - "time": "5p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "UTA", @@ -52275,8 +49371,7 @@ "canonical_id": "game_nba_2025_20260322_was_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T23:30:00Z", "home_team": "New York Knicks", "away_team": "Washington Wizards", "home_team_abbrev": "NYK", @@ -52293,8 +49388,7 @@ "canonical_id": "game_nba_2025_20260322_min_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "8p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "BOS", @@ -52311,8 +49405,7 @@ "canonical_id": "game_nhl_2025_20260322_buf_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "5p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Buffalo Sabres", "home_team_abbrev": "ANA", @@ -52329,8 +49422,7 @@ "canonical_id": "game_nhl_2025_20260322_tb_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "6p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CGY", @@ -52347,8 +49439,7 @@ "canonical_id": "game_nba_2025_20260322_tor_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "9p", + "game_datetime_utc": "2026-03-23T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Toronto Raptors", "home_team_abbrev": "PHX", @@ -52365,8 +49456,7 @@ "canonical_id": "game_nhl_2025_20260322_la_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "7p", + "game_datetime_utc": "2026-03-23T01:00:00Z", "home_team": "Utah Club", "away_team": "Los Angeles Kings", "home_team_abbrev": "ARI", @@ -52383,8 +49473,7 @@ "canonical_id": "game_mlb_2026_20260323_lad_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "6:07p", + "game_datetime_utc": "2026-03-23T01:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -52401,8 +49490,7 @@ "canonical_id": "game_mlb_2026_20260323_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T16:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -52419,8 +49507,7 @@ "canonical_id": "game_mlb_2026_20260323_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -52437,8 +49524,7 @@ "canonical_id": "game_mlb_2026_20260323_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -52455,8 +49541,7 @@ "canonical_id": "game_mlb_2026_20260323_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -52473,8 +49558,7 @@ "canonical_id": "game_mlb_2026_20260323_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -52491,8 +49575,7 @@ "canonical_id": "game_mlb_2026_20260323_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -52509,8 +49592,7 @@ "canonical_id": "game_mlb_2026_20260323_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:10p", + "game_datetime_utc": "2026-03-23T19:10:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -52527,8 +49609,7 @@ "canonical_id": "game_nba_2025_20260323_okc_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "4p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHI", @@ -52545,8 +49626,7 @@ "canonical_id": "game_nba_2025_20260323_mem_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "ATL", @@ -52563,8 +49643,7 @@ "canonical_id": "game_nba_2025_20260323_lal_det", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DET", @@ -52581,8 +49660,7 @@ "canonical_id": "game_nba_2025_20260323_ind_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Indiana Pacers", "home_team_abbrev": "ORL", @@ -52599,8 +49677,7 @@ "canonical_id": "game_nba_2025_20260323_sas_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-23T23:30:00Z", "home_team": "Miami Heat", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIA", @@ -52617,8 +49694,7 @@ "canonical_id": "game_nhl_2025_20260323_ott_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-23T23:30:00Z", "home_team": "New York Rangers", "away_team": "Ottawa Senators", "home_team_abbrev": "NYR", @@ -52635,8 +49711,7 @@ "canonical_id": "game_mlb_2026_20260323_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:40p", + "game_datetime_utc": "2026-03-23T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -52653,8 +49728,7 @@ "canonical_id": "game_nba_2025_20260323_hou_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Houston Rockets", "home_team_abbrev": "CHI", @@ -52671,8 +49745,7 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "7:05p", + "game_datetime_utc": "2026-03-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -52689,8 +49762,7 @@ "canonical_id": "game_nba_2025_20260323_tor_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Toronto Raptors", "home_team_abbrev": "UTA", @@ -52707,8 +49779,7 @@ "canonical_id": "game_mlb_2026_20260324_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:10p", + "game_datetime_utc": "2026-03-24T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -52725,8 +49796,7 @@ "canonical_id": "game_mlb_2026_20260324_det_col_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:10p", + "game_datetime_utc": "2026-03-24T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Detroit Tigers", "home_team_abbrev": "COL", @@ -52743,8 +49813,7 @@ "canonical_id": "game_nba_2025_20260323_gsw_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "8:30p", + "game_datetime_utc": "2026-03-24T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Golden State Warriors", "home_team_abbrev": "DAL", @@ -52761,8 +49830,7 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:40p", + "game_datetime_utc": "2026-03-24T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -52779,8 +49847,7 @@ "canonical_id": "game_nba_2025_20260323_brk_por", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Brooklyn Nets", "home_team_abbrev": "POR", @@ -52797,8 +49864,7 @@ "canonical_id": "game_nba_2025_20260323_mil_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "LAC", @@ -52815,8 +49881,7 @@ "canonical_id": "game_mlb_2026_20260324_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:05p", + "game_datetime_utc": "2026-03-24T16:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -52833,8 +49898,7 @@ "canonical_id": "game_mlb_2026_20260324_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "1:05p", + "game_datetime_utc": "2026-03-24T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -52851,8 +49915,7 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "1:05p", + "game_datetime_utc": "2026-03-24T18:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -52869,8 +49932,7 @@ "canonical_id": "game_mlb_2026_20260324_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:05p", + "game_datetime_utc": "2026-03-24T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -52887,8 +49949,7 @@ "canonical_id": "game_mlb_2026_20260324_det_col_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:10p", + "game_datetime_utc": "2026-03-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Detroit Tigers", "home_team_abbrev": "COL", @@ -52905,8 +49966,7 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:40p", + "game_datetime_utc": "2026-03-24T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -52923,8 +49983,7 @@ "canonical_id": "game_mlb_2026_20260324_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "4:10p", + "game_datetime_utc": "2026-03-24T21:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -52941,8 +50000,7 @@ "canonical_id": "game_nba_2025_20260324_sac_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Sacramento Kings", "home_team_abbrev": "CHA", @@ -52959,8 +50017,7 @@ "canonical_id": "game_nhl_2025_20260324_tor_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BOS", @@ -52977,8 +50034,7 @@ "canonical_id": "game_nhl_2025_20260324_car_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Carolina Hurricanes", "home_team_abbrev": "MTL", @@ -52995,8 +50051,7 @@ "canonical_id": "game_nhl_2025_20260324_col_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Colorado Avalanche", "home_team_abbrev": "PIT", @@ -53013,8 +50068,7 @@ "canonical_id": "game_nhl_2025_20260324_sea_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Seattle Kraken", "home_team_abbrev": "FLA", @@ -53031,8 +50085,7 @@ "canonical_id": "game_nhl_2025_20260324_cbj_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PHI", @@ -53049,8 +50102,7 @@ "canonical_id": "game_nhl_2025_20260324_chi_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "New York Islanders", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NYI", @@ -53067,8 +50119,7 @@ "canonical_id": "game_nhl_2025_20260324_ott_det", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Ottawa Senators", "home_team_abbrev": "DET", @@ -53085,8 +50136,7 @@ "canonical_id": "game_nba_2025_20260324_nop_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T23:30:00Z", "home_team": "New York Knicks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "NYK", @@ -53103,8 +50153,7 @@ "canonical_id": "game_nhl_2025_20260324_min_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T23:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Minnesota Wild", "home_team_abbrev": "TB", @@ -53121,8 +50170,7 @@ "canonical_id": "game_nba_2025_20260324_orl_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Orlando Magic", "home_team_abbrev": "CLE", @@ -53139,8 +50187,7 @@ "canonical_id": "game_nhl_2025_20260324_njd_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Dallas Stars", "away_team": "New Jersey Devils", "home_team_abbrev": "DAL", @@ -53157,8 +50204,7 @@ "canonical_id": "game_nhl_2025_20260324_sj_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Nashville Predators", "away_team": "San Jose Sharks", "home_team_abbrev": "NSH", @@ -53175,8 +50221,7 @@ "canonical_id": "game_nhl_2025_20260324_was_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Washington Capitals", "home_team_abbrev": "STL", @@ -53193,8 +50238,7 @@ "canonical_id": "game_nhl_2025_20260324_vgk_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WPG", @@ -53211,8 +50255,7 @@ "canonical_id": "game_mlb_2026_20260325_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "5:10p", + "game_datetime_utc": "2026-03-25T00:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -53229,8 +50272,7 @@ "canonical_id": "game_nhl_2025_20260324_la_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Los Angeles Kings", "home_team_abbrev": "CGY", @@ -53247,8 +50289,7 @@ "canonical_id": "game_nhl_2025_20260324_edm_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T01:30:00Z", "home_team": "Utah Club", "away_team": "Edmonton Oilers", "home_team_abbrev": "ARI", @@ -53265,8 +50306,7 @@ "canonical_id": "game_nhl_2025_20260324_ana_van", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Anaheim Ducks", "home_team_abbrev": "VAN", @@ -53283,8 +50323,7 @@ "canonical_id": "game_nba_2025_20260324_den_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "11p", + "game_datetime_utc": "2026-03-25T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Denver Nuggets", "home_team_abbrev": "PHX", @@ -53301,8 +50340,7 @@ "canonical_id": "game_nba_2025_20260325_lal_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "IND", @@ -53319,8 +50357,7 @@ "canonical_id": "game_nba_2025_20260325_atl_det", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -53337,8 +50374,7 @@ "canonical_id": "game_nba_2025_20260325_chi_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "4p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Chicago Bulls", "home_team_abbrev": "PHI", @@ -53355,8 +50391,7 @@ "canonical_id": "game_nhl_2025_20260325_bos_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Boston Bruins", "home_team_abbrev": "BUF", @@ -53373,8 +50408,7 @@ "canonical_id": "game_nwsl_2026_20260325_uta_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Utah Utah Royals", "home_team_abbrev": "WSH", @@ -53391,8 +50425,7 @@ "canonical_id": "game_nwsl_2026_20260325_den_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "NJY", @@ -53409,8 +50442,7 @@ "canonical_id": "game_nba_2025_20260325_okc_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "BOS", @@ -53427,8 +50459,7 @@ "canonical_id": "game_nba_2025_20260325_mia_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "6:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Miami Heat", "home_team_abbrev": "CLE", @@ -53445,8 +50476,7 @@ "canonical_id": "game_nhl_2025_20260325_nyr_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Rangers", "home_team_abbrev": "TOR", @@ -53463,8 +50493,7 @@ "canonical_id": "game_nba_2025_20260325_sas_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "San Antonio Spurs", "home_team_abbrev": "MEM", @@ -53481,8 +50510,7 @@ "canonical_id": "game_nwsl_2026_20260326_orl_chi", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "CHI", @@ -53499,8 +50527,7 @@ "canonical_id": "game_mlb_2026_20260326_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-25", - "time": "5:05p", + "game_datetime_utc": "2026-03-26T00:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -53517,8 +50544,7 @@ "canonical_id": "game_nba_2025_20260325_was_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Washington Wizards", "home_team_abbrev": "UTA", @@ -53535,8 +50561,7 @@ "canonical_id": "game_nwsl_2026_20260326_kcc_sea", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "6p", + "game_datetime_utc": "2026-03-26T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "SEA", @@ -53553,8 +50578,7 @@ "canonical_id": "game_nba_2025_20260325_hou_min", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "8:30p", + "game_datetime_utc": "2026-03-26T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Houston Rockets", "home_team_abbrev": "MIN", @@ -53571,8 +50595,7 @@ "canonical_id": "game_nba_2025_20260325_dal_den", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "8p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Dallas Mavericks", "home_team_abbrev": "DEN", @@ -53589,8 +50612,7 @@ "canonical_id": "game_nba_2025_20260325_brk_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Brooklyn Nets", "home_team_abbrev": "GSW", @@ -53607,8 +50629,7 @@ "canonical_id": "game_nba_2025_20260325_mil_por", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "POR", @@ -53625,8 +50646,7 @@ "canonical_id": "game_nwsl_2026_20260326_por_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Portland Portland Thorns", "home_team_abbrev": "SDW", @@ -53643,8 +50663,7 @@ "canonical_id": "game_nba_2025_20260325_tor_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-26T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Toronto Raptors", "home_team_abbrev": "LAC", @@ -53661,8 +50680,7 @@ "canonical_id": "game_mlb_2026_20260326_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:15p", + "game_datetime_utc": "2026-03-26T17:15:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -53679,8 +50697,7 @@ "canonical_id": "game_mlb_2026_20260326_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:10p", + "game_datetime_utc": "2026-03-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -53697,8 +50714,7 @@ "canonical_id": "game_mlb_2026_20260326_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:20p", + "game_datetime_utc": "2026-03-26T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -53715,8 +50731,7 @@ "canonical_id": "game_mlb_2026_20260326_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:05p", + "game_datetime_utc": "2026-03-26T19:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -53733,8 +50748,7 @@ "canonical_id": "game_mlb_2026_20260326_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -53751,8 +50765,7 @@ "canonical_id": "game_mlb_2026_20260326_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -53769,8 +50782,7 @@ "canonical_id": "game_mlb_2026_20260326_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "4:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -53787,8 +50799,7 @@ "canonical_id": "game_mlb_2026_20260326_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:15p", + "game_datetime_utc": "2026-03-26T20:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -53805,8 +50816,7 @@ "canonical_id": "game_mlb_2026_20260326_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "4:15p", + "game_datetime_utc": "2026-03-26T20:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -53823,8 +50833,7 @@ "canonical_id": "game_nba_2025_20260326_nyk_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New York Knicks", "home_team_abbrev": "CHA", @@ -53841,8 +50850,7 @@ "canonical_id": "game_nba_2025_20260326_sac_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Sacramento Kings", "home_team_abbrev": "ORL", @@ -53859,8 +50867,7 @@ "canonical_id": "game_nba_2025_20260326_nop_det", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DET", @@ -53877,8 +50884,7 @@ "canonical_id": "game_nhl_2025_20260326_pit_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "OTT", @@ -53895,8 +50901,7 @@ "canonical_id": "game_nhl_2025_20260326_sea_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Seattle Kraken", "home_team_abbrev": "TB", @@ -53913,8 +50918,7 @@ "canonical_id": "game_nhl_2025_20260326_dal_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "New York Islanders", "away_team": "Dallas Stars", "home_team_abbrev": "NYI", @@ -53931,8 +50935,7 @@ "canonical_id": "game_nhl_2025_20260326_cbj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MTL", @@ -53949,8 +50952,7 @@ "canonical_id": "game_nhl_2025_20260326_min_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Minnesota Wild", "home_team_abbrev": "FLA", @@ -53967,8 +50969,7 @@ "canonical_id": "game_nhl_2025_20260326_chi_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "PHI", @@ -53985,8 +50986,7 @@ "canonical_id": "game_nhl_2025_20260326_col_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Colorado Avalanche", "home_team_abbrev": "WPG", @@ -54003,8 +51003,7 @@ "canonical_id": "game_nhl_2025_20260326_njd_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "Nashville Predators", "away_team": "New Jersey Devils", "home_team_abbrev": "NSH", @@ -54021,8 +51020,7 @@ "canonical_id": "game_nhl_2025_20260326_sj_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "San Jose Sharks", "home_team_abbrev": "STL", @@ -54039,8 +51037,7 @@ "canonical_id": "game_mlb_2026_20260327_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "5:30p", + "game_datetime_utc": "2026-03-27T00:30:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -54057,8 +51054,7 @@ "canonical_id": "game_nhl_2025_20260326_ana_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Anaheim Ducks", "home_team_abbrev": "CGY", @@ -54075,8 +51071,7 @@ "canonical_id": "game_nhl_2025_20260326_was_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T01:00:00Z", "home_team": "Utah Club", "away_team": "Washington Capitals", "home_team_abbrev": "ARI", @@ -54093,8 +51088,7 @@ "canonical_id": "game_nhl_2025_20260326_edm_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "6:30p", + "game_datetime_utc": "2026-03-27T01:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Edmonton Oilers", "home_team_abbrev": "VGK", @@ -54111,8 +51105,7 @@ "canonical_id": "game_nhl_2025_20260326_la_van", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Los Angeles Kings", "home_team_abbrev": "VAN", @@ -54129,8 +51122,7 @@ "canonical_id": "game_mlb_2026_20260327_cle_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "7:10p", + "game_datetime_utc": "2026-03-27T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -54147,8 +51139,7 @@ "canonical_id": "game_mlb_2026_20260327_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "1:35p", + "game_datetime_utc": "2026-03-27T20:35:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -54165,8 +51156,7 @@ "canonical_id": "game_nba_2025_20260327_lac_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "IND", @@ -54183,8 +51173,7 @@ "canonical_id": "game_nhl_2025_20260327_det_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Detroit Red Wings", "home_team_abbrev": "BUF", @@ -54201,8 +51190,7 @@ "canonical_id": "game_nhl_2025_20260327_chi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "New York Rangers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NYR", @@ -54219,8 +51207,7 @@ "canonical_id": "game_mlb_2026_20260327_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:07p", + "game_datetime_utc": "2026-03-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -54237,8 +51224,7 @@ "canonical_id": "game_mlb_2026_20260327_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-27T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -54255,8 +51241,7 @@ "canonical_id": "game_mlb_2026_20260327_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:15p", + "game_datetime_utc": "2026-03-27T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -54273,8 +51258,7 @@ "canonical_id": "game_nba_2025_20260327_mia_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "6:30p", + "game_datetime_utc": "2026-03-27T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Miami Heat", "home_team_abbrev": "CLE", @@ -54291,8 +51275,7 @@ "canonical_id": "game_nba_2025_20260327_atl_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7:30p", + "game_datetime_utc": "2026-03-27T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Atlanta Hawks", "home_team_abbrev": "BOS", @@ -54309,8 +51292,7 @@ "canonical_id": "game_nba_2025_20260327_chi_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Chicago Bulls", "home_team_abbrev": "OKC", @@ -54327,8 +51309,7 @@ "canonical_id": "game_nba_2025_20260327_hou_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Houston Rockets", "home_team_abbrev": "MEM", @@ -54345,8 +51326,7 @@ "canonical_id": "game_mlb_2026_20260328_laa_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-28T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -54363,8 +51343,7 @@ "canonical_id": "game_nba_2025_20260327_nop_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "8:30p", + "game_datetime_utc": "2026-03-28T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New Orleans Pelicans", "home_team_abbrev": "TOR", @@ -54381,8 +51360,7 @@ "canonical_id": "game_nba_2025_20260327_uta_den", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Utah Jazz", "home_team_abbrev": "DEN", @@ -54399,8 +51377,7 @@ "canonical_id": "game_mlb_2026_20260328_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "6:40p", + "game_datetime_utc": "2026-03-28T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -54417,8 +51394,7 @@ "canonical_id": "game_mlb_2026_20260328_cle_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "6:40p", + "game_datetime_utc": "2026-03-28T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -54435,8 +51411,7 @@ "canonical_id": "game_nba_2025_20260327_was_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Washington Wizards", "home_team_abbrev": "GSW", @@ -54453,8 +51428,7 @@ "canonical_id": "game_nba_2025_20260327_dal_por", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Dallas Mavericks", "home_team_abbrev": "POR", @@ -54471,8 +51445,7 @@ "canonical_id": "game_nwsl_2026_20260328_hou_ang", "sport": "NWSL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "ANG", @@ -54489,8 +51462,7 @@ "canonical_id": "game_mlb_2026_20260328_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -54507,8 +51479,7 @@ "canonical_id": "game_nba_2025_20260327_brk_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7:30p", + "game_datetime_utc": "2026-03-28T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Brooklyn Nets", "home_team_abbrev": "LAL", @@ -54525,8 +51496,7 @@ "canonical_id": "game_nwsl_2026_20260328_uta_bos", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "12p", + "game_datetime_utc": "2026-03-28T16:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "BOS", @@ -54543,8 +51513,7 @@ "canonical_id": "game_nhl_2025_20260328_ott_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T17:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Ottawa Senators", "home_team_abbrev": "TB", @@ -54561,8 +51530,7 @@ "canonical_id": "game_nhl_2025_20260328_fla_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T17:00:00Z", "home_team": "New York Islanders", "away_team": "Florida Panthers", "home_team_abbrev": "NYI", @@ -54579,8 +51547,7 @@ "canonical_id": "game_nwsl_2026_20260328_wsh_den", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "12p", + "game_datetime_utc": "2026-03-28T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "DEN", @@ -54597,8 +51564,7 @@ "canonical_id": "game_mlb_2026_20260328_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "1:15p", + "game_datetime_utc": "2026-03-28T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -54615,8 +51581,7 @@ "canonical_id": "game_mlb_2026_20260328_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "1:20p", + "game_datetime_utc": "2026-03-28T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -54633,8 +51598,7 @@ "canonical_id": "game_nba_2025_20260328_sas_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "2p", + "game_datetime_utc": "2026-03-28T19:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIL", @@ -54651,8 +51615,7 @@ "canonical_id": "game_mlb_2026_20260328_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "3:07p", + "game_datetime_utc": "2026-03-28T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -54669,8 +51632,7 @@ "canonical_id": "game_nhl_2025_20260328_ana_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1:30p", + "game_datetime_utc": "2026-03-28T19:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Anaheim Ducks", "home_team_abbrev": "EDM", @@ -54687,8 +51649,7 @@ "canonical_id": "game_nwsl_2026_20260328_kcc_por", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "POR", @@ -54705,8 +51666,7 @@ "canonical_id": "game_mlb_2026_20260328_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:05p", + "game_datetime_utc": "2026-03-28T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -54723,8 +51683,7 @@ "canonical_id": "game_mlb_2026_20260328_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:05p", + "game_datetime_utc": "2026-03-28T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -54741,8 +51700,7 @@ "canonical_id": "game_mlb_2026_20260328_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -54759,8 +51717,7 @@ "canonical_id": "game_mlb_2026_20260328_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -54777,8 +51734,7 @@ "canonical_id": "game_mlb_2026_20260328_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -54795,8 +51751,7 @@ "canonical_id": "game_nhl_2025_20260328_sj_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "San Jose Sharks", "home_team_abbrev": "CBJ", @@ -54813,8 +51768,7 @@ "canonical_id": "game_nhl_2025_20260328_dal_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Dallas Stars", "home_team_abbrev": "PIT", @@ -54831,8 +51785,7 @@ "canonical_id": "game_nhl_2025_20260328_njd_car", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New Jersey Devils", "home_team_abbrev": "CAR", @@ -54849,8 +51802,7 @@ "canonical_id": "game_nhl_2025_20260328_min_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Boston Bruins", "away_team": "Minnesota Wild", "home_team_abbrev": "BOS", @@ -54867,8 +51819,7 @@ "canonical_id": "game_nhl_2025_20260328_sea_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-28T21:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Seattle Kraken", "home_team_abbrev": "BUF", @@ -54885,8 +51836,7 @@ "canonical_id": "game_nba_2025_20260328_phi_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHA", @@ -54903,8 +51853,7 @@ "canonical_id": "game_nwsl_2026_20260328_rgn_sea", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "3:30p", + "game_datetime_utc": "2026-03-28T22:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "SEA", @@ -54921,8 +51870,7 @@ "canonical_id": "game_nhl_2025_20260328_wpg_col", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Winnipeg Jets", "home_team_abbrev": "COL", @@ -54939,8 +51887,7 @@ "canonical_id": "game_nhl_2025_20260328_tor_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "St. Louis Blues", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "STL", @@ -54957,8 +51904,7 @@ "canonical_id": "game_nhl_2025_20260328_mtl_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "Nashville Predators", "away_team": "Montreal Canadiens", "home_team_abbrev": "NSH", @@ -54975,8 +51921,7 @@ "canonical_id": "game_nwsl_2026_20260328_bay_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "San Francisco Bay FC", "home_team_abbrev": "NCC", @@ -54993,8 +51938,7 @@ "canonical_id": "game_mlb_2026_20260328_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-28T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -55011,8 +51955,7 @@ "canonical_id": "game_mlb_2026_20260328_laa_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-28T23:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -55029,8 +51972,7 @@ "canonical_id": "game_mlb_2026_20260328_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:15p", + "game_datetime_utc": "2026-03-28T23:15:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -55047,8 +51989,7 @@ "canonical_id": "game_mlb_2026_20260328_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "7:15p", + "game_datetime_utc": "2026-03-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -55065,8 +52006,7 @@ "canonical_id": "game_nba_2025_20260328_sac_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-28T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Sacramento Kings", "home_team_abbrev": "ATL", @@ -55083,8 +52023,7 @@ "canonical_id": "game_nba_2025_20260328_chi_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Chicago Bulls", "home_team_abbrev": "MEM", @@ -55101,8 +52040,7 @@ "canonical_id": "game_nba_2025_20260328_det_min", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Detroit Pistons", "home_team_abbrev": "MIN", @@ -55119,8 +52057,7 @@ "canonical_id": "game_nhl_2025_20260328_phi_det", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "8p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DET", @@ -55137,8 +52074,7 @@ "canonical_id": "game_mlb_2026_20260329_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "5:40p", + "game_datetime_utc": "2026-03-29T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -55155,8 +52091,7 @@ "canonical_id": "game_nwsl_2026_20260329_chi_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "5:45p", + "game_datetime_utc": "2026-03-29T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "SDW", @@ -55173,8 +52108,7 @@ "canonical_id": "game_nhl_2025_20260328_ari_la", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-29T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Utah Club", "home_team_abbrev": "LA", @@ -55191,8 +52125,7 @@ "canonical_id": "game_mlb_2026_20260329_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-29T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -55209,8 +52142,7 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:40p", + "game_datetime_utc": "2026-03-29T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -55227,8 +52159,7 @@ "canonical_id": "game_nba_2025_20260328_uta_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "10p", + "game_datetime_utc": "2026-03-29T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Utah Jazz", "home_team_abbrev": "PHX", @@ -55245,8 +52176,7 @@ "canonical_id": "game_nhl_2025_20260328_van_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "8p", + "game_datetime_utc": "2026-03-29T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Vancouver Canucks", "home_team_abbrev": "CGY", @@ -55263,8 +52193,7 @@ "canonical_id": "game_nhl_2025_20260328_was_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-29T02:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Washington Capitals", "home_team_abbrev": "VGK", @@ -55281,8 +52210,7 @@ "canonical_id": "game_nhl_2025_20260329_fla_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "1p", + "game_datetime_utc": "2026-03-29T17:00:00Z", "home_team": "New York Rangers", "away_team": "Florida Panthers", "home_team_abbrev": "NYR", @@ -55299,8 +52227,7 @@ "canonical_id": "game_mlb_2026_20260329_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -55317,8 +52244,7 @@ "canonical_id": "game_mlb_2026_20260329_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -55335,8 +52261,7 @@ "canonical_id": "game_mlb_2026_20260329_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -55353,8 +52278,7 @@ "canonical_id": "game_mlb_2026_20260329_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:37p", + "game_datetime_utc": "2026-03-29T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -55371,8 +52295,7 @@ "canonical_id": "game_mlb_2026_20260329_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -55389,8 +52312,7 @@ "canonical_id": "game_mlb_2026_20260329_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -55407,8 +52329,7 @@ "canonical_id": "game_mlb_2026_20260329_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -55425,8 +52346,7 @@ "canonical_id": "game_mlb_2026_20260329_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:10p", + "game_datetime_utc": "2026-03-29T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -55443,8 +52363,7 @@ "canonical_id": "game_mlb_2026_20260329_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:10p", + "game_datetime_utc": "2026-03-29T18:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -55461,8 +52380,7 @@ "canonical_id": "game_mlb_2026_20260329_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:15p", + "game_datetime_utc": "2026-03-29T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -55479,8 +52397,7 @@ "canonical_id": "game_mlb_2026_20260329_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:20p", + "game_datetime_utc": "2026-03-29T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -55497,8 +52414,7 @@ "canonical_id": "game_nba_2025_20260329_lac_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "2:30p", + "game_datetime_utc": "2026-03-29T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIL", @@ -55515,8 +52431,7 @@ "canonical_id": "game_nba_2025_20260329_mia_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Indiana Pacers", "away_team": "Miami Heat", "home_team_abbrev": "IND", @@ -55533,8 +52448,7 @@ "canonical_id": "game_nhl_2025_20260329_mtl_car", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Montreal Canadiens", "home_team_abbrev": "CAR", @@ -55551,8 +52465,7 @@ "canonical_id": "game_nhl_2025_20260329_nsh_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Nashville Predators", "home_team_abbrev": "TB", @@ -55569,8 +52482,7 @@ "canonical_id": "game_nhl_2025_20260329_bos_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Boston Bruins", "home_team_abbrev": "CBJ", @@ -55587,8 +52499,7 @@ "canonical_id": "game_nba_2025_20260329_orl_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Orlando Magic", "home_team_abbrev": "TOR", @@ -55605,8 +52516,7 @@ "canonical_id": "game_nba_2025_20260329_was_por", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "3p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Portland Blazers", "away_team": "Washington Wizards", "home_team_abbrev": "POR", @@ -55623,8 +52533,7 @@ "canonical_id": "game_nba_2025_20260329_bos_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Boston Celtics", "home_team_abbrev": "CHA", @@ -55641,8 +52550,7 @@ "canonical_id": "game_nba_2025_20260329_sac_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Sacramento Kings", "home_team_abbrev": "BKN", @@ -55659,8 +52567,7 @@ "canonical_id": "game_nba_2025_20260329_hou_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Houston Rockets", "home_team_abbrev": "NOP", @@ -55677,8 +52584,7 @@ "canonical_id": "game_nhl_2025_20260329_dal_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Dallas Stars", "home_team_abbrev": "PHI", @@ -55695,8 +52601,7 @@ "canonical_id": "game_nhl_2025_20260329_chi_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NJ", @@ -55713,8 +52618,7 @@ "canonical_id": "game_nwsl_2026_20260329_orl_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "NJY", @@ -55731,8 +52635,7 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "4:20p", + "game_datetime_utc": "2026-03-29T23:20:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -55749,8 +52652,7 @@ "canonical_id": "game_nba_2025_20260329_nyk_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6:30p", + "game_datetime_utc": "2026-03-29T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New York Knicks", "home_team_abbrev": "OKC", @@ -55767,8 +52669,7 @@ "canonical_id": "game_nba_2025_20260329_gsw_den", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "8p", + "game_datetime_utc": "2026-03-30T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Golden State Warriors", "home_team_abbrev": "DEN", @@ -55785,8 +52686,7 @@ "canonical_id": "game_mlb_2026_20260330_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "3:10p", + "game_datetime_utc": "2026-03-30T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -55803,8 +52703,7 @@ "canonical_id": "game_mlb_2026_20260330_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:35p", + "game_datetime_utc": "2026-03-30T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -55821,8 +52720,7 @@ "canonical_id": "game_mlb_2026_20260330_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -55839,8 +52737,7 @@ "canonical_id": "game_mlb_2026_20260330_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -55857,8 +52754,7 @@ "canonical_id": "game_mlb_2026_20260330_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -55875,8 +52771,7 @@ "canonical_id": "game_nba_2025_20260330_phi_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-30T23:00:00Z", "home_team": "Miami Heat", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIA", @@ -55893,8 +52788,7 @@ "canonical_id": "game_nhl_2025_20260330_pit_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-30T23:00:00Z", "home_team": "New York Islanders", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYI", @@ -55911,8 +52805,7 @@ "canonical_id": "game_mlb_2026_20260330_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:07p", + "game_datetime_utc": "2026-03-30T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -55929,8 +52822,7 @@ "canonical_id": "game_mlb_2026_20260330_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:15p", + "game_datetime_utc": "2026-03-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -55947,8 +52839,7 @@ "canonical_id": "game_nba_2025_20260330_bos_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7:30p", + "game_datetime_utc": "2026-03-30T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Boston Celtics", "home_team_abbrev": "ATL", @@ -55965,8 +52856,7 @@ "canonical_id": "game_mlb_2026_20260330_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -55983,8 +52873,7 @@ "canonical_id": "game_mlb_2026_20260330_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -56001,8 +52890,7 @@ "canonical_id": "game_mlb_2026_20260330_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:45p", + "game_datetime_utc": "2026-03-30T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56019,8 +52907,7 @@ "canonical_id": "game_nba_2025_20260330_chi_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Chicago Bulls", "home_team_abbrev": "SAS", @@ -56037,8 +52924,7 @@ "canonical_id": "game_nba_2025_20260330_phx_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Phoenix Suns", "home_team_abbrev": "MEM", @@ -56055,8 +52941,7 @@ "canonical_id": "game_mlb_2026_20260331_bos_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T00:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -56073,8 +52958,7 @@ "canonical_id": "game_nba_2025_20260330_min_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DAL", @@ -56091,8 +52975,7 @@ "canonical_id": "game_nhl_2025_20260330_cgy_col", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "6:30p", + "game_datetime_utc": "2026-03-31T00:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Calgary Flames", "home_team_abbrev": "COL", @@ -56109,8 +52992,7 @@ "canonical_id": "game_nba_2025_20260330_cle_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "UTA", @@ -56127,8 +53009,7 @@ "canonical_id": "game_nba_2025_20260330_det_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "8:30p", + "game_datetime_utc": "2026-03-31T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Detroit Pistons", "home_team_abbrev": "OKC", @@ -56145,8 +53026,7 @@ "canonical_id": "game_mlb_2026_20260331_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -56163,8 +53043,7 @@ "canonical_id": "game_mlb_2026_20260331_nyy_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -56181,8 +53060,7 @@ "canonical_id": "game_nba_2025_20260330_was_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Washington Wizards", "home_team_abbrev": "LAL", @@ -56199,8 +53077,7 @@ "canonical_id": "game_nhl_2025_20260330_van_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Vancouver Canucks", "home_team_abbrev": "VGK", @@ -56217,8 +53094,7 @@ "canonical_id": "game_nhl_2025_20260330_tor_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "ANA", @@ -56235,8 +53111,7 @@ "canonical_id": "game_nhl_2025_20260330_stl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "St. Louis Blues", "home_team_abbrev": "SJ", @@ -56253,8 +53128,7 @@ "canonical_id": "game_mlb_2026_20260331_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -56271,8 +53145,7 @@ "canonical_id": "game_mlb_2026_20260331_det_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -56289,8 +53162,7 @@ "canonical_id": "game_mlb_2026_20260331_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:35p", + "game_datetime_utc": "2026-03-31T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -56307,8 +53179,7 @@ "canonical_id": "game_mlb_2026_20260331_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -56325,8 +53196,7 @@ "canonical_id": "game_mlb_2026_20260331_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -56343,8 +53213,7 @@ "canonical_id": "game_mlb_2026_20260331_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -56361,8 +53230,7 @@ "canonical_id": "game_nba_2025_20260331_phx_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Phoenix Suns", "home_team_abbrev": "ORL", @@ -56379,8 +53247,7 @@ "canonical_id": "game_nhl_2025_20260331_nyi_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Islanders", "home_team_abbrev": "BUF", @@ -56397,8 +53264,7 @@ "canonical_id": "game_nhl_2025_20260331_det_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Detroit Red Wings", "home_team_abbrev": "PIT", @@ -56415,8 +53281,7 @@ "canonical_id": "game_nhl_2025_20260331_mtl_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Montreal Canadiens", "home_team_abbrev": "TB", @@ -56433,8 +53298,7 @@ "canonical_id": "game_nhl_2025_20260331_njd_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "New York Rangers", "away_team": "New Jersey Devils", "home_team_abbrev": "NYR", @@ -56451,8 +53315,7 @@ "canonical_id": "game_nhl_2025_20260331_dal_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Dallas Stars", "home_team_abbrev": "BOS", @@ -56469,8 +53332,7 @@ "canonical_id": "game_nhl_2025_20260331_ott_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Ottawa Senators", "home_team_abbrev": "FLA", @@ -56487,8 +53349,7 @@ "canonical_id": "game_nhl_2025_20260331_phi_was", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WAS", @@ -56505,8 +53366,7 @@ "canonical_id": "game_mlb_2026_20260331_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:07p", + "game_datetime_utc": "2026-03-31T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -56523,8 +53383,7 @@ "canonical_id": "game_mlb_2026_20260331_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:15p", + "game_datetime_utc": "2026-03-31T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -56541,8 +53400,7 @@ "canonical_id": "game_nba_2025_20260331_cho_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Charlotte Hornets", "home_team_abbrev": "BKN", @@ -56559,8 +53417,7 @@ "canonical_id": "game_nhl_2025_20260331_car_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T23:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CBJ", @@ -56577,8 +53434,7 @@ "canonical_id": "game_mlb_2026_20260331_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -56595,8 +53451,7 @@ "canonical_id": "game_mlb_2026_20260331_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -56613,8 +53468,7 @@ "canonical_id": "game_mlb_2026_20260331_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:45p", + "game_datetime_utc": "2026-03-31T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56631,8 +53485,7 @@ "canonical_id": "game_nba_2025_20260331_tor_det", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "8p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Toronto Raptors", "home_team_abbrev": "DET", @@ -56649,8 +53502,7 @@ "canonical_id": "game_nba_2025_20260331_dal_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIL", @@ -56667,8 +53519,7 @@ "canonical_id": "game_nba_2025_20260331_nyk_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New York Knicks", "home_team_abbrev": "HOU", @@ -56685,8 +53536,7 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:10p", + "game_datetime_utc": "2026-04-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -56703,8 +53553,7 @@ "canonical_id": "game_nhl_2025_20260331_wpg_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Winnipeg Jets", "home_team_abbrev": "CHI", @@ -56721,8 +53570,7 @@ "canonical_id": "game_nhl_2025_20260331_sea_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Seattle Kraken", "home_team_abbrev": "EDM", @@ -56739,8 +53587,7 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -56757,8 +53604,7 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -56775,8 +53621,7 @@ "canonical_id": "game_mlb_2026_20260401_sf_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -56793,8 +53638,7 @@ "canonical_id": "game_mlb_2026_20260401_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:10p", + "game_datetime_utc": "2026-04-01T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -56811,8 +53655,7 @@ "canonical_id": "game_nba_2025_20260331_cle_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "LAL", @@ -56829,8 +53672,7 @@ "canonical_id": "game_nba_2025_20260331_por_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "8p", + "game_datetime_utc": "2026-04-01T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Portland Blazers", "home_team_abbrev": "LAC", @@ -56847,8 +53689,7 @@ "canonical_id": "game_mlb_2026_20260401_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:15p", + "game_datetime_utc": "2026-04-01T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -56865,8 +53706,7 @@ "canonical_id": "game_mlb_2026_20260401_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:35p", + "game_datetime_utc": "2026-04-01T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -56883,8 +53723,7 @@ "canonical_id": "game_mlb_2026_20260401_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -56901,8 +53740,7 @@ "canonical_id": "game_mlb_2026_20260401_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:05p", + "game_datetime_utc": "2026-04-01T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -56919,8 +53757,7 @@ "canonical_id": "game_mlb_2026_20260401_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:07p", + "game_datetime_utc": "2026-04-01T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -56937,8 +53774,7 @@ "canonical_id": "game_mlb_2026_20260401_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -56955,8 +53791,7 @@ "canonical_id": "game_mlb_2026_20260401_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:15p", + "game_datetime_utc": "2026-04-01T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56973,8 +53808,7 @@ "canonical_id": "game_mlb_2026_20260401_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -56991,8 +53825,7 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T18:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -57009,8 +53842,7 @@ "canonical_id": "game_mlb_2026_20260401_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:20p", + "game_datetime_utc": "2026-04-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -57027,8 +53859,7 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -57045,8 +53876,7 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -57063,8 +53893,7 @@ "canonical_id": "game_mlb_2026_20260401_sf_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -57081,8 +53910,7 @@ "canonical_id": "game_nba_2025_20260401_phi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Philadelphia 76ers", "home_team_abbrev": "WAS", @@ -57099,8 +53927,7 @@ "canonical_id": "game_nba_2025_20260401_atl_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T23:30:00Z", "home_team": "Orlando Magic", "away_team": "Atlanta Hawks", "home_team_abbrev": "ORL", @@ -57117,8 +53944,7 @@ "canonical_id": "game_nba_2025_20260401_bos_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T23:30:00Z", "home_team": "Miami Heat", "away_team": "Boston Celtics", "home_team_abbrev": "MIA", @@ -57135,8 +53961,7 @@ "canonical_id": "game_mlb_2026_20260401_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -57153,8 +53978,7 @@ "canonical_id": "game_nba_2025_20260401_ind_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Indiana Pacers", "home_team_abbrev": "CHI", @@ -57171,8 +53995,7 @@ "canonical_id": "game_nba_2025_20260401_dal_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -57189,8 +54012,7 @@ "canonical_id": "game_nba_2025_20260401_mil_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "HOU", @@ -57207,8 +54029,7 @@ "canonical_id": "game_nba_2025_20260401_sac_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "8p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Sacramento Kings", "home_team_abbrev": "TOR", @@ -57225,8 +54046,7 @@ "canonical_id": "game_nba_2025_20260401_nyk_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New York Knicks", "home_team_abbrev": "MEM", @@ -57243,8 +54063,7 @@ "canonical_id": "game_mlb_2026_20260402_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "5:20p", + "game_datetime_utc": "2026-04-02T00:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -57261,8 +54080,7 @@ "canonical_id": "game_nhl_2025_20260401_van_col", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "6:30p", + "game_datetime_utc": "2026-04-02T00:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Vancouver Canucks", "home_team_abbrev": "COL", @@ -57279,8 +54097,7 @@ "canonical_id": "game_nba_2025_20260401_den_uta", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Denver Nuggets", "home_team_abbrev": "UTA", @@ -57297,8 +54114,7 @@ "canonical_id": "game_nhl_2025_20260401_stl_la", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "6p", + "game_datetime_utc": "2026-04-02T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "St. Louis Blues", "home_team_abbrev": "LA", @@ -57315,8 +54131,7 @@ "canonical_id": "game_nba_2025_20260401_sas_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "San Antonio Spurs", "home_team_abbrev": "GSW", @@ -57333,8 +54148,7 @@ "canonical_id": "game_nhl_2025_20260401_ana_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Anaheim Ducks", "home_team_abbrev": "SJ", @@ -57351,8 +54165,7 @@ "canonical_id": "game_mlb_2026_20260402_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "1:10p", + "game_datetime_utc": "2026-04-02T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -57369,8 +54182,7 @@ "canonical_id": "game_mlb_2026_20260402_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "3:10p", + "game_datetime_utc": "2026-04-02T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -57387,8 +54199,7 @@ "canonical_id": "game_nba_2025_20260402_min_det", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DET", @@ -57405,8 +54216,7 @@ "canonical_id": "game_nba_2025_20260402_phx_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Phoenix Suns", "home_team_abbrev": "CHA", @@ -57423,8 +54233,7 @@ "canonical_id": "game_nhl_2025_20260402_mtl_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "New York Rangers", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYR", @@ -57441,8 +54250,7 @@ "canonical_id": "game_nhl_2025_20260402_pit_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TB", @@ -57459,8 +54267,7 @@ "canonical_id": "game_nhl_2025_20260402_bos_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Boston Bruins", "home_team_abbrev": "FLA", @@ -57477,8 +54284,7 @@ "canonical_id": "game_nhl_2025_20260402_det_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Detroit Red Wings", "home_team_abbrev": "PHI", @@ -57495,8 +54301,7 @@ "canonical_id": "game_nhl_2025_20260402_buf_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Buffalo Sabres", "home_team_abbrev": "OTT", @@ -57513,8 +54318,7 @@ "canonical_id": "game_nhl_2025_20260402_cbj_car", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CAR", @@ -57531,8 +54335,7 @@ "canonical_id": "game_nhl_2025_20260402_was_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-02T23:30:00Z", "home_team": "New Jersey Devils", "away_team": "Washington Capitals", "home_team_abbrev": "NJ", @@ -57549,8 +54352,7 @@ "canonical_id": "game_nhl_2025_20260402_van_min", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vancouver Canucks", "home_team_abbrev": "MIN", @@ -57567,8 +54369,7 @@ "canonical_id": "game_nhl_2025_20260402_wpg_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Winnipeg Jets", "home_team_abbrev": "DAL", @@ -57585,8 +54386,7 @@ "canonical_id": "game_nhl_2025_20260402_chi_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "EDM", @@ -57603,8 +54403,7 @@ "canonical_id": "game_nba_2025_20260402_lal_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "8:30p", + "game_datetime_utc": "2026-04-03T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Lakers", "home_team_abbrev": "OKC", @@ -57621,8 +54420,7 @@ "canonical_id": "game_mlb_2026_20260403_atl_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "6:40p", + "game_datetime_utc": "2026-04-03T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -57639,8 +54437,7 @@ "canonical_id": "game_mlb_2026_20260403_nym_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "6:45p", + "game_datetime_utc": "2026-04-03T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -57657,8 +54454,7 @@ "canonical_id": "game_nba_2025_20260402_cle_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "GSW", @@ -57675,8 +54471,7 @@ "canonical_id": "game_nba_2025_20260402_nop_por", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Portland Blazers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "POR", @@ -57693,8 +54488,7 @@ "canonical_id": "game_nhl_2025_20260402_ari_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Utah Club", "home_team_abbrev": "SEA", @@ -57711,8 +54505,7 @@ "canonical_id": "game_nhl_2025_20260402_tor_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "SJ", @@ -57729,8 +54522,7 @@ "canonical_id": "game_nhl_2025_20260402_cgy_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Calgary Flames", "home_team_abbrev": "VGK", @@ -57747,8 +54539,7 @@ "canonical_id": "game_nba_2025_20260402_sas_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAC", @@ -57765,8 +54556,7 @@ "canonical_id": "game_nhl_2025_20260402_nsh_la", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Nashville Predators", "home_team_abbrev": "LA", @@ -57783,8 +54573,7 @@ "canonical_id": "game_mlb_2026_20260403_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:05p", + "game_datetime_utc": "2026-04-03T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -57801,8 +54590,7 @@ "canonical_id": "game_mlb_2026_20260403_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:10p", + "game_datetime_utc": "2026-04-03T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -57819,8 +54607,7 @@ "canonical_id": "game_mlb_2026_20260403_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:35p", + "game_datetime_utc": "2026-04-03T17:35:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -57837,8 +54624,7 @@ "canonical_id": "game_mlb_2026_20260403_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "2:10p", + "game_datetime_utc": "2026-04-03T18:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -57855,8 +54641,7 @@ "canonical_id": "game_mlb_2026_20260403_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "3:05p", + "game_datetime_utc": "2026-04-03T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -57873,8 +54658,7 @@ "canonical_id": "game_mlb_2026_20260403_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "4:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -57891,8 +54675,7 @@ "canonical_id": "game_mlb_2026_20260403_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "3:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -57909,8 +54692,7 @@ "canonical_id": "game_mlb_2026_20260403_phi_col", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "2:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -57927,8 +54709,7 @@ "canonical_id": "game_mlb_2026_20260403_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "4:12p", + "game_datetime_utc": "2026-04-03T20:12:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -57945,8 +54726,7 @@ "canonical_id": "game_nba_2025_20260403_min_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "4p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "PHI", @@ -57963,8 +54743,7 @@ "canonical_id": "game_nba_2025_20260403_ind_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Indiana Pacers", "home_team_abbrev": "CHA", @@ -57981,8 +54760,7 @@ "canonical_id": "game_nhl_2025_20260403_phi_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "New York Islanders", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYI", @@ -57999,8 +54777,7 @@ "canonical_id": "game_nba_2025_20260403_chi_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T23:30:00Z", "home_team": "New York Knicks", "away_team": "Chicago Bulls", "home_team_abbrev": "NYK", @@ -58017,8 +54794,7 @@ "canonical_id": "game_nba_2025_20260403_atl_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Atlanta Hawks", "home_team_abbrev": "BKN", @@ -58035,8 +54811,7 @@ "canonical_id": "game_mlb_2026_20260403_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-03T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -58053,8 +54828,7 @@ "canonical_id": "game_nba_2025_20260403_bos_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -58071,8 +54845,7 @@ "canonical_id": "game_nba_2025_20260403_uta_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Utah Jazz", "home_team_abbrev": "HOU", @@ -58089,8 +54862,7 @@ "canonical_id": "game_nba_2025_20260403_tor_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Toronto Raptors", "home_team_abbrev": "MEM", @@ -58107,8 +54879,7 @@ "canonical_id": "game_nwsl_2026_20260404_sdw_bos", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "8p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "BOS", @@ -58125,8 +54896,7 @@ "canonical_id": "game_nwsl_2026_20260404_ang_orl", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "8p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "ORL", @@ -58143,8 +54913,7 @@ "canonical_id": "game_nba_2025_20260403_orl_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Orlando Magic", "home_team_abbrev": "DAL", @@ -58161,8 +54930,7 @@ "canonical_id": "game_nwsl_2026_20260404_rgn_hou", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T00:30:00Z", "home_team": "Houston Houston Dash", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "HOU", @@ -58179,8 +54947,7 @@ "canonical_id": "game_nwsl_2026_20260404_chi_uta", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T01:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "UTA", @@ -58197,8 +54964,7 @@ "canonical_id": "game_mlb_2026_20260404_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:38p", + "game_datetime_utc": "2026-04-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -58215,8 +54981,7 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-04T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -58233,8 +54998,7 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -58251,8 +55015,7 @@ "canonical_id": "game_nba_2025_20260403_nop_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAC", @@ -58269,8 +55032,7 @@ "canonical_id": "game_nhl_2025_20260403_stl_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "St. Louis Blues", "home_team_abbrev": "ANA", @@ -58287,8 +55049,7 @@ "canonical_id": "game_mlb_2026_20260404_nym_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "7:15p", + "game_datetime_utc": "2026-04-04T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -58305,8 +55066,7 @@ "canonical_id": "game_nhl_2025_20260404_det_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "12:30p", + "game_datetime_utc": "2026-04-04T16:30:00Z", "home_team": "New York Rangers", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYR", @@ -58323,8 +55083,7 @@ "canonical_id": "game_mls_2026_20260404_col_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "TOR", @@ -58341,8 +55100,7 @@ "canonical_id": "game_nhl_2025_20260404_min_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Minnesota Wild", "home_team_abbrev": "OTT", @@ -58359,8 +55117,7 @@ "canonical_id": "game_mlb_2026_20260404_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:10p", + "game_datetime_utc": "2026-04-04T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -58377,8 +55134,7 @@ "canonical_id": "game_mlb_2026_20260404_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:10p", + "game_datetime_utc": "2026-04-04T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -58395,8 +55151,7 @@ "canonical_id": "game_nba_2025_20260404_sas_den", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Denver Nuggets", "away_team": "San Antonio Spurs", "home_team_abbrev": "DEN", @@ -58413,8 +55168,7 @@ "canonical_id": "game_nba_2025_20260404_was_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "3p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Miami Heat", "away_team": "Washington Wizards", "home_team_abbrev": "MIA", @@ -58431,8 +55185,7 @@ "canonical_id": "game_nhl_2025_20260404_col_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "2p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Colorado Avalanche", "home_team_abbrev": "DAL", @@ -58449,8 +55202,7 @@ "canonical_id": "game_nwsl_2026_20260404_njy_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "3p", + "game_datetime_utc": "2026-04-04T20:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "KCC", @@ -58467,8 +55219,7 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -58485,8 +55236,7 @@ "canonical_id": "game_mlb_2026_20260404_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -58503,8 +55253,7 @@ "canonical_id": "game_mlb_2026_20260404_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -58521,8 +55270,7 @@ "canonical_id": "game_mlb_2026_20260404_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "3:10p", + "game_datetime_utc": "2026-04-04T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -58539,8 +55287,7 @@ "canonical_id": "game_mlb_2026_20260404_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:10p", + "game_datetime_utc": "2026-04-04T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -58557,8 +55304,7 @@ "canonical_id": "game_mls_2026_20260404_skc_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "2:30p", + "game_datetime_utc": "2026-04-04T20:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SLC", @@ -58575,8 +55321,7 @@ "canonical_id": "game_mls_2026_20260404_mtl_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "4:30p", + "game_datetime_utc": "2026-04-04T20:30:00Z", "home_team": "New England New England Revolution", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NE", @@ -58593,8 +55338,7 @@ "canonical_id": "game_nhl_2025_20260404_bos_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "5p", + "game_datetime_utc": "2026-04-04T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Boston Bruins", "home_team_abbrev": "TB", @@ -58611,8 +55355,7 @@ "canonical_id": "game_nhl_2025_20260404_fla_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "5p", + "game_datetime_utc": "2026-04-04T21:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Florida Panthers", "home_team_abbrev": "PIT", @@ -58629,8 +55372,7 @@ "canonical_id": "game_nwsl_2026_20260404_por_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "6:30p", + "game_datetime_utc": "2026-04-04T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Portland Portland Thorns", "home_team_abbrev": "NCC", @@ -58647,8 +55389,7 @@ "canonical_id": "game_nba_2025_20260404_det_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Detroit Pistons", "home_team_abbrev": "PHI", @@ -58665,8 +55406,7 @@ "canonical_id": "game_nhl_2025_20260404_buf_was", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Buffalo Sabres", "home_team_abbrev": "WAS", @@ -58683,8 +55423,7 @@ "canonical_id": "game_nhl_2025_20260404_ari_van", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Utah Club", "home_team_abbrev": "VAN", @@ -58701,8 +55440,7 @@ "canonical_id": "game_nhl_2025_20260404_tor_la", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "LA", @@ -58719,8 +55457,7 @@ "canonical_id": "game_nhl_2025_20260404_mtl_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Montreal Canadiens", "home_team_abbrev": "NJ", @@ -58737,8 +55474,7 @@ "canonical_id": "game_nhl_2025_20260404_nyi_car", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Islanders", "home_team_abbrev": "CAR", @@ -58755,8 +55491,7 @@ "canonical_id": "game_nhl_2025_20260404_wpg_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Winnipeg Jets", "home_team_abbrev": "CBJ", @@ -58773,8 +55508,7 @@ "canonical_id": "game_mlb_2026_20260404_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:05p", + "game_datetime_utc": "2026-04-04T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -58791,8 +55525,7 @@ "canonical_id": "game_mlb_2026_20260404_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "7:05p", + "game_datetime_utc": "2026-04-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -58809,8 +55542,7 @@ "canonical_id": "game_mlb_2026_20260404_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:10p", + "game_datetime_utc": "2026-04-04T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -58827,8 +55559,7 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:15p", + "game_datetime_utc": "2026-04-04T23:15:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -58845,8 +55576,7 @@ "canonical_id": "game_mlb_2026_20260404_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "7:15p", + "game_datetime_utc": "2026-04-04T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -58863,8 +55593,7 @@ "canonical_id": "game_mls_2026_20260404_dal_dc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Dallas FC Dallas", "home_team_abbrev": "DC", @@ -58881,8 +55610,7 @@ "canonical_id": "game_mls_2026_20260404_aus_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Austin Austin FC", "home_team_abbrev": "MIA", @@ -58899,8 +55627,7 @@ "canonical_id": "game_mls_2026_20260404_clb_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "ATL", @@ -58917,8 +55644,7 @@ "canonical_id": "game_mls_2026_20260404_cin_ny", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "RB", @@ -58935,8 +55661,7 @@ "canonical_id": "game_mls_2026_20260404_stl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "New York New York City FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "NYC", @@ -58953,8 +55678,7 @@ "canonical_id": "game_mls_2026_20260404_phi_clt", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CLT", @@ -58971,8 +55695,7 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:10p", + "game_datetime_utc": "2026-04-05T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -58989,8 +55712,7 @@ "canonical_id": "game_mls_2026_20260405_nsh_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CHI", @@ -59007,8 +55729,7 @@ "canonical_id": "game_mls_2026_20260405_sea_hou", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "HOU", @@ -59025,8 +55746,7 @@ "canonical_id": "game_nwsl_2026_20260405_den_sea", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "5:45p", + "game_datetime_utc": "2026-04-05T00:45:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "SEA", @@ -59043,8 +55763,7 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:05p", + "game_datetime_utc": "2026-04-05T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -59061,8 +55780,7 @@ "canonical_id": "game_mls_2026_20260405_orl_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "6:30p", + "game_datetime_utc": "2026-04-05T01:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "LAFC", @@ -59079,8 +55797,7 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:38p", + "game_datetime_utc": "2026-04-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -59097,8 +55814,7 @@ "canonical_id": "game_nhl_2025_20260404_cgy_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Calgary Flames", "home_team_abbrev": "ANA", @@ -59115,8 +55831,7 @@ "canonical_id": "game_nhl_2025_20260404_chi_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SEA", @@ -59133,8 +55848,7 @@ "canonical_id": "game_nhl_2025_20260404_vgk_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "8p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "EDM", @@ -59151,8 +55865,7 @@ "canonical_id": "game_nhl_2025_20260404_nsh_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Nashville Predators", "home_team_abbrev": "SJ", @@ -59169,8 +55882,7 @@ "canonical_id": "game_mls_2026_20260405_min_lag", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "LAG", @@ -59187,8 +55899,7 @@ "canonical_id": "game_mls_2026_20260405_sd_sj", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SJ", @@ -59205,8 +55916,7 @@ "canonical_id": "game_mls_2026_20260405_por_van", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Portland Portland Timbers", "home_team_abbrev": "VAN", @@ -59223,8 +55933,7 @@ "canonical_id": "game_nhl_2025_20260405_min_det", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "1p", + "game_datetime_utc": "2026-04-05T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Minnesota Wild", "home_team_abbrev": "DET", @@ -59241,8 +55950,7 @@ "canonical_id": "game_mlb_2026_20260405_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -59259,8 +55967,7 @@ "canonical_id": "game_mlb_2026_20260405_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -59277,8 +55984,7 @@ "canonical_id": "game_mlb_2026_20260405_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -59295,8 +56001,7 @@ "canonical_id": "game_mlb_2026_20260405_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -59313,8 +56018,7 @@ "canonical_id": "game_mlb_2026_20260405_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:40p", + "game_datetime_utc": "2026-04-05T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -59331,8 +56035,7 @@ "canonical_id": "game_mlb_2026_20260405_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -59349,8 +56052,7 @@ "canonical_id": "game_mlb_2026_20260405_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -59367,8 +56069,7 @@ "canonical_id": "game_mlb_2026_20260405_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -59385,8 +56086,7 @@ "canonical_id": "game_mlb_2026_20260405_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -59403,8 +56103,7 @@ "canonical_id": "game_nhl_2025_20260405_fla_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "3p", + "game_datetime_utc": "2026-04-05T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Florida Panthers", "home_team_abbrev": "PIT", @@ -59421,8 +56120,7 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -59439,8 +56137,7 @@ "canonical_id": "game_nba_2025_20260405_was_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Washington Wizards", "home_team_abbrev": "BKN", @@ -59457,8 +56154,7 @@ "canonical_id": "game_nba_2025_20260405_mem_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "2:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIL", @@ -59475,8 +56171,7 @@ "canonical_id": "game_nba_2025_20260405_tor_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Boston Celtics", "away_team": "Toronto Raptors", "home_team_abbrev": "BOS", @@ -59493,8 +56188,7 @@ "canonical_id": "game_nba_2025_20260405_phx_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "2:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Chicago Bulls", "away_team": "Phoenix Suns", "home_team_abbrev": "CHI", @@ -59511,8 +56205,7 @@ "canonical_id": "game_nhl_2025_20260405_bos_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Boston Bruins", "home_team_abbrev": "PHI", @@ -59529,8 +56222,7 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:05p", + "game_datetime_utc": "2026-04-05T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -59547,8 +56239,7 @@ "canonical_id": "game_mlb_2026_20260405_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:05p", + "game_datetime_utc": "2026-04-05T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -59565,8 +56256,7 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:07p", + "game_datetime_utc": "2026-04-05T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -59583,8 +56273,7 @@ "canonical_id": "game_mlb_2026_20260405_atl_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -59601,8 +56290,7 @@ "canonical_id": "game_nhl_2025_20260405_car_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "5p", + "game_datetime_utc": "2026-04-05T21:00:00Z", "home_team": "Ottawa Senators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "OTT", @@ -59619,8 +56307,7 @@ "canonical_id": "game_nwsl_2026_20260405_wsh_bay", "sport": "NWSL", "season": "2026", - "date": "2026-04-05", - "time": "2p", + "game_datetime_utc": "2026-04-05T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "BAY", @@ -59637,8 +56324,7 @@ "canonical_id": "game_nba_2025_20260405_ind_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "5p", + "game_datetime_utc": "2026-04-05T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Indiana Pacers", "home_team_abbrev": "CLE", @@ -59655,8 +56341,7 @@ "canonical_id": "game_nba_2025_20260405_orl_nop", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Orlando Magic", "home_team_abbrev": "NOP", @@ -59673,8 +56358,7 @@ "canonical_id": "game_nba_2025_20260405_cho_min", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIN", @@ -59691,8 +56375,7 @@ "canonical_id": "game_nba_2025_20260405_uta_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Utah Jazz", "home_team_abbrev": "OKC", @@ -59709,8 +56392,7 @@ "canonical_id": "game_nhl_2025_20260405_was_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "New York Rangers", "away_team": "Washington Capitals", "home_team_abbrev": "NYR", @@ -59727,8 +56409,7 @@ "canonical_id": "game_nhl_2025_20260405_njd_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New Jersey Devils", "home_team_abbrev": "MTL", @@ -59745,8 +56426,7 @@ "canonical_id": "game_mlb_2026_20260405_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "7:20p", + "game_datetime_utc": "2026-04-05T23:20:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -59763,8 +56443,7 @@ "canonical_id": "game_nba_2025_20260405_lal_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6:30p", + "game_datetime_utc": "2026-04-05T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DAL", @@ -59781,8 +56460,7 @@ "canonical_id": "game_nba_2025_20260405_lac_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-06T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAC", @@ -59799,8 +56477,7 @@ "canonical_id": "game_nhl_2025_20260405_stl_col", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7:30p", + "game_datetime_utc": "2026-04-06T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "St. Louis Blues", "home_team_abbrev": "COL", @@ -59817,8 +56494,7 @@ "canonical_id": "game_nba_2025_20260405_hou_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-06T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Houston Rockets", "home_team_abbrev": "GSW", @@ -59835,8 +56511,7 @@ "canonical_id": "game_mlb_2026_20260406_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "4:10p", + "game_datetime_utc": "2026-04-06T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -59853,8 +56528,7 @@ "canonical_id": "game_mlb_2026_20260406_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:10p", + "game_datetime_utc": "2026-04-06T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -59871,8 +56545,7 @@ "canonical_id": "game_mlb_2026_20260406_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -59889,8 +56562,7 @@ "canonical_id": "game_mlb_2026_20260406_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -59907,8 +56579,7 @@ "canonical_id": "game_mlb_2026_20260406_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-06T22:45:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -59925,8 +56596,7 @@ "canonical_id": "game_mlb_2026_20260406_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-06T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -59943,8 +56613,7 @@ "canonical_id": "game_nba_2025_20260406_det_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Detroit Pistons", "home_team_abbrev": "ORL", @@ -59961,8 +56630,7 @@ "canonical_id": "game_nba_2025_20260406_nyk_atl", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "New York Knicks", "home_team_abbrev": "ATL", @@ -59979,8 +56647,7 @@ "canonical_id": "game_nhl_2025_20260406_tb_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BUF", @@ -59997,8 +56664,7 @@ "canonical_id": "game_mlb_2026_20260406_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "7:07p", + "game_datetime_utc": "2026-04-06T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60015,8 +56681,7 @@ "canonical_id": "game_nhl_2025_20260406_sea_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "6:30p", + "game_datetime_utc": "2026-04-06T23:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Seattle Kraken", "home_team_abbrev": "WPG", @@ -60033,8 +56698,7 @@ "canonical_id": "game_mlb_2026_20260406_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -60051,8 +56715,7 @@ "canonical_id": "game_mlb_2026_20260406_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60069,8 +56732,7 @@ "canonical_id": "game_nba_2025_20260406_phi_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Philadelphia 76ers", "home_team_abbrev": "SAS", @@ -60087,8 +56749,7 @@ "canonical_id": "game_nba_2025_20260406_cle_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MEM", @@ -60105,8 +56766,7 @@ "canonical_id": "game_mlb_2026_20260407_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "7:05p", + "game_datetime_utc": "2026-04-07T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60123,8 +56783,7 @@ "canonical_id": "game_mlb_2026_20260407_hou_col", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -60141,8 +56800,7 @@ "canonical_id": "game_nba_2025_20260406_por_den", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Portland Blazers", "home_team_abbrev": "DEN", @@ -60159,8 +56817,7 @@ "canonical_id": "game_mlb_2026_20260407_atl_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:38p", + "game_datetime_utc": "2026-04-07T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -60177,8 +56834,7 @@ "canonical_id": "game_mlb_2026_20260407_phi_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -60195,8 +56851,7 @@ "canonical_id": "game_nhl_2025_20260406_chi_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SJ", @@ -60213,8 +56868,7 @@ "canonical_id": "game_nhl_2025_20260406_nsh_la", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Nashville Predators", "home_team_abbrev": "LA", @@ -60231,8 +56885,7 @@ "canonical_id": "game_mlb_2026_20260407_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:10p", + "game_datetime_utc": "2026-04-07T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -60249,8 +56902,7 @@ "canonical_id": "game_mlb_2026_20260407_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -60267,8 +56919,7 @@ "canonical_id": "game_mlb_2026_20260407_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -60285,8 +56936,7 @@ "canonical_id": "game_mlb_2026_20260407_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -60303,8 +56953,7 @@ "canonical_id": "game_mlb_2026_20260407_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -60321,8 +56970,7 @@ "canonical_id": "game_mlb_2026_20260407_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -60339,8 +56987,7 @@ "canonical_id": "game_nba_2025_20260407_chi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Chicago Bulls", "home_team_abbrev": "WAS", @@ -60357,8 +57004,7 @@ "canonical_id": "game_nhl_2025_20260407_cbj_det", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DET", @@ -60375,8 +57021,7 @@ "canonical_id": "game_nhl_2025_20260407_tb_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "OTT", @@ -60393,8 +57038,7 @@ "canonical_id": "game_nhl_2025_20260407_phi_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NJ", @@ -60411,8 +57055,7 @@ "canonical_id": "game_nhl_2025_20260407_fla_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Florida Panthers", "home_team_abbrev": "MTL", @@ -60429,8 +57072,7 @@ "canonical_id": "game_nhl_2025_20260407_bos_car", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Boston Bruins", "home_team_abbrev": "CAR", @@ -60447,8 +57089,7 @@ "canonical_id": "game_mlb_2026_20260407_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:05p", + "game_datetime_utc": "2026-04-07T23:05:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -60465,8 +57106,7 @@ "canonical_id": "game_mlb_2026_20260407_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:07p", + "game_datetime_utc": "2026-04-07T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60483,8 +57123,7 @@ "canonical_id": "game_mlb_2026_20260407_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:10p", + "game_datetime_utc": "2026-04-07T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -60501,8 +57140,7 @@ "canonical_id": "game_nba_2025_20260407_cho_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Charlotte Hornets", "home_team_abbrev": "BOS", @@ -60519,8 +57157,7 @@ "canonical_id": "game_nba_2025_20260407_mil_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BKN", @@ -60537,8 +57174,7 @@ "canonical_id": "game_nba_2025_20260407_mia_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Toronto Raptors", "away_team": "Miami Heat", "home_team_abbrev": "TOR", @@ -60555,8 +57191,7 @@ "canonical_id": "game_mlb_2026_20260407_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -60573,8 +57208,7 @@ "canonical_id": "game_mlb_2026_20260407_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60591,8 +57225,7 @@ "canonical_id": "game_nba_2025_20260407_uta_nop", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Utah Jazz", "home_team_abbrev": "NOP", @@ -60609,8 +57242,7 @@ "canonical_id": "game_nba_2025_20260407_min_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "8p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "IND", @@ -60627,8 +57259,7 @@ "canonical_id": "game_nhl_2025_20260407_col_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Colorado Avalanche", "home_team_abbrev": "STL", @@ -60645,8 +57276,7 @@ "canonical_id": "game_nhl_2025_20260407_sea_min", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Seattle Kraken", "home_team_abbrev": "MIN", @@ -60663,8 +57293,7 @@ "canonical_id": "game_nhl_2025_20260407_cgy_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Calgary Flames", "home_team_abbrev": "DAL", @@ -60681,8 +57310,7 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:05p", + "game_datetime_utc": "2026-04-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60699,8 +57327,7 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -60717,8 +57344,7 @@ "canonical_id": "game_nhl_2025_20260407_edm_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T01:30:00Z", "home_team": "Utah Club", "away_team": "Edmonton Oilers", "home_team_abbrev": "ARI", @@ -60735,8 +57361,7 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:38p", + "game_datetime_utc": "2026-04-08T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -60753,8 +57378,7 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-08T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -60771,8 +57395,7 @@ "canonical_id": "game_nba_2025_20260407_sac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Sacramento Kings", "home_team_abbrev": "GSW", @@ -60789,8 +57412,7 @@ "canonical_id": "game_nhl_2025_20260407_nsh_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Nashville Predators", "home_team_abbrev": "ANA", @@ -60807,8 +57429,7 @@ "canonical_id": "game_nhl_2025_20260407_vgk_van", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "VAN", @@ -60825,8 +57446,7 @@ "canonical_id": "game_nba_2025_20260407_okc_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAL", @@ -60843,8 +57463,7 @@ "canonical_id": "game_nba_2025_20260407_dal_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAC", @@ -60861,8 +57480,7 @@ "canonical_id": "game_nba_2025_20260407_hou_phx", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "11p", + "game_datetime_utc": "2026-04-08T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Houston Rockets", "home_team_abbrev": "PHX", @@ -60879,8 +57497,7 @@ "canonical_id": "game_mlb_2026_20260408_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "12:35p", + "game_datetime_utc": "2026-04-08T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -60897,8 +57514,7 @@ "canonical_id": "game_mlb_2026_20260408_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -60915,8 +57531,7 @@ "canonical_id": "game_mlb_2026_20260408_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:35p", + "game_datetime_utc": "2026-04-08T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -60933,8 +57548,7 @@ "canonical_id": "game_mlb_2026_20260408_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60951,8 +57565,7 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:35p", + "game_datetime_utc": "2026-04-08T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60969,8 +57582,7 @@ "canonical_id": "game_mlb_2026_20260408_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "3:07p", + "game_datetime_utc": "2026-04-08T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60987,8 +57599,7 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -61005,8 +57616,7 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "12:45p", + "game_datetime_utc": "2026-04-08T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -61023,8 +57633,7 @@ "canonical_id": "game_mlb_2026_20260408_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "4:05p", + "game_datetime_utc": "2026-04-08T20:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -61041,8 +57650,7 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:07p", + "game_datetime_utc": "2026-04-08T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -61059,8 +57667,7 @@ "canonical_id": "game_mlb_2026_20260408_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -61077,8 +57684,7 @@ "canonical_id": "game_mlb_2026_20260408_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -61095,8 +57701,7 @@ "canonical_id": "game_nba_2025_20260408_atl_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "6p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Atlanta Hawks", "home_team_abbrev": "CLE", @@ -61113,8 +57718,7 @@ "canonical_id": "game_nba_2025_20260408_min_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "ORL", @@ -61131,8 +57735,7 @@ "canonical_id": "game_nhl_2025_20260408_buf_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "New York Rangers", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYR", @@ -61149,8 +57752,7 @@ "canonical_id": "game_mlb_2026_20260408_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "7:05p", + "game_datetime_utc": "2026-04-08T23:05:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -61167,8 +57769,7 @@ "canonical_id": "game_mlb_2026_20260408_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "7:10p", + "game_datetime_utc": "2026-04-08T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -61185,8 +57786,7 @@ "canonical_id": "game_nba_2025_20260408_mil_det", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DET", @@ -61203,8 +57803,7 @@ "canonical_id": "game_nhl_2025_20260408_was_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Washington Capitals", "home_team_abbrev": "TOR", @@ -61221,8 +57820,7 @@ "canonical_id": "game_mlb_2026_20260408_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -61239,8 +57837,7 @@ "canonical_id": "game_nba_2025_20260408_por_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Portland Blazers", "home_team_abbrev": "SAS", @@ -61257,8 +57854,7 @@ "canonical_id": "game_nba_2025_20260408_mem_den", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DEN", @@ -61275,8 +57871,7 @@ "canonical_id": "game_nba_2025_20260408_okc_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAC", @@ -61293,8 +57888,7 @@ "canonical_id": "game_nba_2025_20260408_dal_phx", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "10p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHX", @@ -61311,8 +57905,7 @@ "canonical_id": "game_nhl_2025_20260408_edm_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Edmonton Oilers", "home_team_abbrev": "SJ", @@ -61329,8 +57922,7 @@ "canonical_id": "game_mlb_2026_20260409_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "12:10p", + "game_datetime_utc": "2026-04-09T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -61347,8 +57939,7 @@ "canonical_id": "game_mlb_2026_20260409_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "1:35p", + "game_datetime_utc": "2026-04-09T17:35:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -61365,8 +57956,7 @@ "canonical_id": "game_mlb_2026_20260409_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "12:40p", + "game_datetime_utc": "2026-04-09T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -61383,8 +57973,7 @@ "canonical_id": "game_nhl_2025_20260409_tor_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "6:45p", + "game_datetime_utc": "2026-04-09T22:45:00Z", "home_team": "New York Islanders", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYI", @@ -61401,8 +57990,7 @@ "canonical_id": "game_nba_2025_20260409_mia_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Miami Heat", "home_team_abbrev": "TOR", @@ -61419,8 +58007,7 @@ "canonical_id": "game_nba_2025_20260409_chi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Chicago Bulls", "home_team_abbrev": "WAS", @@ -61437,8 +58024,7 @@ "canonical_id": "game_nhl_2025_20260409_fla_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Florida Panthers", "home_team_abbrev": "OTT", @@ -61455,8 +58041,7 @@ "canonical_id": "game_nhl_2025_20260409_pit_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NJ", @@ -61473,8 +58058,7 @@ "canonical_id": "game_nhl_2025_20260409_tb_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MTL", @@ -61491,8 +58075,7 @@ "canonical_id": "game_nhl_2025_20260409_phi_det", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DET", @@ -61509,8 +58092,7 @@ "canonical_id": "game_nhl_2025_20260409_cbj_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BUF", @@ -61527,8 +58109,7 @@ "canonical_id": "game_mlb_2026_20260409_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "7:10p", + "game_datetime_utc": "2026-04-09T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -61545,8 +58126,7 @@ "canonical_id": "game_nba_2025_20260409_ind_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-09T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Indiana Pacers", "home_team_abbrev": "BKN", @@ -61563,8 +58143,7 @@ "canonical_id": "game_nba_2025_20260409_bos_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-09T23:30:00Z", "home_team": "New York Knicks", "away_team": "Boston Celtics", "home_team_abbrev": "NYK", @@ -61581,8 +58160,7 @@ "canonical_id": "game_mlb_2026_20260409_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "6:40p", + "game_datetime_utc": "2026-04-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -61599,8 +58177,7 @@ "canonical_id": "game_nba_2025_20260409_phi_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "HOU", @@ -61617,8 +58194,7 @@ "canonical_id": "game_nhl_2025_20260409_wpg_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Winnipeg Jets", "home_team_abbrev": "STL", @@ -61635,8 +58211,7 @@ "canonical_id": "game_nhl_2025_20260409_car_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CHI", @@ -61653,8 +58228,7 @@ "canonical_id": "game_nhl_2025_20260409_nsh_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Utah Club", "away_team": "Nashville Predators", "home_team_abbrev": "ARI", @@ -61671,8 +58245,7 @@ "canonical_id": "game_nhl_2025_20260409_cgy_col", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Calgary Flames", "home_team_abbrev": "COL", @@ -61689,8 +58262,7 @@ "canonical_id": "game_nhl_2025_20260409_min_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "8p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Minnesota Wild", "home_team_abbrev": "DAL", @@ -61707,8 +58279,7 @@ "canonical_id": "game_mlb_2026_20260410_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -61725,8 +58296,7 @@ "canonical_id": "game_nba_2025_20260409_lal_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "GSW", @@ -61743,8 +58313,7 @@ "canonical_id": "game_nhl_2025_20260409_vgk_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SEA", @@ -61761,8 +58330,7 @@ "canonical_id": "game_nhl_2025_20260409_sj_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "San Jose Sharks", "home_team_abbrev": "ANA", @@ -61779,8 +58347,7 @@ "canonical_id": "game_nhl_2025_20260409_van_la", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Vancouver Canucks", "home_team_abbrev": "LA", @@ -61797,8 +58364,7 @@ "canonical_id": "game_mlb_2026_20260410_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "1:20p", + "game_datetime_utc": "2026-04-10T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -61815,8 +58381,7 @@ "canonical_id": "game_mlb_2026_20260410_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -61833,8 +58398,7 @@ "canonical_id": "game_mlb_2026_20260410_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -61851,8 +58415,7 @@ "canonical_id": "game_mlb_2026_20260410_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -61869,8 +58432,7 @@ "canonical_id": "game_nba_2025_20260410_cle_atl", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ATL", @@ -61887,8 +58449,7 @@ "canonical_id": "game_nba_2025_20260410_det_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Detroit Pistons", "home_team_abbrev": "CHA", @@ -61905,8 +58466,7 @@ "canonical_id": "game_nba_2025_20260410_mia_was", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Miami Heat", "home_team_abbrev": "WAS", @@ -61923,8 +58483,7 @@ "canonical_id": "game_mlb_2026_20260410_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:05p", + "game_datetime_utc": "2026-04-10T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -61941,8 +58500,7 @@ "canonical_id": "game_mlb_2026_20260410_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:07p", + "game_datetime_utc": "2026-04-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -61959,8 +58517,7 @@ "canonical_id": "game_mlb_2026_20260410_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-10T23:10:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -61977,8 +58534,7 @@ "canonical_id": "game_mlb_2026_20260410_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-10T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -61995,8 +58551,7 @@ "canonical_id": "game_mlb_2026_20260410_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:15p", + "game_datetime_utc": "2026-04-10T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -62013,8 +58568,7 @@ "canonical_id": "game_nba_2025_20260410_nop_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "Boston Celtics", "away_team": "New Orleans Pelicans", "home_team_abbrev": "BOS", @@ -62031,8 +58585,7 @@ "canonical_id": "game_nba_2025_20260410_tor_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "New York Knicks", "away_team": "Toronto Raptors", "home_team_abbrev": "NYK", @@ -62049,8 +58602,7 @@ "canonical_id": "game_nba_2025_20260410_phi_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "IND", @@ -62067,8 +58619,7 @@ "canonical_id": "game_mlb_2026_20260410_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -62085,8 +58636,7 @@ "canonical_id": "game_mlb_2026_20260410_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -62103,8 +58653,7 @@ "canonical_id": "game_nba_2025_20260410_orl_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Orlando Magic", "home_team_abbrev": "CHI", @@ -62121,8 +58670,7 @@ "canonical_id": "game_nba_2025_20260410_brk_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIL", @@ -62139,8 +58687,7 @@ "canonical_id": "game_nba_2025_20260410_dal_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAS", @@ -62157,8 +58704,7 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -62175,8 +58721,7 @@ "canonical_id": "game_nba_2025_20260410_okc_den", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DEN", @@ -62193,8 +58738,7 @@ "canonical_id": "game_nba_2025_20260410_min_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "8:30p", + "game_datetime_utc": "2026-04-11T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "HOU", @@ -62211,8 +58755,7 @@ "canonical_id": "game_nba_2025_20260410_mem_uta", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T01:30:00Z", "home_team": "Utah Jazz", "away_team": "Memphis Grizzlies", "home_team_abbrev": "UTA", @@ -62229,8 +58772,7 @@ "canonical_id": "game_mlb_2026_20260411_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-11T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -62247,8 +58789,7 @@ "canonical_id": "game_mlb_2026_20260411_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -62265,8 +58806,7 @@ "canonical_id": "game_nba_2025_20260410_gsw_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Golden State Warriors", "home_team_abbrev": "SAC", @@ -62283,8 +58823,7 @@ "canonical_id": "game_nba_2025_20260410_lac_por", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "POR", @@ -62301,8 +58840,7 @@ "canonical_id": "game_mlb_2026_20260411_tex_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -62319,8 +58857,7 @@ "canonical_id": "game_nba_2025_20260410_phx_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAL", @@ -62337,8 +58874,7 @@ "canonical_id": "game_nhl_2025_20260411_tb_bos", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "12:30p", + "game_datetime_utc": "2026-04-11T16:30:00Z", "home_team": "Boston Bruins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BOS", @@ -62355,8 +58891,7 @@ "canonical_id": "game_mls_2026_20260411_cin_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "TOR", @@ -62373,8 +58908,7 @@ "canonical_id": "game_nhl_2025_20260411_ott_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T17:00:00Z", "home_team": "New York Islanders", "away_team": "Ottawa Senators", "home_team_abbrev": "NYI", @@ -62391,8 +58925,7 @@ "canonical_id": "game_mlb_2026_20260411_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:05p", + "game_datetime_utc": "2026-04-11T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -62409,8 +58942,7 @@ "canonical_id": "game_mlb_2026_20260411_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:10p", + "game_datetime_utc": "2026-04-11T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -62427,8 +58959,7 @@ "canonical_id": "game_mlb_2026_20260411_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:20p", + "game_datetime_utc": "2026-04-11T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -62445,8 +58976,7 @@ "canonical_id": "game_mls_2026_20260411_lag_aus", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1:30p", + "game_datetime_utc": "2026-04-11T18:30:00Z", "home_team": "Austin Austin FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "AUS", @@ -62463,8 +58993,7 @@ "canonical_id": "game_nhl_2025_20260411_was_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "3p", + "game_datetime_utc": "2026-04-11T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Washington Capitals", "home_team_abbrev": "PIT", @@ -62481,8 +59010,7 @@ "canonical_id": "game_mlb_2026_20260411_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "3:07p", + "game_datetime_utc": "2026-04-11T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -62499,8 +59027,7 @@ "canonical_id": "game_nhl_2025_20260411_edm_la", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T20:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Edmonton Oilers", "home_team_abbrev": "LA", @@ -62517,8 +59044,7 @@ "canonical_id": "game_mlb_2026_20260411_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "3:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -62535,8 +59061,7 @@ "canonical_id": "game_mlb_2026_20260411_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "4:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -62553,8 +59078,7 @@ "canonical_id": "game_mlb_2026_20260411_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "4:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -62571,8 +59095,7 @@ "canonical_id": "game_mls_2026_20260411_lafc_por", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1:30p", + "game_datetime_utc": "2026-04-11T20:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "POR", @@ -62589,8 +59112,7 @@ "canonical_id": "game_nhl_2025_20260411_nyr_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Dallas Stars", "away_team": "New York Rangers", "home_team_abbrev": "DAL", @@ -62607,8 +59129,7 @@ "canonical_id": "game_nhl_2025_20260411_car_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "3p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Utah Club", "away_team": "Carolina Hurricanes", "home_team_abbrev": "ARI", @@ -62625,8 +59146,7 @@ "canonical_id": "game_nhl_2025_20260411_min_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Nashville Predators", "away_team": "Minnesota Wild", "home_team_abbrev": "NSH", @@ -62643,8 +59163,7 @@ "canonical_id": "game_nhl_2025_20260411_njd_det", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "5p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New Jersey Devils", "home_team_abbrev": "DET", @@ -62661,8 +59180,7 @@ "canonical_id": "game_nhl_2025_20260411_stl_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "St. Louis Blues", "home_team_abbrev": "CHI", @@ -62679,8 +59197,7 @@ "canonical_id": "game_mlb_2026_20260411_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-11T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -62697,8 +59214,7 @@ "canonical_id": "game_nhl_2025_20260411_cgy_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Seattle Kraken", "away_team": "Calgary Flames", "home_team_abbrev": "SEA", @@ -62715,8 +59231,7 @@ "canonical_id": "game_nhl_2025_20260411_cbj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MTL", @@ -62733,8 +59248,7 @@ "canonical_id": "game_nhl_2025_20260411_fla_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Florida Panthers", "home_team_abbrev": "TOR", @@ -62751,8 +59265,7 @@ "canonical_id": "game_nhl_2025_20260411_phi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "6p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WPG", @@ -62769,8 +59282,7 @@ "canonical_id": "game_mlb_2026_20260411_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-11T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -62787,8 +59299,7 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -62805,8 +59316,7 @@ "canonical_id": "game_mlb_2026_20260411_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -62823,8 +59333,7 @@ "canonical_id": "game_mlb_2026_20260411_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -62841,8 +59350,7 @@ "canonical_id": "game_mls_2026_20260411_dc_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Washington D.C. United", "home_team_abbrev": "NE", @@ -62859,8 +59367,7 @@ "canonical_id": "game_mls_2026_20260411_ny_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New York New York Red Bulls", "home_team_abbrev": "MIA", @@ -62877,8 +59384,7 @@ "canonical_id": "game_mls_2026_20260411_nsh_clt", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CLT", @@ -62895,8 +59401,7 @@ "canonical_id": "game_mls_2026_20260411_nyc_van", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "4:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "New York New York City FC", "home_team_abbrev": "VAN", @@ -62913,8 +59418,7 @@ "canonical_id": "game_nhl_2025_20260411_vgk_col", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "6p", + "game_datetime_utc": "2026-04-12T00:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Vegas Golden Knights", "home_team_abbrev": "COL", @@ -62931,8 +59435,7 @@ "canonical_id": "game_mls_2026_20260412_atl_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CHI", @@ -62949,8 +59452,7 @@ "canonical_id": "game_mls_2026_20260412_stl_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "DAL", @@ -62967,8 +59469,7 @@ "canonical_id": "game_mls_2026_20260412_sj_skc", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SKC", @@ -62985,8 +59486,7 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "5:40p", + "game_datetime_utc": "2026-04-12T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -63003,8 +59503,7 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-12T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -63021,8 +59520,7 @@ "canonical_id": "game_mls_2026_20260412_hou_col", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "COL", @@ -63039,8 +59537,7 @@ "canonical_id": "game_mlb_2026_20260412_hou_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:40p", + "game_datetime_utc": "2026-04-12T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63057,8 +59554,7 @@ "canonical_id": "game_nhl_2025_20260411_van_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-12T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vancouver Canucks", "home_team_abbrev": "SJ", @@ -63075,8 +59571,7 @@ "canonical_id": "game_mls_2026_20260412_min_sd", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SD", @@ -63093,8 +59588,7 @@ "canonical_id": "game_mlb_2026_20260412_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:35p", + "game_datetime_utc": "2026-04-12T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -63111,8 +59605,7 @@ "canonical_id": "game_mlb_2026_20260412_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:35p", + "game_datetime_utc": "2026-04-12T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -63129,8 +59622,7 @@ "canonical_id": "game_mlb_2026_20260412_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:37p", + "game_datetime_utc": "2026-04-12T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -63147,8 +59639,7 @@ "canonical_id": "game_mlb_2026_20260412_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -63165,8 +59656,7 @@ "canonical_id": "game_mlb_2026_20260412_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -63183,8 +59673,7 @@ "canonical_id": "game_mlb_2026_20260412_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -63201,8 +59690,7 @@ "canonical_id": "game_mlb_2026_20260412_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -63219,8 +59707,7 @@ "canonical_id": "game_mlb_2026_20260412_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -63237,8 +59724,7 @@ "canonical_id": "game_mlb_2026_20260412_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -63255,8 +59741,7 @@ "canonical_id": "game_mlb_2026_20260412_bos_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:15p", + "game_datetime_utc": "2026-04-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -63273,8 +59758,7 @@ "canonical_id": "game_mlb_2026_20260412_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:20p", + "game_datetime_utc": "2026-04-12T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -63291,8 +59775,7 @@ "canonical_id": "game_mls_2026_20260412_phi_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "2:30p", + "game_datetime_utc": "2026-04-12T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "MTL", @@ -63309,8 +59792,7 @@ "canonical_id": "game_nhl_2025_20260412_pit_was", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "3p", + "game_datetime_utc": "2026-04-12T19:00:00Z", "home_team": "Washington Capitals", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "WAS", @@ -63327,8 +59809,7 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -63345,8 +59826,7 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -63363,8 +59843,7 @@ "canonical_id": "game_mlb_2026_20260412_hou_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63381,8 +59860,7 @@ "canonical_id": "game_nba_2025_20260412_orl_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Orlando Magic", "home_team_abbrev": "BOS", @@ -63399,8 +59877,7 @@ "canonical_id": "game_nba_2025_20260412_was_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Washington Wizards", "home_team_abbrev": "CLE", @@ -63417,8 +59894,7 @@ "canonical_id": "game_nba_2025_20260412_det_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Detroit Pistons", "home_team_abbrev": "IND", @@ -63435,8 +59911,7 @@ "canonical_id": "game_nba_2025_20260412_atl_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Miami Heat", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIA", @@ -63453,8 +59928,7 @@ "canonical_id": "game_nba_2025_20260412_cho_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "New York Knicks", "away_team": "Charlotte Hornets", "home_team_abbrev": "NYK", @@ -63471,8 +59945,7 @@ "canonical_id": "game_nba_2025_20260412_mil_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "3p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHI", @@ -63489,8 +59962,7 @@ "canonical_id": "game_nba_2025_20260412_brk_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Brooklyn Nets", "home_team_abbrev": "TOR", @@ -63507,8 +59979,7 @@ "canonical_id": "game_nhl_2025_20260412_bos_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Boston Bruins", "home_team_abbrev": "CBJ", @@ -63525,8 +59996,7 @@ "canonical_id": "game_nhl_2025_20260412_mtl_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "New York Islanders", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYI", @@ -63543,8 +60013,7 @@ "canonical_id": "game_mls_2026_20260412_orl_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-12T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Orlando Orlando City", "home_team_abbrev": "CLB", @@ -63561,8 +60030,7 @@ "canonical_id": "game_nhl_2025_20260412_ott_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-12T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Ottawa Senators", "home_team_abbrev": "NJ", @@ -63579,8 +60047,7 @@ "canonical_id": "game_mlb_2026_20260412_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "7:20p", + "game_datetime_utc": "2026-04-12T23:20:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -63597,8 +60064,7 @@ "canonical_id": "game_nhl_2025_20260412_van_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "5p", + "game_datetime_utc": "2026-04-13T00:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vancouver Canucks", "home_team_abbrev": "ANA", @@ -63615,8 +60081,7 @@ "canonical_id": "game_nba_2025_20260412_nop_min", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIN", @@ -63633,8 +60098,7 @@ "canonical_id": "game_nba_2025_20260412_phx_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -63651,8 +60115,7 @@ "canonical_id": "game_nba_2025_20260412_uta_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Utah Jazz", "home_team_abbrev": "LAL", @@ -63669,8 +60132,7 @@ "canonical_id": "game_nba_2025_20260412_gsw_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAC", @@ -63687,8 +60149,7 @@ "canonical_id": "game_nba_2025_20260412_mem_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "HOU", @@ -63705,8 +60166,7 @@ "canonical_id": "game_nba_2025_20260412_chi_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Chicago Bulls", "home_team_abbrev": "DAL", @@ -63723,8 +60183,7 @@ "canonical_id": "game_nba_2025_20260412_sac_por", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Portland Blazers", "away_team": "Sacramento Kings", "home_team_abbrev": "POR", @@ -63741,8 +60200,7 @@ "canonical_id": "game_nba_2025_20260412_den_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Denver Nuggets", "home_team_abbrev": "SAS", @@ -63759,8 +60217,7 @@ "canonical_id": "game_mls_2026_20260413_slc_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-13T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SEA", @@ -63777,8 +60234,7 @@ "canonical_id": "game_nhl_2025_20260412_ari_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-13T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Utah Club", "home_team_abbrev": "CGY", @@ -63795,8 +60251,7 @@ "canonical_id": "game_mlb_2026_20260413_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "1:10p", + "game_datetime_utc": "2026-04-13T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63813,8 +60268,7 @@ "canonical_id": "game_mlb_2026_20260413_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:35p", + "game_datetime_utc": "2026-04-13T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -63831,8 +60285,7 @@ "canonical_id": "game_mlb_2026_20260413_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -63849,8 +60302,7 @@ "canonical_id": "game_mlb_2026_20260413_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -63867,8 +60319,7 @@ "canonical_id": "game_nhl_2025_20260413_car_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PHI", @@ -63885,8 +60336,7 @@ "canonical_id": "game_nhl_2025_20260413_det_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Detroit Red Wings", "home_team_abbrev": "TB", @@ -63903,8 +60353,7 @@ "canonical_id": "game_nhl_2025_20260413_nyr_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Rangers", "home_team_abbrev": "FLA", @@ -63921,8 +60370,7 @@ "canonical_id": "game_mlb_2026_20260413_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:05p", + "game_datetime_utc": "2026-04-13T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -63939,8 +60387,7 @@ "canonical_id": "game_mlb_2026_20260413_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:15p", + "game_datetime_utc": "2026-04-13T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -63957,8 +60404,7 @@ "canonical_id": "game_nhl_2025_20260413_dal_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Dallas Stars", "home_team_abbrev": "TOR", @@ -63975,8 +60421,7 @@ "canonical_id": "game_mlb_2026_20260413_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -63993,8 +60438,7 @@ "canonical_id": "game_mlb_2026_20260413_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:45p", + "game_datetime_utc": "2026-04-13T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64011,8 +60455,7 @@ "canonical_id": "game_nhl_2025_20260413_sj_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T00:00:00Z", "home_team": "Nashville Predators", "away_team": "San Jose Sharks", "home_team_abbrev": "NSH", @@ -64029,8 +60472,7 @@ "canonical_id": "game_nhl_2025_20260413_min_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Minnesota Wild", "home_team_abbrev": "STL", @@ -64047,8 +60489,7 @@ "canonical_id": "game_nhl_2025_20260413_buf_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-14T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Buffalo Sabres", "home_team_abbrev": "CHI", @@ -64065,8 +60506,7 @@ "canonical_id": "game_nhl_2025_20260413_col_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-14T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Colorado Avalanche", "home_team_abbrev": "EDM", @@ -64083,8 +60523,7 @@ "canonical_id": "game_nhl_2025_20260413_la_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "6:30p", + "game_datetime_utc": "2026-04-14T01:30:00Z", "home_team": "Seattle Kraken", "away_team": "Los Angeles Kings", "home_team_abbrev": "SEA", @@ -64101,8 +60540,7 @@ "canonical_id": "game_mlb_2026_20260414_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64119,8 +60557,7 @@ "canonical_id": "game_nhl_2025_20260413_wpg_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Winnipeg Jets", "home_team_abbrev": "VGK", @@ -64137,8 +60574,7 @@ "canonical_id": "game_mlb_2026_20260414_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:10p", + "game_datetime_utc": "2026-04-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64155,8 +60591,7 @@ "canonical_id": "game_mlb_2026_20260414_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:35p", + "game_datetime_utc": "2026-04-14T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -64173,8 +60608,7 @@ "canonical_id": "game_mlb_2026_20260414_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -64191,8 +60625,7 @@ "canonical_id": "game_mlb_2026_20260414_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -64209,8 +60642,7 @@ "canonical_id": "game_mlb_2026_20260414_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64227,8 +60659,7 @@ "canonical_id": "game_mlb_2026_20260414_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -64245,8 +60676,7 @@ "canonical_id": "game_nhl_2025_20260414_njd_bos", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Boston Bruins", "away_team": "New Jersey Devils", "home_team_abbrev": "BOS", @@ -64263,8 +60693,7 @@ "canonical_id": "game_nhl_2025_20260414_mtl_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Montreal Canadiens", "home_team_abbrev": "PHI", @@ -64281,8 +60710,7 @@ "canonical_id": "game_nhl_2025_20260414_was_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Washington Capitals", "home_team_abbrev": "CBJ", @@ -64299,8 +60727,7 @@ "canonical_id": "game_nhl_2025_20260414_car_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "New York Islanders", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYI", @@ -64317,8 +60744,7 @@ "canonical_id": "game_mlb_2026_20260414_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:05p", + "game_datetime_utc": "2026-04-14T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -64335,8 +60761,7 @@ "canonical_id": "game_mlb_2026_20260414_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:15p", + "game_datetime_utc": "2026-04-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -64353,8 +60778,7 @@ "canonical_id": "game_mlb_2026_20260414_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -64371,8 +60795,7 @@ "canonical_id": "game_mlb_2026_20260414_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -64389,8 +60812,7 @@ "canonical_id": "game_mlb_2026_20260414_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -64407,8 +60829,7 @@ "canonical_id": "game_mlb_2026_20260414_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:45p", + "game_datetime_utc": "2026-04-14T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64425,8 +60846,7 @@ "canonical_id": "game_nhl_2025_20260414_ana_min", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Anaheim Ducks", "home_team_abbrev": "MIN", @@ -64443,8 +60863,7 @@ "canonical_id": "game_mlb_2026_20260415_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:10p", + "game_datetime_utc": "2026-04-15T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -64461,8 +60880,7 @@ "canonical_id": "game_nhl_2025_20260414_wpg_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T01:00:00Z", "home_team": "Utah Club", "away_team": "Winnipeg Jets", "home_team_abbrev": "ARI", @@ -64479,8 +60897,7 @@ "canonical_id": "game_nhl_2025_20260414_col_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Colorado Avalanche", "home_team_abbrev": "CGY", @@ -64497,8 +60914,7 @@ "canonical_id": "game_nhl_2025_20260414_pit_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "8:30p", + "game_datetime_utc": "2026-04-15T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "STL", @@ -64515,8 +60931,7 @@ "canonical_id": "game_mlb_2026_20260415_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -64533,8 +60948,7 @@ "canonical_id": "game_mlb_2026_20260415_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64551,8 +60965,7 @@ "canonical_id": "game_nhl_2025_20260414_la_van", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Los Angeles Kings", "home_team_abbrev": "VAN", @@ -64569,8 +60982,7 @@ "canonical_id": "game_mlb_2026_20260415_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:10p", + "game_datetime_utc": "2026-04-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64587,8 +60999,7 @@ "canonical_id": "game_mlb_2026_20260415_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:35p", + "game_datetime_utc": "2026-04-15T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -64605,8 +61016,7 @@ "canonical_id": "game_mlb_2026_20260415_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:15p", + "game_datetime_utc": "2026-04-15T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64623,8 +61033,7 @@ "canonical_id": "game_mlb_2026_20260415_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:40p", + "game_datetime_utc": "2026-04-15T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -64641,8 +61050,7 @@ "canonical_id": "game_mlb_2026_20260415_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -64659,8 +61067,7 @@ "canonical_id": "game_mlb_2026_20260415_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -64677,8 +61084,7 @@ "canonical_id": "game_mlb_2026_20260415_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64695,8 +61101,7 @@ "canonical_id": "game_mlb_2026_20260415_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -64713,8 +61118,7 @@ "canonical_id": "game_nhl_2025_20260415_nyr_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Rangers", "home_team_abbrev": "TB", @@ -64731,8 +61135,7 @@ "canonical_id": "game_nhl_2025_20260415_dal_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Dallas Stars", "home_team_abbrev": "BUF", @@ -64749,8 +61152,7 @@ "canonical_id": "game_nhl_2025_20260415_det_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Detroit Red Wings", "home_team_abbrev": "FLA", @@ -64767,8 +61169,7 @@ "canonical_id": "game_mlb_2026_20260415_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:05p", + "game_datetime_utc": "2026-04-15T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -64785,8 +61186,7 @@ "canonical_id": "game_mlb_2026_20260415_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:15p", + "game_datetime_utc": "2026-04-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -64803,8 +61203,7 @@ "canonical_id": "game_nhl_2025_20260415_tor_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7:30p", + "game_datetime_utc": "2026-04-15T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "OTT", @@ -64821,8 +61220,7 @@ "canonical_id": "game_mlb_2026_20260415_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -64839,8 +61237,7 @@ "canonical_id": "game_mlb_2026_20260415_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -64857,8 +61254,7 @@ "canonical_id": "game_mlb_2026_20260416_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:10p", + "game_datetime_utc": "2026-04-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -64875,8 +61271,7 @@ "canonical_id": "game_nhl_2025_20260415_sj_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7:30p", + "game_datetime_utc": "2026-04-16T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "San Jose Sharks", "home_team_abbrev": "CHI", @@ -64893,8 +61288,7 @@ "canonical_id": "game_mlb_2026_20260416_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-16T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -64911,8 +61305,7 @@ "canonical_id": "game_mlb_2026_20260416_tex_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64929,8 +61322,7 @@ "canonical_id": "game_nhl_2025_20260415_sea_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-16T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Seattle Kraken", "home_team_abbrev": "VGK", @@ -64947,8 +61339,7 @@ "canonical_id": "game_mlb_2026_20260416_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:10p", + "game_datetime_utc": "2026-04-16T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64965,8 +61356,7 @@ "canonical_id": "game_mlb_2026_20260416_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:35p", + "game_datetime_utc": "2026-04-16T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64983,8 +61373,7 @@ "canonical_id": "game_mlb_2026_20260416_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:40p", + "game_datetime_utc": "2026-04-16T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -65001,8 +61390,7 @@ "canonical_id": "game_mlb_2026_20260416_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:10p", + "game_datetime_utc": "2026-04-16T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -65019,8 +61407,7 @@ "canonical_id": "game_mlb_2026_20260416_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:35p", + "game_datetime_utc": "2026-04-16T17:35:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -65037,8 +61424,7 @@ "canonical_id": "game_mlb_2026_20260416_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:40p", + "game_datetime_utc": "2026-04-16T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -65055,8 +61441,7 @@ "canonical_id": "game_mlb_2026_20260416_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:10p", + "game_datetime_utc": "2026-04-16T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -65073,8 +61458,7 @@ "canonical_id": "game_mlb_2026_20260416_tex_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:05p", + "game_datetime_utc": "2026-04-16T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -65091,8 +61475,7 @@ "canonical_id": "game_mlb_2026_20260416_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "6:10p", + "game_datetime_utc": "2026-04-16T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65109,8 +61492,7 @@ "canonical_id": "game_nhl_2025_20260416_stl_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "6p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Utah Club", "away_team": "St. Louis Blues", "home_team_abbrev": "ARI", @@ -65127,8 +61509,7 @@ "canonical_id": "game_nhl_2025_20260416_ana_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Anaheim Ducks", "home_team_abbrev": "NSH", @@ -65145,8 +61526,7 @@ "canonical_id": "game_nhl_2025_20260416_sj_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "San Jose Sharks", "home_team_abbrev": "WPG", @@ -65163,8 +61543,7 @@ "canonical_id": "game_mlb_2026_20260417_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -65181,8 +61560,7 @@ "canonical_id": "game_mlb_2026_20260417_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "5:40p", + "game_datetime_utc": "2026-04-17T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -65199,8 +61577,7 @@ "canonical_id": "game_nhl_2025_20260416_la_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Los Angeles Kings", "home_team_abbrev": "CGY", @@ -65217,8 +61594,7 @@ "canonical_id": "game_nhl_2025_20260416_van_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vancouver Canucks", "home_team_abbrev": "EDM", @@ -65235,8 +61611,7 @@ "canonical_id": "game_nhl_2025_20260416_sea_col", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "8:30p", + "game_datetime_utc": "2026-04-17T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Seattle Kraken", "home_team_abbrev": "COL", @@ -65253,8 +61628,7 @@ "canonical_id": "game_mlb_2026_20260417_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "1:20p", + "game_datetime_utc": "2026-04-17T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -65271,8 +61645,7 @@ "canonical_id": "game_mlb_2026_20260417_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:10p", + "game_datetime_utc": "2026-04-17T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65289,8 +61662,7 @@ "canonical_id": "game_mlb_2026_20260417_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-17T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -65307,8 +61679,7 @@ "canonical_id": "game_mlb_2026_20260417_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-17T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -65325,8 +61696,7 @@ "canonical_id": "game_mlb_2026_20260417_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:45p", + "game_datetime_utc": "2026-04-17T22:45:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -65343,8 +61713,7 @@ "canonical_id": "game_mlb_2026_20260417_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:05p", + "game_datetime_utc": "2026-04-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -65361,8 +61730,7 @@ "canonical_id": "game_mlb_2026_20260417_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -65379,8 +61747,7 @@ "canonical_id": "game_mlb_2026_20260417_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -65397,8 +61764,7 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-18T00:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -65415,8 +61781,7 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-18T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -65433,8 +61798,7 @@ "canonical_id": "game_mlb_2026_20260418_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -65451,8 +61815,7 @@ "canonical_id": "game_mlb_2026_20260418_sd_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:38p", + "game_datetime_utc": "2026-04-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -65469,8 +61832,7 @@ "canonical_id": "game_mlb_2026_20260418_tor_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -65487,8 +61849,7 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -65505,8 +61866,7 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -65523,8 +61883,7 @@ "canonical_id": "game_mls_2026_20260418_skc_van", "sport": "MLS", "season": "2026", - "date": "2026-04-17", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "VAN", @@ -65541,8 +61900,7 @@ "canonical_id": "game_mls_2026_20260418_aus_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "1p", + "game_datetime_utc": "2026-04-18T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Austin Austin FC", "home_team_abbrev": "TOR", @@ -65559,8 +61917,7 @@ "canonical_id": "game_mlb_2026_20260418_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:35p", + "game_datetime_utc": "2026-04-18T17:35:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -65577,8 +61934,7 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:10p", + "game_datetime_utc": "2026-04-18T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -65595,8 +61951,7 @@ "canonical_id": "game_mlb_2026_20260418_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:20p", + "game_datetime_utc": "2026-04-18T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -65613,8 +61968,7 @@ "canonical_id": "game_mls_2026_20260418_ny_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "2:30p", + "game_datetime_utc": "2026-04-18T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New York New York Red Bulls", "home_team_abbrev": "MTL", @@ -65631,8 +61985,7 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -65649,8 +62002,7 @@ "canonical_id": "game_mlb_2026_20260418_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -65667,8 +62019,7 @@ "canonical_id": "game_mlb_2026_20260418_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -65685,8 +62036,7 @@ "canonical_id": "game_mlb_2026_20260418_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:10p", + "game_datetime_utc": "2026-04-18T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -65703,8 +62053,7 @@ "canonical_id": "game_mlb_2026_20260418_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:10p", + "game_datetime_utc": "2026-04-18T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -65721,8 +62070,7 @@ "canonical_id": "game_mls_2026_20260418_mia_col", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "2:30p", + "game_datetime_utc": "2026-04-18T20:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Miami Inter Miami", "home_team_abbrev": "COL", @@ -65739,8 +62087,7 @@ "canonical_id": "game_mlb_2026_20260418_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-18T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65757,8 +62104,7 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-18T23:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -65775,8 +62121,7 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:15p", + "game_datetime_utc": "2026-04-18T23:15:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -65793,8 +62138,7 @@ "canonical_id": "game_mlb_2026_20260418_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "7:15p", + "game_datetime_utc": "2026-04-18T23:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -65811,8 +62155,7 @@ "canonical_id": "game_mls_2026_20260418_chi_cin", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CIN", @@ -65829,8 +62172,7 @@ "canonical_id": "game_mls_2026_20260418_clb_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NE", @@ -65847,8 +62189,7 @@ "canonical_id": "game_mls_2026_20260418_clt_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NYC", @@ -65865,8 +62206,7 @@ "canonical_id": "game_mls_2026_20260418_hou_orl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "ORL", @@ -65883,8 +62223,7 @@ "canonical_id": "game_mls_2026_20260418_dc_phi", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Washington D.C. United", "home_team_abbrev": "PHI", @@ -65901,8 +62240,7 @@ "canonical_id": "game_mls_2026_20260418_nsh_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Nashville Nashville SC", "home_team_abbrev": "ATL", @@ -65919,8 +62257,7 @@ "canonical_id": "game_mlb_2026_20260419_tor_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "5:10p", + "game_datetime_utc": "2026-04-19T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -65937,8 +62274,7 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-19T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -65955,8 +62291,7 @@ "canonical_id": "game_mls_2026_20260419_por_min", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MIN", @@ -65973,8 +62308,7 @@ "canonical_id": "game_mls_2026_20260419_lag_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "DAL", @@ -65991,8 +62325,7 @@ "canonical_id": "game_mls_2026_20260419_sd_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SLC", @@ -66009,8 +62342,7 @@ "canonical_id": "game_mls_2026_20260419_stl_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "6:30p", + "game_datetime_utc": "2026-04-19T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SEA", @@ -66027,8 +62359,7 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:38p", + "game_datetime_utc": "2026-04-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -66045,8 +62376,7 @@ "canonical_id": "game_mlb_2026_20260419_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -66063,8 +62393,7 @@ "canonical_id": "game_mlb_2026_20260419_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -66081,8 +62410,7 @@ "canonical_id": "game_mlb_2026_20260419_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -66099,8 +62427,7 @@ "canonical_id": "game_mlb_2026_20260419_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -66117,8 +62444,7 @@ "canonical_id": "game_mlb_2026_20260419_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:40p", + "game_datetime_utc": "2026-04-19T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -66135,8 +62461,7 @@ "canonical_id": "game_mlb_2026_20260419_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:40p", + "game_datetime_utc": "2026-04-19T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -66153,8 +62478,7 @@ "canonical_id": "game_mlb_2026_20260419_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T18:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -66171,8 +62495,7 @@ "canonical_id": "game_mlb_2026_20260419_cin_min", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -66189,8 +62512,7 @@ "canonical_id": "game_mlb_2026_20260419_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:20p", + "game_datetime_utc": "2026-04-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -66207,8 +62529,7 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -66225,8 +62546,7 @@ "canonical_id": "game_mlb_2026_20260419_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:05p", + "game_datetime_utc": "2026-04-19T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -66243,8 +62563,7 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:07p", + "game_datetime_utc": "2026-04-19T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -66261,8 +62580,7 @@ "canonical_id": "game_mlb_2026_20260419_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -66279,8 +62597,7 @@ "canonical_id": "game_mlb_2026_20260419_tor_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -66297,8 +62614,7 @@ "canonical_id": "game_mls_2026_20260419_sj_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-19", - "time": "4p", + "game_datetime_utc": "2026-04-19T23:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "LAFC", @@ -66315,8 +62631,7 @@ "canonical_id": "game_mlb_2026_20260419_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "7:20p", + "game_datetime_utc": "2026-04-19T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -66333,8 +62648,7 @@ "canonical_id": "game_mlb_2026_20260420_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "11:10a", + "game_datetime_utc": "2026-04-20T15:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -66351,8 +62665,7 @@ "canonical_id": "game_mlb_2026_20260420_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:10p", + "game_datetime_utc": "2026-04-20T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66369,8 +62682,7 @@ "canonical_id": "game_mlb_2026_20260420_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66387,8 +62699,7 @@ "canonical_id": "game_mlb_2026_20260420_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T22:40:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66405,8 +62716,7 @@ "canonical_id": "game_mlb_2026_20260420_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:45p", + "game_datetime_utc": "2026-04-20T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66423,8 +62733,7 @@ "canonical_id": "game_mlb_2026_20260420_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -66441,8 +62750,7 @@ "canonical_id": "game_mlb_2026_20260420_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66459,8 +62767,7 @@ "canonical_id": "game_mlb_2026_20260421_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -66477,8 +62784,7 @@ "canonical_id": "game_mlb_2026_20260421_tor_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:38p", + "game_datetime_utc": "2026-04-21T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66495,8 +62801,7 @@ "canonical_id": "game_mlb_2026_20260421_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66513,8 +62818,7 @@ "canonical_id": "game_mlb_2026_20260421_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:10p", + "game_datetime_utc": "2026-04-21T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66531,8 +62835,7 @@ "canonical_id": "game_mlb_2026_20260421_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66549,8 +62852,7 @@ "canonical_id": "game_mlb_2026_20260421_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -66567,8 +62869,7 @@ "canonical_id": "game_mlb_2026_20260421_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66585,8 +62886,7 @@ "canonical_id": "game_mlb_2026_20260421_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-21T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -66603,8 +62903,7 @@ "canonical_id": "game_mlb_2026_20260421_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-21T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66621,8 +62920,7 @@ "canonical_id": "game_mlb_2026_20260421_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "7:10p", + "game_datetime_utc": "2026-04-21T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -66639,8 +62937,7 @@ "canonical_id": "game_mlb_2026_20260421_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66657,8 +62954,7 @@ "canonical_id": "game_mlb_2026_20260421_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -66675,8 +62971,7 @@ "canonical_id": "game_mlb_2026_20260422_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "7:05p", + "game_datetime_utc": "2026-04-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -66693,8 +62988,7 @@ "canonical_id": "game_mlb_2026_20260422_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -66711,8 +63005,7 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:38p", + "game_datetime_utc": "2026-04-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66729,8 +63022,7 @@ "canonical_id": "game_mlb_2026_20260422_chw_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -66747,8 +63039,7 @@ "canonical_id": "game_mlb_2026_20260422_oak_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66765,8 +63056,7 @@ "canonical_id": "game_mlb_2026_20260422_lad_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -66783,8 +63073,7 @@ "canonical_id": "game_mlb_2026_20260422_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "12:10p", + "game_datetime_utc": "2026-04-22T16:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66801,8 +63090,7 @@ "canonical_id": "game_mlb_2026_20260422_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66819,8 +63107,7 @@ "canonical_id": "game_mlb_2026_20260422_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66837,8 +63124,7 @@ "canonical_id": "game_mlb_2026_20260422_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66855,8 +63141,7 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "12:07p", + "game_datetime_utc": "2026-04-22T19:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66873,8 +63158,7 @@ "canonical_id": "game_mlb_2026_20260422_oak_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66891,8 +63175,7 @@ "canonical_id": "game_mlb_2026_20260422_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -66909,8 +63192,7 @@ "canonical_id": "game_mlb_2026_20260422_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -66927,8 +63209,7 @@ "canonical_id": "game_mlb_2026_20260422_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66945,8 +63226,7 @@ "canonical_id": "game_mlb_2026_20260422_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "7:10p", + "game_datetime_utc": "2026-04-22T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -66963,8 +63243,7 @@ "canonical_id": "game_mls_2026_20260422_dc_ny", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Washington D.C. United", "home_team_abbrev": "RB", @@ -66981,8 +63260,7 @@ "canonical_id": "game_mls_2026_20260422_cin_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NYC", @@ -66999,8 +63277,7 @@ "canonical_id": "game_mls_2026_20260422_clt_orl", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "ORL", @@ -67017,8 +63294,7 @@ "canonical_id": "game_mls_2026_20260422_phi_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "TOR", @@ -67035,8 +63311,7 @@ "canonical_id": "game_mls_2026_20260422_ne_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New England New England Revolution", "home_team_abbrev": "ATL", @@ -67053,8 +63328,7 @@ "canonical_id": "game_mls_2026_20260422_lag_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "CLB", @@ -67071,8 +63345,7 @@ "canonical_id": "game_mlb_2026_20260422_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -67089,8 +63362,7 @@ "canonical_id": "game_mlb_2026_20260423_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "7:05p", + "game_datetime_utc": "2026-04-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -67107,8 +63379,7 @@ "canonical_id": "game_mls_2026_20260423_min_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "DAL", @@ -67125,8 +63396,7 @@ "canonical_id": "game_mls_2026_20260423_sd_hou", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "San Diego San Diego FC", "home_team_abbrev": "HOU", @@ -67143,8 +63413,7 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -67161,8 +63430,7 @@ "canonical_id": "game_mls_2026_20260423_mia_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Miami Inter Miami", "home_team_abbrev": "SLC", @@ -67179,8 +63447,7 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-23T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -67197,8 +63464,7 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-23T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -67215,8 +63481,7 @@ "canonical_id": "game_mls_2026_20260423_aus_sj", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Austin Austin FC", "home_team_abbrev": "SJ", @@ -67233,8 +63498,7 @@ "canonical_id": "game_mls_2026_20260423_col_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "LAFC", @@ -67251,8 +63515,7 @@ "canonical_id": "game_mlb_2026_20260423_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:05p", + "game_datetime_utc": "2026-04-23T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -67269,8 +63532,7 @@ "canonical_id": "game_mlb_2026_20260423_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:10p", + "game_datetime_utc": "2026-04-23T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -67287,8 +63549,7 @@ "canonical_id": "game_mlb_2026_20260423_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:20p", + "game_datetime_utc": "2026-04-23T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -67305,8 +63566,7 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:10p", + "game_datetime_utc": "2026-04-23T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -67323,8 +63583,7 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "12:40p", + "game_datetime_utc": "2026-04-23T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -67341,8 +63600,7 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "12:45p", + "game_datetime_utc": "2026-04-23T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -67359,8 +63617,7 @@ "canonical_id": "game_mlb_2026_20260423_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "6:10p", + "game_datetime_utc": "2026-04-23T22:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -67377,8 +63634,7 @@ "canonical_id": "game_mlb_2026_20260423_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "7:10p", + "game_datetime_utc": "2026-04-23T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -67395,8 +63651,7 @@ "canonical_id": "game_mlb_2026_20260424_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "7:05p", + "game_datetime_utc": "2026-04-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -67413,8 +63668,7 @@ "canonical_id": "game_nwsl_2026_20260424_orl_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-04-24", - "time": "5:30p", + "game_datetime_utc": "2026-04-24T21:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "RGN", @@ -67431,8 +63685,7 @@ "canonical_id": "game_mlb_2026_20260424_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -67449,8 +63702,7 @@ "canonical_id": "game_mlb_2026_20260424_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:05p", + "game_datetime_utc": "2026-04-24T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -67467,8 +63719,7 @@ "canonical_id": "game_mlb_2026_20260424_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:07p", + "game_datetime_utc": "2026-04-24T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -67485,8 +63736,7 @@ "canonical_id": "game_mlb_2026_20260424_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -67503,8 +63753,7 @@ "canonical_id": "game_mlb_2026_20260424_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-24T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -67521,8 +63770,7 @@ "canonical_id": "game_mlb_2026_20260424_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-24T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -67539,8 +63787,7 @@ "canonical_id": "game_mlb_2026_20260424_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -67557,8 +63804,7 @@ "canonical_id": "game_mlb_2026_20260424_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -67575,8 +63821,7 @@ "canonical_id": "game_mlb_2026_20260424_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -67593,8 +63838,7 @@ "canonical_id": "game_nwsl_2026_20260425_kcc_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-04-24", - "time": "8p", + "game_datetime_utc": "2026-04-25T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "WSH", @@ -67611,8 +63855,7 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:05p", + "game_datetime_utc": "2026-04-25T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -67629,8 +63872,7 @@ "canonical_id": "game_mlb_2026_20260425_nyy_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-25T00:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -67647,8 +63889,7 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -67665,8 +63906,7 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-25T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -67683,8 +63923,7 @@ "canonical_id": "game_mlb_2026_20260425_mia_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -67701,8 +63940,7 @@ "canonical_id": "game_mls_2026_20260425_atl_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "1p", + "game_datetime_utc": "2026-04-25T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "TOR", @@ -67719,8 +63957,7 @@ "canonical_id": "game_nwsl_2026_20260425_bay_njy", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "1p", + "game_datetime_utc": "2026-04-25T17:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "NJY", @@ -67737,8 +63974,7 @@ "canonical_id": "game_mls_2026_20260425_lafc_min", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "12:30p", + "game_datetime_utc": "2026-04-25T17:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "MIN", @@ -67755,8 +63991,7 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "1:15p", + "game_datetime_utc": "2026-04-25T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -67773,8 +64008,7 @@ "canonical_id": "game_mlb_2026_20260425_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "3:07p", + "game_datetime_utc": "2026-04-25T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -67791,8 +64025,7 @@ "canonical_id": "game_mlb_2026_20260425_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:05p", + "game_datetime_utc": "2026-04-25T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -67809,8 +64042,7 @@ "canonical_id": "game_mlb_2026_20260425_mia_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "1:05p", + "game_datetime_utc": "2026-04-25T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -67827,8 +64059,7 @@ "canonical_id": "game_mlb_2026_20260425_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -67845,8 +64076,7 @@ "canonical_id": "game_mlb_2026_20260425_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "3:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -67863,8 +64093,7 @@ "canonical_id": "game_mlb_2026_20260425_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -67881,8 +64110,7 @@ "canonical_id": "game_mlb_2026_20260425_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:05p", + "game_datetime_utc": "2026-04-25T22:05:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -67899,8 +64127,7 @@ "canonical_id": "game_nwsl_2026_20260425_bos_chi", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "5:30p", + "game_datetime_utc": "2026-04-25T22:30:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "CHI", @@ -67917,8 +64144,7 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:05p", + "game_datetime_utc": "2026-04-25T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -67935,8 +64161,7 @@ "canonical_id": "game_mlb_2026_20260425_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -67953,8 +64178,7 @@ "canonical_id": "game_mlb_2026_20260425_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -67971,8 +64195,7 @@ "canonical_id": "game_mlb_2026_20260425_nyy_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -67989,8 +64212,7 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -68007,8 +64229,7 @@ "canonical_id": "game_mlb_2026_20260425_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -68025,8 +64246,7 @@ "canonical_id": "game_mlb_2026_20260425_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -68043,8 +64263,7 @@ "canonical_id": "game_mls_2026_20260425_ne_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New England New England Revolution", "home_team_abbrev": "MIA", @@ -68061,8 +64280,7 @@ "canonical_id": "game_mls_2026_20260425_ny_cin", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CIN", @@ -68079,8 +64297,7 @@ "canonical_id": "game_mls_2026_20260425_orl_dc", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Orlando Orlando City", "home_team_abbrev": "DC", @@ -68097,8 +64314,7 @@ "canonical_id": "game_mls_2026_20260425_phi_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CLB", @@ -68115,8 +64331,7 @@ "canonical_id": "game_nwsl_2026_20260426_ncc_hou", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "7p", + "game_datetime_utc": "2026-04-26T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "HOU", @@ -68133,8 +64348,7 @@ "canonical_id": "game_mls_2026_20260426_hou_aus", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "AUS", @@ -68151,8 +64365,7 @@ "canonical_id": "game_mls_2026_20260426_clt_nsh", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NSH", @@ -68169,8 +64382,7 @@ "canonical_id": "game_mls_2026_20260426_skc_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "CHI", @@ -68187,8 +64399,7 @@ "canonical_id": "game_mls_2026_20260426_sj_stl", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "STL", @@ -68205,8 +64416,7 @@ "canonical_id": "game_nwsl_2026_20260426_sdw_den", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "6:45p", + "game_datetime_utc": "2026-04-26T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "DEN", @@ -68223,8 +64433,7 @@ "canonical_id": "game_mls_2026_20260426_por_sd", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "6:30p", + "game_datetime_utc": "2026-04-26T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SD", @@ -68241,8 +64450,7 @@ "canonical_id": "game_mls_2026_20260426_dal_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SEA", @@ -68259,8 +64467,7 @@ "canonical_id": "game_mls_2026_20260426_col_van", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "VAN", @@ -68277,8 +64484,7 @@ "canonical_id": "game_mlb_2026_20260426_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -68295,8 +64501,7 @@ "canonical_id": "game_mlb_2026_20260426_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -68313,8 +64518,7 @@ "canonical_id": "game_mlb_2026_20260426_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:37p", + "game_datetime_utc": "2026-04-26T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -68331,8 +64535,7 @@ "canonical_id": "game_mlb_2026_20260426_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -68349,8 +64552,7 @@ "canonical_id": "game_mlb_2026_20260426_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -68367,8 +64569,7 @@ "canonical_id": "game_mlb_2026_20260426_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -68385,8 +64586,7 @@ "canonical_id": "game_mlb_2026_20260426_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -68403,8 +64603,7 @@ "canonical_id": "game_mlb_2026_20260426_nyy_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -68421,8 +64620,7 @@ "canonical_id": "game_mlb_2026_20260426_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -68439,8 +64637,7 @@ "canonical_id": "game_mlb_2026_20260426_sea_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:15p", + "game_datetime_utc": "2026-04-26T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -68457,8 +64654,7 @@ "canonical_id": "game_mls_2026_20260426_nyc_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-26", - "time": "2:30p", + "game_datetime_utc": "2026-04-26T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New York New York City FC", "home_team_abbrev": "MTL", @@ -68475,8 +64671,7 @@ "canonical_id": "game_mlb_2026_20260426_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -68493,8 +64688,7 @@ "canonical_id": "game_mlb_2026_20260426_mia_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:05p", + "game_datetime_utc": "2026-04-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -68511,8 +64705,7 @@ "canonical_id": "game_mlb_2026_20260426_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "2:05p", + "game_datetime_utc": "2026-04-26T20:05:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -68529,8 +64722,7 @@ "canonical_id": "game_mlb_2026_20260426_chc_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -68547,8 +64739,7 @@ "canonical_id": "game_nwsl_2026_20260426_por_ang", "sport": "NWSL", "season": "2026", - "date": "2026-04-26", - "time": "3p", + "game_datetime_utc": "2026-04-26T22:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "ANG", @@ -68565,8 +64756,7 @@ "canonical_id": "game_mls_2026_20260426_slc_lag", "sport": "MLS", "season": "2026", - "date": "2026-04-26", - "time": "4p", + "game_datetime_utc": "2026-04-26T23:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "LAG", @@ -68583,8 +64773,7 @@ "canonical_id": "game_mlb_2026_20260426_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "6:20p", + "game_datetime_utc": "2026-04-26T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -68601,8 +64790,7 @@ "canonical_id": "game_nwsl_2026_20260427_uta_sea", "sport": "NWSL", "season": "2026", - "date": "2026-04-26", - "time": "5p", + "game_datetime_utc": "2026-04-27T00:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Utah Utah Royals", "home_team_abbrev": "SEA", @@ -68619,8 +64807,7 @@ "canonical_id": "game_mlb_2026_20260427_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:10p", + "game_datetime_utc": "2026-04-27T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -68637,8 +64824,7 @@ "canonical_id": "game_mlb_2026_20260427_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -68655,8 +64841,7 @@ "canonical_id": "game_mlb_2026_20260427_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:07p", + "game_datetime_utc": "2026-04-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -68673,8 +64858,7 @@ "canonical_id": "game_mlb_2026_20260427_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -68691,8 +64875,7 @@ "canonical_id": "game_mlb_2026_20260427_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -68709,8 +64892,7 @@ "canonical_id": "game_mlb_2026_20260428_nyy_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:05p", + "game_datetime_utc": "2026-04-28T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -68727,8 +64909,7 @@ "canonical_id": "game_mlb_2026_20260428_chc_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -68745,8 +64926,7 @@ "canonical_id": "game_mlb_2026_20260428_mia_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:10p", + "game_datetime_utc": "2026-04-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -68763,8 +64943,7 @@ "canonical_id": "game_mlb_2026_20260428_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:10p", + "game_datetime_utc": "2026-04-28T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -68781,8 +64960,7 @@ "canonical_id": "game_mlb_2026_20260428_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:35p", + "game_datetime_utc": "2026-04-28T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -68799,8 +64977,7 @@ "canonical_id": "game_mlb_2026_20260428_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -68817,8 +64994,7 @@ "canonical_id": "game_mlb_2026_20260428_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -68835,8 +65011,7 @@ "canonical_id": "game_mlb_2026_20260428_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -68853,8 +65028,7 @@ "canonical_id": "game_mlb_2026_20260428_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:07p", + "game_datetime_utc": "2026-04-28T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -68871,8 +65045,7 @@ "canonical_id": "game_mlb_2026_20260428_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:10p", + "game_datetime_utc": "2026-04-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -68889,8 +65062,7 @@ "canonical_id": "game_mlb_2026_20260428_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:15p", + "game_datetime_utc": "2026-04-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -68907,8 +65079,7 @@ "canonical_id": "game_mlb_2026_20260428_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -68925,8 +65096,7 @@ "canonical_id": "game_mlb_2026_20260428_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -68943,8 +65113,7 @@ "canonical_id": "game_mlb_2026_20260428_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -68961,8 +65130,7 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:05p", + "game_datetime_utc": "2026-04-29T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -68979,8 +65147,7 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -68997,8 +65164,7 @@ "canonical_id": "game_mlb_2026_20260429_kc_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69015,8 +65181,7 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:10p", + "game_datetime_utc": "2026-04-29T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -69033,8 +65198,7 @@ "canonical_id": "game_mlb_2026_20260429_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:10p", + "game_datetime_utc": "2026-04-29T17:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -69051,8 +65215,7 @@ "canonical_id": "game_mlb_2026_20260429_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:10p", + "game_datetime_utc": "2026-04-29T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -69069,8 +65232,7 @@ "canonical_id": "game_mlb_2026_20260429_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:40p", + "game_datetime_utc": "2026-04-29T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -69087,8 +65249,7 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:35p", + "game_datetime_utc": "2026-04-29T18:35:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -69105,8 +65266,7 @@ "canonical_id": "game_mlb_2026_20260429_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "3:07p", + "game_datetime_utc": "2026-04-29T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -69123,8 +65283,7 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:10p", + "game_datetime_utc": "2026-04-29T19:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -69141,8 +65300,7 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:10p", + "game_datetime_utc": "2026-04-29T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -69159,8 +65317,7 @@ "canonical_id": "game_mlb_2026_20260429_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:35p", + "game_datetime_utc": "2026-04-29T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -69177,8 +65334,7 @@ "canonical_id": "game_mlb_2026_20260429_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -69195,8 +65351,7 @@ "canonical_id": "game_mlb_2026_20260429_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -69213,8 +65368,7 @@ "canonical_id": "game_mlb_2026_20260429_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -69231,8 +65385,7 @@ "canonical_id": "game_nwsl_2026_20260429_rgn_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-29T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "WSH", @@ -69249,8 +65402,7 @@ "canonical_id": "game_mlb_2026_20260429_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "7:10p", + "game_datetime_utc": "2026-04-29T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -69267,8 +65419,7 @@ "canonical_id": "game_mlb_2026_20260429_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "7:15p", + "game_datetime_utc": "2026-04-29T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -69285,8 +65436,7 @@ "canonical_id": "game_mlb_2026_20260429_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -69303,8 +65453,7 @@ "canonical_id": "game_nwsl_2026_20260430_ncc_bos", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "8p", + "game_datetime_utc": "2026-04-30T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "BOS", @@ -69321,8 +65470,7 @@ "canonical_id": "game_nwsl_2026_20260430_njy_chi", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-30T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "CHI", @@ -69339,8 +65487,7 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69357,8 +65504,7 @@ "canonical_id": "game_nwsl_2026_20260430_sdw_por", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-30T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "POR", @@ -69375,8 +65521,7 @@ "canonical_id": "game_mlb_2026_20260430_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:15p", + "game_datetime_utc": "2026-04-30T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -69393,8 +65538,7 @@ "canonical_id": "game_mlb_2026_20260430_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:35p", + "game_datetime_utc": "2026-04-30T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -69411,8 +65555,7 @@ "canonical_id": "game_mlb_2026_20260430_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:35p", + "game_datetime_utc": "2026-04-30T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -69429,8 +65572,7 @@ "canonical_id": "game_mlb_2026_20260430_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:40p", + "game_datetime_utc": "2026-04-30T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -69447,8 +65589,7 @@ "canonical_id": "game_mlb_2026_20260430_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "1:05p", + "game_datetime_utc": "2026-04-30T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -69465,8 +65606,7 @@ "canonical_id": "game_mlb_2026_20260430_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "1:10p", + "game_datetime_utc": "2026-04-30T17:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -69483,8 +65623,7 @@ "canonical_id": "game_mlb_2026_20260430_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:40p", + "game_datetime_utc": "2026-04-30T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -69501,8 +65640,7 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:05p", + "game_datetime_utc": "2026-04-30T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69519,8 +65657,7 @@ "canonical_id": "game_mlb_2026_20260430_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "6:40p", + "game_datetime_utc": "2026-04-30T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69537,8 +65674,7 @@ "canonical_id": "game_mlb_2026_20260501_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "1:20p", + "game_datetime_utc": "2026-05-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -69555,8 +65691,7 @@ "canonical_id": "game_mlb_2026_20260501_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-01T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -69573,8 +65708,7 @@ "canonical_id": "game_mlb_2026_20260501_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-01T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -69591,8 +65725,7 @@ "canonical_id": "game_mlb_2026_20260501_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:45p", + "game_datetime_utc": "2026-05-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -69609,8 +65742,7 @@ "canonical_id": "game_mlb_2026_20260501_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:05p", + "game_datetime_utc": "2026-05-01T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -69627,8 +65759,7 @@ "canonical_id": "game_mlb_2026_20260501_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -69645,8 +65776,7 @@ "canonical_id": "game_mlb_2026_20260501_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -69663,8 +65793,7 @@ "canonical_id": "game_mlb_2026_20260501_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -69681,8 +65810,7 @@ "canonical_id": "game_nwsl_2026_20260502_sea_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-01", - "time": "7p", + "game_datetime_utc": "2026-05-02T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "HOU", @@ -69699,8 +65827,7 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-02T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69717,8 +65844,7 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:15p", + "game_datetime_utc": "2026-05-02T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -69735,8 +65861,7 @@ "canonical_id": "game_mlb_2026_20260502_atl_col", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -69753,8 +65878,7 @@ "canonical_id": "game_mlb_2026_20260502_nym_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:38p", + "game_datetime_utc": "2026-05-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -69771,8 +65895,7 @@ "canonical_id": "game_mlb_2026_20260502_chw_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -69789,8 +65912,7 @@ "canonical_id": "game_mlb_2026_20260502_cle_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -69807,8 +65929,7 @@ "canonical_id": "game_mlb_2026_20260502_kc_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -69825,8 +65946,7 @@ "canonical_id": "game_mls_2026_20260502_sj_tor", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "1p", + "game_datetime_utc": "2026-05-02T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "TOR", @@ -69843,8 +65963,7 @@ "canonical_id": "game_mlb_2026_20260502_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:35p", + "game_datetime_utc": "2026-05-02T17:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -69861,8 +65980,7 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:10p", + "game_datetime_utc": "2026-05-02T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69879,8 +65997,7 @@ "canonical_id": "game_mlb_2026_20260502_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:20p", + "game_datetime_utc": "2026-05-02T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -69897,8 +66014,7 @@ "canonical_id": "game_mls_2026_20260502_sea_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "1:30p", + "game_datetime_utc": "2026-05-02T18:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SKC", @@ -69915,8 +66031,7 @@ "canonical_id": "game_nwsl_2026_20260502_wsh_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "4p", + "game_datetime_utc": "2026-05-02T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Washington Washington Spirit", "home_team_abbrev": "ORL", @@ -69933,8 +66048,7 @@ "canonical_id": "game_mlb_2026_20260502_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -69951,8 +66065,7 @@ "canonical_id": "game_mlb_2026_20260502_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -69969,8 +66082,7 @@ "canonical_id": "game_mlb_2026_20260502_cle_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -69987,8 +66099,7 @@ "canonical_id": "game_mlb_2026_20260502_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:10p", + "game_datetime_utc": "2026-05-02T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70005,8 +66116,7 @@ "canonical_id": "game_mlb_2026_20260502_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:10p", + "game_datetime_utc": "2026-05-02T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -70023,8 +66133,7 @@ "canonical_id": "game_mls_2026_20260502_por_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "2:30p", + "game_datetime_utc": "2026-05-02T20:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SLC", @@ -70041,8 +66150,7 @@ "canonical_id": "game_mlb_2026_20260502_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:10p", + "game_datetime_utc": "2026-05-02T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -70059,8 +66167,7 @@ "canonical_id": "game_nwsl_2026_20260502_kcc_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "6:30p", + "game_datetime_utc": "2026-05-02T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "NCC", @@ -70077,8 +66184,7 @@ "canonical_id": "game_mls_2026_20260502_orl_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7p", + "game_datetime_utc": "2026-05-02T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Orlando Orlando City", "home_team_abbrev": "MIA", @@ -70095,8 +66201,7 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:15p", + "game_datetime_utc": "2026-05-02T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -70113,8 +66218,7 @@ "canonical_id": "game_mlb_2026_20260502_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "7:15p", + "game_datetime_utc": "2026-05-02T23:15:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -70131,8 +66235,7 @@ "canonical_id": "game_mls_2026_20260502_min_clb", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "CLB", @@ -70149,8 +66252,7 @@ "canonical_id": "game_mls_2026_20260502_clt_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NE", @@ -70167,8 +66269,7 @@ "canonical_id": "game_mls_2026_20260502_dal_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Dallas FC Dallas", "home_team_abbrev": "RB", @@ -70185,8 +66286,7 @@ "canonical_id": "game_mls_2026_20260502_nsh_phi", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Nashville Nashville SC", "home_team_abbrev": "PHI", @@ -70203,8 +66303,7 @@ "canonical_id": "game_mls_2026_20260502_mtl_atl", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Montreal CF Montreal", "home_team_abbrev": "ATL", @@ -70221,8 +66320,7 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:10p", + "game_datetime_utc": "2026-05-03T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -70239,8 +66337,7 @@ "canonical_id": "game_mls_2026_20260503_col_hou", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "HOU", @@ -70257,8 +66354,7 @@ "canonical_id": "game_mls_2026_20260503_cin_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CHI", @@ -70275,8 +66371,7 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "5:40p", + "game_datetime_utc": "2026-05-03T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -70293,8 +66388,7 @@ "canonical_id": "game_nwsl_2026_20260503_uta_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "5:45p", + "game_datetime_utc": "2026-05-03T00:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "ANG", @@ -70311,8 +66405,7 @@ "canonical_id": "game_mls_2026_20260503_lafc_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "6:30p", + "game_datetime_utc": "2026-05-03T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SD", @@ -70329,8 +66422,7 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:38p", + "game_datetime_utc": "2026-05-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -70347,8 +66439,7 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:40p", + "game_datetime_utc": "2026-05-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -70365,8 +66456,7 @@ "canonical_id": "game_mls_2026_20260503_van_lag", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "LAG", @@ -70383,8 +66473,7 @@ "canonical_id": "game_mlb_2026_20260503_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "11:35a", + "game_datetime_utc": "2026-05-03T16:35:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -70401,8 +66490,7 @@ "canonical_id": "game_nwsl_2026_20260503_por_chi", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "12p", + "game_datetime_utc": "2026-05-03T17:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Portland Portland Thorns", "home_team_abbrev": "CHI", @@ -70419,8 +66507,7 @@ "canonical_id": "game_mlb_2026_20260503_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -70437,8 +66524,7 @@ "canonical_id": "game_mlb_2026_20260503_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -70455,8 +66541,7 @@ "canonical_id": "game_mlb_2026_20260503_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -70473,8 +66558,7 @@ "canonical_id": "game_mlb_2026_20260503_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -70491,8 +66575,7 @@ "canonical_id": "game_mlb_2026_20260503_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:40p", + "game_datetime_utc": "2026-05-03T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70509,8 +66592,7 @@ "canonical_id": "game_mlb_2026_20260503_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:40p", + "game_datetime_utc": "2026-05-03T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -70527,8 +66609,7 @@ "canonical_id": "game_mlb_2026_20260503_lad_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:15p", + "game_datetime_utc": "2026-05-03T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -70545,8 +66626,7 @@ "canonical_id": "game_mlb_2026_20260503_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:20p", + "game_datetime_utc": "2026-05-03T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -70563,8 +66643,7 @@ "canonical_id": "game_nwsl_2026_20260503_den_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "3p", + "game_datetime_utc": "2026-05-03T19:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "BOS", @@ -70581,8 +66660,7 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -70599,8 +66677,7 @@ "canonical_id": "game_mlb_2026_20260503_cle_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:05p", + "game_datetime_utc": "2026-05-03T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -70617,8 +66694,7 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:07p", + "game_datetime_utc": "2026-05-03T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -70635,8 +66711,7 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -70653,8 +66728,7 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -70671,8 +66745,7 @@ "canonical_id": "game_mls_2026_20260503_dc_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-03", - "time": "4:30p", + "game_datetime_utc": "2026-05-03T20:30:00Z", "home_team": "New York New York City FC", "away_team": "Washington D.C. United", "home_team_abbrev": "NYC", @@ -70689,8 +66762,7 @@ "canonical_id": "game_nwsl_2026_20260503_rgn_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "5p", + "game_datetime_utc": "2026-05-03T21:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "NJY", @@ -70707,8 +66779,7 @@ "canonical_id": "game_mls_2026_20260503_stl_aus", "sport": "MLS", "season": "2026", - "date": "2026-05-03", - "time": "6p", + "game_datetime_utc": "2026-05-03T23:00:00Z", "home_team": "Austin Austin FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "AUS", @@ -70725,8 +66796,7 @@ "canonical_id": "game_nwsl_2026_20260503_bay_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "4p", + "game_datetime_utc": "2026-05-03T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "San Francisco Bay FC", "home_team_abbrev": "SDW", @@ -70743,8 +66813,7 @@ "canonical_id": "game_mlb_2026_20260503_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "7:20p", + "game_datetime_utc": "2026-05-03T23:20:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -70761,8 +66830,7 @@ "canonical_id": "game_mlb_2026_20260504_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70779,8 +66847,7 @@ "canonical_id": "game_mlb_2026_20260504_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -70797,8 +66864,7 @@ "canonical_id": "game_mlb_2026_20260504_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -70815,8 +66881,7 @@ "canonical_id": "game_mlb_2026_20260504_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "7:05p", + "game_datetime_utc": "2026-05-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -70833,8 +66898,7 @@ "canonical_id": "game_mlb_2026_20260504_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -70851,8 +66915,7 @@ "canonical_id": "game_mlb_2026_20260504_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -70869,8 +66932,7 @@ "canonical_id": "game_mlb_2026_20260504_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:45p", + "game_datetime_utc": "2026-05-04T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -70887,8 +66949,7 @@ "canonical_id": "game_mlb_2026_20260505_lad_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "7:10p", + "game_datetime_utc": "2026-05-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -70905,8 +66966,7 @@ "canonical_id": "game_mlb_2026_20260505_nym_col", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -70923,8 +66983,7 @@ "canonical_id": "game_mlb_2026_20260505_chw_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:38p", + "game_datetime_utc": "2026-05-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -70941,8 +67000,7 @@ "canonical_id": "game_mlb_2026_20260505_atl_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -70959,8 +67017,7 @@ "canonical_id": "game_mlb_2026_20260505_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -70977,8 +67034,7 @@ "canonical_id": "game_mlb_2026_20260505_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -70995,8 +67051,7 @@ "canonical_id": "game_mlb_2026_20260505_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -71013,8 +67068,7 @@ "canonical_id": "game_mlb_2026_20260505_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -71031,8 +67085,7 @@ "canonical_id": "game_mlb_2026_20260505_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71049,8 +67102,7 @@ "canonical_id": "game_mlb_2026_20260505_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71067,8 +67119,7 @@ "canonical_id": "game_mlb_2026_20260505_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "7:05p", + "game_datetime_utc": "2026-05-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71085,8 +67136,7 @@ "canonical_id": "game_mlb_2026_20260505_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71103,8 +67153,7 @@ "canonical_id": "game_mlb_2026_20260505_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71121,8 +67170,7 @@ "canonical_id": "game_mlb_2026_20260505_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -71139,8 +67187,7 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "7:10p", + "game_datetime_utc": "2026-05-06T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -71157,8 +67204,7 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -71175,8 +67221,7 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:38p", + "game_datetime_utc": "2026-05-06T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -71193,8 +67238,7 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -71211,8 +67255,7 @@ "canonical_id": "game_mlb_2026_20260506_pit_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71229,8 +67272,7 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-06T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -71247,8 +67289,7 @@ "canonical_id": "game_mlb_2026_20260506_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -71265,8 +67306,7 @@ "canonical_id": "game_mlb_2026_20260506_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "12:15p", + "game_datetime_utc": "2026-05-06T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -71283,8 +67323,7 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T18:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -71301,8 +67340,7 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -71319,8 +67357,7 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "12:45p", + "game_datetime_utc": "2026-05-06T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -71337,8 +67374,7 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:07p", + "game_datetime_utc": "2026-05-06T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -71355,8 +67391,7 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -71373,8 +67408,7 @@ "canonical_id": "game_mlb_2026_20260506_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -71391,8 +67425,7 @@ "canonical_id": "game_mlb_2026_20260506_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71409,8 +67442,7 @@ "canonical_id": "game_mlb_2026_20260506_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -71427,8 +67459,7 @@ "canonical_id": "game_mlb_2026_20260506_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:45p", + "game_datetime_utc": "2026-05-06T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71445,8 +67476,7 @@ "canonical_id": "game_mlb_2026_20260506_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "7:05p", + "game_datetime_utc": "2026-05-06T23:05:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71463,8 +67493,7 @@ "canonical_id": "game_mls_2026_20260506_lafc_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-06", - "time": "7:30p", + "game_datetime_utc": "2026-05-06T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "NYC", @@ -71481,8 +67510,7 @@ "canonical_id": "game_mlb_2026_20260506_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71499,8 +67527,7 @@ "canonical_id": "game_mlb_2026_20260506_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71517,8 +67544,7 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71535,8 +67561,7 @@ "canonical_id": "game_nwsl_2026_20260507_hou_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-06", - "time": "8p", + "game_datetime_utc": "2026-05-07T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Houston Houston Dash", "home_team_abbrev": "UTA", @@ -71553,8 +67578,7 @@ "canonical_id": "game_mlb_2026_20260507_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "12:35p", + "game_datetime_utc": "2026-05-07T16:35:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71571,8 +67595,7 @@ "canonical_id": "game_mlb_2026_20260507_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:05p", + "game_datetime_utc": "2026-05-07T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71589,8 +67612,7 @@ "canonical_id": "game_mlb_2026_20260507_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:10p", + "game_datetime_utc": "2026-05-07T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71607,8 +67629,7 @@ "canonical_id": "game_mlb_2026_20260507_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:20p", + "game_datetime_utc": "2026-05-07T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71625,8 +67646,7 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "12:40p", + "game_datetime_utc": "2026-05-07T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71643,8 +67663,7 @@ "canonical_id": "game_mlb_2026_20260507_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71661,8 +67680,7 @@ "canonical_id": "game_mlb_2026_20260507_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -71679,8 +67697,7 @@ "canonical_id": "game_mlb_2026_20260507_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "7:10p", + "game_datetime_utc": "2026-05-07T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -71697,8 +67714,7 @@ "canonical_id": "game_mlb_2026_20260508_stl_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T02:10:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -71715,8 +67731,7 @@ "canonical_id": "game_nwsl_2026_20260508_por_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-08", - "time": "6:30p", + "game_datetime_utc": "2026-05-08T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Portland Portland Thorns", "home_team_abbrev": "RGN", @@ -71733,8 +67748,7 @@ "canonical_id": "game_mlb_2026_20260508_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -71751,8 +67765,7 @@ "canonical_id": "game_mlb_2026_20260508_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -71769,8 +67782,7 @@ "canonical_id": "game_mlb_2026_20260508_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:05p", + "game_datetime_utc": "2026-05-08T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -71787,8 +67799,7 @@ "canonical_id": "game_mlb_2026_20260508_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:07p", + "game_datetime_utc": "2026-05-08T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -71805,8 +67816,7 @@ "canonical_id": "game_mlb_2026_20260508_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -71823,8 +67833,7 @@ "canonical_id": "game_mlb_2026_20260508_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -71841,8 +67850,7 @@ "canonical_id": "game_mlb_2026_20260508_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -71859,8 +67867,7 @@ "canonical_id": "game_wnba_2026_20260508_con_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-08", - "time": "7:30p", + "game_datetime_utc": "2026-05-08T23:30:00Z", "home_team": "New York Liberty", "away_team": "Connecticut Sun", "home_team_abbrev": "NY", @@ -71877,8 +67884,7 @@ "canonical_id": "game_mlb_2026_20260508_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -71895,8 +67901,7 @@ "canonical_id": "game_mlb_2026_20260508_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -71913,8 +67918,7 @@ "canonical_id": "game_mlb_2026_20260508_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -71931,8 +67935,7 @@ "canonical_id": "game_nwsl_2026_20260509_ncc_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-08", - "time": "8p", + "game_datetime_utc": "2026-05-09T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "ORL", @@ -71949,8 +67952,7 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:05p", + "game_datetime_utc": "2026-05-09T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -71967,8 +67969,7 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-09T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -71985,8 +67986,7 @@ "canonical_id": "game_mlb_2026_20260509_stl_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72003,8 +68003,7 @@ "canonical_id": "game_wnba_2026_20260509_gsv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-08", - "time": "7p", + "game_datetime_utc": "2026-05-09T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Golden State Valkyries", "home_team_abbrev": "SEA", @@ -72021,8 +68020,7 @@ "canonical_id": "game_mlb_2026_20260509_atl_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72039,8 +68037,7 @@ "canonical_id": "game_mlb_2026_20260509_pit_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:15p", + "game_datetime_utc": "2026-05-09T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72057,8 +68054,7 @@ "canonical_id": "game_mls_2026_20260509_mia_tor", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "1p", + "game_datetime_utc": "2026-05-09T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "TOR", @@ -72075,8 +68071,7 @@ "canonical_id": "game_wnba_2026_20260509_dal_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-09", - "time": "1p", + "game_datetime_utc": "2026-05-09T17:00:00Z", "home_team": "Indiana Fever", "away_team": "Dallas Wings", "home_team_abbrev": "IND", @@ -72093,8 +68088,7 @@ "canonical_id": "game_mls_2026_20260509_ny_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "1:30p", + "game_datetime_utc": "2026-05-09T18:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CHI", @@ -72111,8 +68105,7 @@ "canonical_id": "game_mlb_2026_20260509_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "3:07p", + "game_datetime_utc": "2026-05-09T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -72129,8 +68122,7 @@ "canonical_id": "game_wnba_2026_20260509_phx_lv", "sport": "WNBA", "season": "2026", - "date": "2026-05-09", - "time": "12:30p", + "game_datetime_utc": "2026-05-09T19:30:00Z", "home_team": "Las Vegas Aces", "away_team": "Phoenix Mercury", "home_team_abbrev": "LV", @@ -72147,8 +68139,7 @@ "canonical_id": "game_mlb_2026_20260509_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:05p", + "game_datetime_utc": "2026-05-09T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -72165,8 +68156,7 @@ "canonical_id": "game_mlb_2026_20260509_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -72183,8 +68173,7 @@ "canonical_id": "game_mlb_2026_20260509_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -72201,8 +68190,7 @@ "canonical_id": "game_mlb_2026_20260509_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -72219,8 +68207,7 @@ "canonical_id": "game_mls_2026_20260509_orl_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "4:30p", + "game_datetime_utc": "2026-05-09T20:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Orlando Orlando City", "home_team_abbrev": "MTL", @@ -72237,8 +68224,7 @@ "canonical_id": "game_mlb_2026_20260509_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-09T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -72255,8 +68241,7 @@ "canonical_id": "game_mlb_2026_20260509_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -72273,8 +68258,7 @@ "canonical_id": "game_nwsl_2026_20260509_bos_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "6:30p", + "game_datetime_utc": "2026-05-09T22:30:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "NJY", @@ -72291,8 +68275,7 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-09T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -72309,8 +68292,7 @@ "canonical_id": "game_mlb_2026_20260509_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -72327,8 +68309,7 @@ "canonical_id": "game_mlb_2026_20260509_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -72345,8 +68326,7 @@ "canonical_id": "game_mlb_2026_20260509_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -72363,8 +68343,7 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:15p", + "game_datetime_utc": "2026-05-09T23:15:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -72381,8 +68360,7 @@ "canonical_id": "game_mlb_2026_20260509_stl_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:15p", + "game_datetime_utc": "2026-05-09T23:15:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72399,8 +68377,7 @@ "canonical_id": "game_mls_2026_20260509_phi_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NE", @@ -72417,8 +68394,7 @@ "canonical_id": "game_mls_2026_20260509_cin_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CLT", @@ -72435,8 +68411,7 @@ "canonical_id": "game_mls_2026_20260509_lag_atl", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "ATL", @@ -72453,8 +68428,7 @@ "canonical_id": "game_nwsl_2026_20260510_den_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "7p", + "game_datetime_utc": "2026-05-10T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "HOU", @@ -72471,8 +68445,7 @@ "canonical_id": "game_mls_2026_20260510_slc_dal", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "DAL", @@ -72489,8 +68462,7 @@ "canonical_id": "game_nwsl_2026_20260510_sdw_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "5:45p", + "game_datetime_utc": "2026-05-10T00:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "ANG", @@ -72507,8 +68479,7 @@ "canonical_id": "game_mls_2026_20260510_dc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "8p", + "game_datetime_utc": "2026-05-10T01:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Washington D.C. United", "home_team_abbrev": "NSH", @@ -72525,8 +68496,7 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-10T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72543,8 +68513,7 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-10T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72561,8 +68530,7 @@ "canonical_id": "game_mls_2026_20260510_stl_col", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "COL", @@ -72579,8 +68547,7 @@ "canonical_id": "game_mls_2026_20260510_sd_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SEA", @@ -72597,8 +68564,7 @@ "canonical_id": "game_mls_2026_20260510_skc_por", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "POR", @@ -72615,8 +68581,7 @@ "canonical_id": "game_mls_2026_20260510_van_sj", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SJ", @@ -72633,8 +68598,7 @@ "canonical_id": "game_mlb_2026_20260510_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "12:10p", + "game_datetime_utc": "2026-05-10T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -72651,8 +68615,7 @@ "canonical_id": "game_nwsl_2026_20260510_chi_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "11:30a", + "game_datetime_utc": "2026-05-10T16:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "KCC", @@ -72669,8 +68632,7 @@ "canonical_id": "game_wnba_2026_20260510_sea_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "1p", + "game_datetime_utc": "2026-05-10T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "Seattle Storm", "home_team_abbrev": "CON", @@ -72687,8 +68649,7 @@ "canonical_id": "game_mlb_2026_20260510_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -72705,8 +68666,7 @@ "canonical_id": "game_mlb_2026_20260510_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -72723,8 +68683,7 @@ "canonical_id": "game_mlb_2026_20260510_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -72741,8 +68700,7 @@ "canonical_id": "game_mlb_2026_20260510_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:37p", + "game_datetime_utc": "2026-05-10T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -72759,8 +68717,7 @@ "canonical_id": "game_mlb_2026_20260510_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:40p", + "game_datetime_utc": "2026-05-10T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -72777,8 +68734,7 @@ "canonical_id": "game_mlb_2026_20260510_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:40p", + "game_datetime_utc": "2026-05-10T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -72795,8 +68751,7 @@ "canonical_id": "game_mlb_2026_20260510_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -72813,8 +68768,7 @@ "canonical_id": "game_mlb_2026_20260510_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -72831,8 +68785,7 @@ "canonical_id": "game_mlb_2026_20260510_chc_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -72849,8 +68802,7 @@ "canonical_id": "game_wnba_2026_20260510_ny_was", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "3p", + "game_datetime_utc": "2026-05-10T19:00:00Z", "home_team": "Washington Mystics", "away_team": "New York Liberty", "home_team_abbrev": "WAS", @@ -72867,8 +68819,7 @@ "canonical_id": "game_nwsl_2026_20260510_uta_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "1p", + "game_datetime_utc": "2026-05-10T20:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "BAY", @@ -72885,8 +68836,7 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:05p", + "game_datetime_utc": "2026-05-10T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72903,8 +68853,7 @@ "canonical_id": "game_mlb_2026_20260510_nym_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -72921,8 +68870,7 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72939,8 +68887,7 @@ "canonical_id": "game_mlb_2026_20260510_stl_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72957,8 +68904,7 @@ "canonical_id": "game_mls_2026_20260510_clb_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "4:30p", + "game_datetime_utc": "2026-05-10T20:30:00Z", "home_team": "New York New York City FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NYC", @@ -72975,8 +68921,7 @@ "canonical_id": "game_wnba_2026_20260510_lv_la", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "3p", + "game_datetime_utc": "2026-05-10T22:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Las Vegas Aces", "home_team_abbrev": "LA", @@ -72993,8 +68938,7 @@ "canonical_id": "game_mls_2026_20260510_aus_min", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Austin Austin FC", "home_team_abbrev": "MIN", @@ -73011,8 +68955,7 @@ "canonical_id": "game_nwsl_2026_20260510_wsh_sea", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "4p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Washington Washington Spirit", "home_team_abbrev": "SEA", @@ -73029,8 +68972,7 @@ "canonical_id": "game_wnba_2026_20260510_atl_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Atlanta Dream", "home_team_abbrev": "MIN", @@ -73047,8 +68989,7 @@ "canonical_id": "game_mlb_2026_20260510_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "6:20p", + "game_datetime_utc": "2026-05-10T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -73065,8 +69006,7 @@ "canonical_id": "game_wnba_2026_20260511_phx_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "5:30p", + "game_datetime_utc": "2026-05-11T00:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Phoenix Mercury", "home_team_abbrev": "GSV", @@ -73083,8 +69023,7 @@ "canonical_id": "game_mls_2026_20260511_hou_lafc", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-11T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "LAFC", @@ -73101,8 +69040,7 @@ "canonical_id": "game_mlb_2026_20260511_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "6:10p", + "game_datetime_utc": "2026-05-11T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73119,8 +69057,7 @@ "canonical_id": "game_mlb_2026_20260511_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "6:35p", + "game_datetime_utc": "2026-05-11T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73137,8 +69074,7 @@ "canonical_id": "game_mlb_2026_20260511_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:07p", + "game_datetime_utc": "2026-05-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73155,8 +69091,7 @@ "canonical_id": "game_mlb_2026_20260512_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:05p", + "game_datetime_utc": "2026-05-12T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73173,8 +69108,7 @@ "canonical_id": "game_mlb_2026_20260512_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73191,8 +69125,7 @@ "canonical_id": "game_mlb_2026_20260512_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -73209,8 +69142,7 @@ "canonical_id": "game_mlb_2026_20260512_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:10p", + "game_datetime_utc": "2026-05-12T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73227,8 +69159,7 @@ "canonical_id": "game_mlb_2026_20260512_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:35p", + "game_datetime_utc": "2026-05-12T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73245,8 +69176,7 @@ "canonical_id": "game_mlb_2026_20260512_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -73263,8 +69193,7 @@ "canonical_id": "game_mlb_2026_20260512_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -73281,8 +69210,7 @@ "canonical_id": "game_mlb_2026_20260512_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:45p", + "game_datetime_utc": "2026-05-12T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -73299,8 +69227,7 @@ "canonical_id": "game_mlb_2026_20260512_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:07p", + "game_datetime_utc": "2026-05-12T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73317,8 +69244,7 @@ "canonical_id": "game_mlb_2026_20260512_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T23:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -73335,8 +69261,7 @@ "canonical_id": "game_mlb_2026_20260512_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:15p", + "game_datetime_utc": "2026-05-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -73353,8 +69278,7 @@ "canonical_id": "game_mlb_2026_20260512_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -73371,8 +69295,7 @@ "canonical_id": "game_mlb_2026_20260512_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -73389,8 +69312,7 @@ "canonical_id": "game_mlb_2026_20260512_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -73407,8 +69329,7 @@ "canonical_id": "game_nwsl_2026_20260513_orl_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-12", - "time": "8p", + "game_datetime_utc": "2026-05-13T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "BOS", @@ -73425,8 +69346,7 @@ "canonical_id": "game_wnba_2026_20260513_atl_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-12", - "time": "7p", + "game_datetime_utc": "2026-05-13T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Atlanta Dream", "home_team_abbrev": "DAL", @@ -73443,8 +69363,7 @@ "canonical_id": "game_mlb_2026_20260513_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:05p", + "game_datetime_utc": "2026-05-13T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73461,8 +69380,7 @@ "canonical_id": "game_mlb_2026_20260513_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73479,8 +69397,7 @@ "canonical_id": "game_mlb_2026_20260513_stl_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -73497,8 +69414,7 @@ "canonical_id": "game_wnba_2026_20260513_min_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-12", - "time": "10p", + "game_datetime_utc": "2026-05-13T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Minnesota Lynx", "home_team_abbrev": "PHX", @@ -73515,8 +69431,7 @@ "canonical_id": "game_mlb_2026_20260513_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -73533,8 +69448,7 @@ "canonical_id": "game_mlb_2026_20260513_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "1:10p", + "game_datetime_utc": "2026-05-13T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73551,8 +69465,7 @@ "canonical_id": "game_mlb_2026_20260513_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:35p", + "game_datetime_utc": "2026-05-13T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73569,8 +69482,7 @@ "canonical_id": "game_mlb_2026_20260513_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -73587,8 +69499,7 @@ "canonical_id": "game_mlb_2026_20260513_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -73605,8 +69516,7 @@ "canonical_id": "game_mlb_2026_20260513_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:45p", + "game_datetime_utc": "2026-05-13T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -73623,8 +69533,7 @@ "canonical_id": "game_mls_2026_20260513_nyc_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-13T23:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New York New York City FC", "home_team_abbrev": "CLT", @@ -73641,8 +69550,7 @@ "canonical_id": "game_mlb_2026_20260513_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:07p", + "game_datetime_utc": "2026-05-13T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73659,8 +69567,7 @@ "canonical_id": "game_mlb_2026_20260513_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T23:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -73677,8 +69584,7 @@ "canonical_id": "game_mlb_2026_20260513_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:15p", + "game_datetime_utc": "2026-05-13T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -73695,8 +69601,7 @@ "canonical_id": "game_mls_2026_20260513_nsh_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Nashville Nashville SC", "home_team_abbrev": "NE", @@ -73713,8 +69618,7 @@ "canonical_id": "game_mls_2026_20260513_clb_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "RB", @@ -73731,8 +69635,7 @@ "canonical_id": "game_mls_2026_20260513_phi_orl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "ORL", @@ -73749,8 +69652,7 @@ "canonical_id": "game_mls_2026_20260513_por_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MTL", @@ -73767,8 +69669,7 @@ "canonical_id": "game_mls_2026_20260513_chi_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "DC", @@ -73785,8 +69686,7 @@ "canonical_id": "game_mls_2026_20260513_mia_cin", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Miami Inter Miami", "home_team_abbrev": "CIN", @@ -73803,8 +69703,7 @@ "canonical_id": "game_mlb_2026_20260513_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -73821,8 +69720,7 @@ "canonical_id": "game_mlb_2026_20260513_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -73839,8 +69737,7 @@ "canonical_id": "game_mlb_2026_20260513_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -73857,8 +69754,7 @@ "canonical_id": "game_wnba_2026_20260514_lv_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "8p", + "game_datetime_utc": "2026-05-14T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Las Vegas Aces", "home_team_abbrev": "CON", @@ -73875,8 +69771,7 @@ "canonical_id": "game_mlb_2026_20260514_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:05p", + "game_datetime_utc": "2026-05-14T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73893,8 +69788,7 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-14T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73911,8 +69805,7 @@ "canonical_id": "game_mls_2026_20260514_van_dal", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "DAL", @@ -73929,8 +69822,7 @@ "canonical_id": "game_mls_2026_20260514_lafc_stl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "STL", @@ -73947,8 +69839,7 @@ "canonical_id": "game_mls_2026_20260514_lag_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SKC", @@ -73965,8 +69856,7 @@ "canonical_id": "game_mls_2026_20260514_col_min", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "MIN", @@ -73983,8 +69873,7 @@ "canonical_id": "game_mls_2026_20260514_hou_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SLC", @@ -74001,8 +69890,7 @@ "canonical_id": "game_mls_2026_20260514_sj_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "6:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SEA", @@ -74019,8 +69907,7 @@ "canonical_id": "game_mls_2026_20260514_aus_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "6:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Austin Austin FC", "home_team_abbrev": "SD", @@ -74037,8 +69924,7 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-14T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -74055,8 +69941,7 @@ "canonical_id": "game_wnba_2026_20260514_ind_la", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-14T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Indiana Fever", "home_team_abbrev": "LA", @@ -74073,8 +69958,7 @@ "canonical_id": "game_wnba_2026_20260514_chi_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-14T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Chicago Sky", "home_team_abbrev": "GSV", @@ -74091,8 +69975,7 @@ "canonical_id": "game_mlb_2026_20260514_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -74109,8 +69992,7 @@ "canonical_id": "game_mlb_2026_20260514_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:35p", + "game_datetime_utc": "2026-05-14T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -74127,8 +70009,7 @@ "canonical_id": "game_mlb_2026_20260514_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -74145,8 +70026,7 @@ "canonical_id": "game_mlb_2026_20260514_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "1:10p", + "game_datetime_utc": "2026-05-14T17:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -74163,8 +70043,7 @@ "canonical_id": "game_mlb_2026_20260514_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -74181,8 +70060,7 @@ "canonical_id": "game_mlb_2026_20260514_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -74199,8 +70077,7 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "1:10p", + "game_datetime_utc": "2026-05-14T18:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -74217,8 +70094,7 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:05p", + "game_datetime_utc": "2026-05-14T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -74235,8 +70111,7 @@ "canonical_id": "game_mlb_2026_20260514_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "6:45p", + "game_datetime_utc": "2026-05-14T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -74253,8 +70128,7 @@ "canonical_id": "game_mlb_2026_20260514_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "7:15p", + "game_datetime_utc": "2026-05-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -74271,8 +70145,7 @@ "canonical_id": "game_mlb_2026_20260514_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "6:40p", + "game_datetime_utc": "2026-05-14T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -74289,8 +70162,7 @@ "canonical_id": "game_wnba_2026_20260515_min_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-14", - "time": "7p", + "game_datetime_utc": "2026-05-15T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Minnesota Lynx", "home_team_abbrev": "DAL", @@ -74307,8 +70179,7 @@ "canonical_id": "game_mlb_2026_20260515_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -74325,8 +70196,7 @@ "canonical_id": "game_mlb_2026_20260515_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -74343,8 +70213,7 @@ "canonical_id": "game_mlb_2026_20260515_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -74361,8 +70230,7 @@ "canonical_id": "game_mlb_2026_20260515_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:45p", + "game_datetime_utc": "2026-05-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -74379,8 +70247,7 @@ "canonical_id": "game_mlb_2026_20260515_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -74397,8 +70264,7 @@ "canonical_id": "game_mlb_2026_20260515_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -74415,8 +70281,7 @@ "canonical_id": "game_mlb_2026_20260515_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -74433,8 +70298,7 @@ "canonical_id": "game_mlb_2026_20260515_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:15p", + "game_datetime_utc": "2026-05-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -74451,8 +70315,7 @@ "canonical_id": "game_wnba_2026_20260515_lv_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "7:30p", + "game_datetime_utc": "2026-05-15T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Las Vegas Aces", "home_team_abbrev": "CON", @@ -74469,8 +70332,7 @@ "canonical_id": "game_wnba_2026_20260515_was_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "7:30p", + "game_datetime_utc": "2026-05-15T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Washington Mystics", "home_team_abbrev": "IND", @@ -74487,8 +70349,7 @@ "canonical_id": "game_mlb_2026_20260515_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -74505,8 +70366,7 @@ "canonical_id": "game_nwsl_2026_20260516_hou_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Houston Houston Dash", "home_team_abbrev": "KCC", @@ -74523,8 +70383,7 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-16T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -74541,8 +70400,7 @@ "canonical_id": "game_mlb_2026_20260516_tex_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -74559,8 +70417,7 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -74577,8 +70434,7 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -74595,8 +70451,7 @@ "canonical_id": "game_mlb_2026_20260516_lad_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:38p", + "game_datetime_utc": "2026-05-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -74613,8 +70468,7 @@ "canonical_id": "game_mlb_2026_20260516_sf_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -74631,8 +70485,7 @@ "canonical_id": "game_mlb_2026_20260516_sd_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -74649,8 +70502,7 @@ "canonical_id": "game_nwsl_2026_20260516_njy_sea", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "SEA", @@ -74667,8 +70519,7 @@ "canonical_id": "game_nwsl_2026_20260516_wsh_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Washington Washington Spirit", "home_team_abbrev": "SDW", @@ -74685,8 +70536,7 @@ "canonical_id": "game_nwsl_2026_20260516_bos_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "BAY", @@ -74703,8 +70553,7 @@ "canonical_id": "game_wnba_2026_20260516_chi_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "10p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Chicago Sky", "home_team_abbrev": "PHX", @@ -74721,8 +70570,7 @@ "canonical_id": "game_mlb_2026_20260516_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:10p", + "game_datetime_utc": "2026-05-16T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -74739,8 +70587,7 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:15p", + "game_datetime_utc": "2026-05-16T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -74757,8 +70604,7 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:10p", + "game_datetime_utc": "2026-05-16T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -74775,8 +70621,7 @@ "canonical_id": "game_mlb_2026_20260516_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:05p", + "game_datetime_utc": "2026-05-16T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -74793,8 +70638,7 @@ "canonical_id": "game_mlb_2026_20260516_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:05p", + "game_datetime_utc": "2026-05-16T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -74811,8 +70655,7 @@ "canonical_id": "game_mlb_2026_20260516_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:10p", + "game_datetime_utc": "2026-05-16T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -74829,8 +70672,7 @@ "canonical_id": "game_mls_2026_20260516_chi_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "4:30p", + "game_datetime_utc": "2026-05-16T20:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "MTL", @@ -74847,8 +70689,7 @@ "canonical_id": "game_mlb_2026_20260516_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -74865,8 +70706,7 @@ "canonical_id": "game_nwsl_2026_20260516_chi_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-05-16", - "time": "6:30p", + "game_datetime_utc": "2026-05-16T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "NCC", @@ -74883,8 +70723,7 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -74901,8 +70740,7 @@ "canonical_id": "game_mlb_2026_20260516_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -74919,8 +70757,7 @@ "canonical_id": "game_mlb_2026_20260516_tex_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -74937,8 +70774,7 @@ "canonical_id": "game_mlb_2026_20260516_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -74955,8 +70791,7 @@ "canonical_id": "game_mlb_2026_20260516_sd_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -74973,8 +70808,7 @@ "canonical_id": "game_mlb_2026_20260516_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -74991,8 +70825,7 @@ "canonical_id": "game_mls_2026_20260516_tor_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CLT", @@ -75009,8 +70842,7 @@ "canonical_id": "game_mls_2026_20260516_stl_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "DC", @@ -75027,8 +70859,7 @@ "canonical_id": "game_mls_2026_20260516_min_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "NE", @@ -75045,8 +70876,7 @@ "canonical_id": "game_mls_2026_20260516_nyc_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "New York New York City FC", "home_team_abbrev": "RB", @@ -75063,8 +70893,7 @@ "canonical_id": "game_mls_2026_20260516_atl_orl", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "ORL", @@ -75081,8 +70910,7 @@ "canonical_id": "game_mls_2026_20260516_clb_phi", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "PHI", @@ -75099,8 +70927,7 @@ "canonical_id": "game_mls_2026_20260517_skc_aus", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "AUS", @@ -75117,8 +70944,7 @@ "canonical_id": "game_mls_2026_20260517_van_hou", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "HOU", @@ -75135,8 +70961,7 @@ "canonical_id": "game_nwsl_2026_20260517_orl_den", "sport": "NWSL", "season": "2026", - "date": "2026-05-16", - "time": "6:45p", + "game_datetime_utc": "2026-05-17T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "DEN", @@ -75153,8 +70978,7 @@ "canonical_id": "game_mls_2026_20260517_lag_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "6p", + "game_datetime_utc": "2026-05-17T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SEA", @@ -75171,8 +70995,7 @@ "canonical_id": "game_mls_2026_20260517_col_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SLC", @@ -75189,8 +71012,7 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:38p", + "game_datetime_utc": "2026-05-17T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -75207,8 +71029,7 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:40p", + "game_datetime_utc": "2026-05-17T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -75225,8 +71046,7 @@ "canonical_id": "game_mls_2026_20260517_dal_sj", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SJ", @@ -75243,8 +71063,7 @@ "canonical_id": "game_mls_2026_20260517_cin_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "SD", @@ -75261,8 +71080,7 @@ "canonical_id": "game_mlb_2026_20260517_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "12:10p", + "game_datetime_utc": "2026-05-17T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -75279,8 +71097,7 @@ "canonical_id": "game_wnba_2026_20260517_chi_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "12:30p", + "game_datetime_utc": "2026-05-17T17:30:00Z", "home_team": "Minnesota Lynx", "away_team": "Chicago Sky", "home_team_abbrev": "MIN", @@ -75297,8 +71114,7 @@ "canonical_id": "game_mlb_2026_20260517_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -75315,8 +71131,7 @@ "canonical_id": "game_mlb_2026_20260517_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -75333,8 +71148,7 @@ "canonical_id": "game_mlb_2026_20260517_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -75351,8 +71165,7 @@ "canonical_id": "game_mlb_2026_20260517_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -75369,8 +71182,7 @@ "canonical_id": "game_mlb_2026_20260517_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -75387,8 +71199,7 @@ "canonical_id": "game_mlb_2026_20260517_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -75405,8 +71216,7 @@ "canonical_id": "game_mlb_2026_20260517_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -75423,8 +71233,7 @@ "canonical_id": "game_mlb_2026_20260517_tex_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -75441,8 +71250,7 @@ "canonical_id": "game_mlb_2026_20260517_mil_min", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -75459,8 +71267,7 @@ "canonical_id": "game_mlb_2026_20260517_kc_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:15p", + "game_datetime_utc": "2026-05-17T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -75477,8 +71284,7 @@ "canonical_id": "game_wnba_2026_20260517_lv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "3p", + "game_datetime_utc": "2026-05-17T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Las Vegas Aces", "home_team_abbrev": "ATL", @@ -75495,8 +71301,7 @@ "canonical_id": "game_mlb_2026_20260517_ari_col", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -75513,8 +71318,7 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:05p", + "game_datetime_utc": "2026-05-17T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -75531,8 +71335,7 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:07p", + "game_datetime_utc": "2026-05-17T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -75549,8 +71352,7 @@ "canonical_id": "game_mls_2026_20260517_por_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MIA", @@ -75567,8 +71369,7 @@ "canonical_id": "game_nwsl_2026_20260517_ang_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-17", - "time": "3p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "POR", @@ -75585,8 +71386,7 @@ "canonical_id": "game_wnba_2026_20260517_sea_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Indiana Fever", "away_team": "Seattle Storm", "home_team_abbrev": "IND", @@ -75603,8 +71403,7 @@ "canonical_id": "game_mlb_2026_20260517_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "4:20p", + "game_datetime_utc": "2026-05-17T23:20:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -75621,8 +71420,7 @@ "canonical_id": "game_mls_2026_20260518_lafc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-17", - "time": "7p", + "game_datetime_utc": "2026-05-18T00:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "NSH", @@ -75639,8 +71437,7 @@ "canonical_id": "game_nwsl_2026_20260518_rgn_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-18T00:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "UTA", @@ -75657,8 +71454,7 @@ "canonical_id": "game_mlb_2026_20260518_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -75675,8 +71471,7 @@ "canonical_id": "game_mlb_2026_20260518_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -75693,8 +71488,7 @@ "canonical_id": "game_mlb_2026_20260518_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -75711,8 +71505,7 @@ "canonical_id": "game_mlb_2026_20260518_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -75729,8 +71522,7 @@ "canonical_id": "game_mlb_2026_20260518_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:45p", + "game_datetime_utc": "2026-05-18T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -75747,8 +71539,7 @@ "canonical_id": "game_mlb_2026_20260518_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "7:05p", + "game_datetime_utc": "2026-05-18T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -75765,8 +71556,7 @@ "canonical_id": "game_mlb_2026_20260518_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -75783,8 +71573,7 @@ "canonical_id": "game_mlb_2026_20260518_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -75801,8 +71590,7 @@ "canonical_id": "game_mlb_2026_20260518_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -75819,8 +71607,7 @@ "canonical_id": "game_wnba_2026_20260519_was_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-18", - "time": "7p", + "game_datetime_utc": "2026-05-19T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Washington Mystics", "home_team_abbrev": "DAL", @@ -75837,8 +71624,7 @@ "canonical_id": "game_mlb_2026_20260519_tex_col", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -75855,8 +71641,7 @@ "canonical_id": "game_mlb_2026_20260519_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:38p", + "game_datetime_utc": "2026-05-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -75873,8 +71658,7 @@ "canonical_id": "game_mlb_2026_20260519_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -75891,8 +71675,7 @@ "canonical_id": "game_mlb_2026_20260519_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -75909,8 +71692,7 @@ "canonical_id": "game_mlb_2026_20260519_chw_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -75927,8 +71709,7 @@ "canonical_id": "game_mlb_2026_20260519_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "4:10p", + "game_datetime_utc": "2026-05-19T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -75945,8 +71726,7 @@ "canonical_id": "game_mlb_2026_20260519_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -75963,8 +71743,7 @@ "canonical_id": "game_mlb_2026_20260519_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -75981,8 +71760,7 @@ "canonical_id": "game_mlb_2026_20260519_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -75999,8 +71777,7 @@ "canonical_id": "game_mlb_2026_20260519_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:45p", + "game_datetime_utc": "2026-05-19T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76017,8 +71794,7 @@ "canonical_id": "game_mlb_2026_20260519_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "7:05p", + "game_datetime_utc": "2026-05-19T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76035,8 +71811,7 @@ "canonical_id": "game_mlb_2026_20260519_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -76053,8 +71828,7 @@ "canonical_id": "game_mlb_2026_20260519_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -76071,8 +71845,7 @@ "canonical_id": "game_mlb_2026_20260519_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -76089,8 +71862,7 @@ "canonical_id": "game_mlb_2026_20260519_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:45p", + "game_datetime_utc": "2026-05-19T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76107,8 +71879,7 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -76125,8 +71896,7 @@ "canonical_id": "game_mlb_2026_20260520_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:38p", + "game_datetime_utc": "2026-05-20T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76143,8 +71913,7 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -76161,8 +71930,7 @@ "canonical_id": "game_mlb_2026_20260520_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -76179,8 +71947,7 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -76197,8 +71964,7 @@ "canonical_id": "game_mlb_2026_20260520_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:05p", + "game_datetime_utc": "2026-05-20T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -76215,8 +71981,7 @@ "canonical_id": "game_mlb_2026_20260520_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -76233,8 +71998,7 @@ "canonical_id": "game_mlb_2026_20260520_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "12:40p", + "game_datetime_utc": "2026-05-20T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -76251,8 +72015,7 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -76269,8 +72032,7 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "12:40p", + "game_datetime_utc": "2026-05-20T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -76287,8 +72049,7 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -76305,8 +72066,7 @@ "canonical_id": "game_mlb_2026_20260520_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -76323,8 +72083,7 @@ "canonical_id": "game_mlb_2026_20260520_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -76341,8 +72100,7 @@ "canonical_id": "game_mlb_2026_20260520_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:45p", + "game_datetime_utc": "2026-05-20T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76359,8 +72117,7 @@ "canonical_id": "game_mlb_2026_20260520_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "7:05p", + "game_datetime_utc": "2026-05-20T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76377,8 +72134,7 @@ "canonical_id": "game_mlb_2026_20260520_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -76395,8 +72151,7 @@ "canonical_id": "game_mlb_2026_20260520_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -76413,8 +72168,7 @@ "canonical_id": "game_mlb_2026_20260520_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:45p", + "game_datetime_utc": "2026-05-20T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76431,8 +72185,7 @@ "canonical_id": "game_nwsl_2026_20260521_sdw_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "HOU", @@ -76449,8 +72202,7 @@ "canonical_id": "game_mlb_2026_20260521_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "5:40p", + "game_datetime_utc": "2026-05-21T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -76467,8 +72219,7 @@ "canonical_id": "game_wnba_2026_20260521_dal_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-20", - "time": "8p", + "game_datetime_utc": "2026-05-21T01:00:00Z", "home_team": "Chicago Sky", "away_team": "Dallas Wings", "home_team_abbrev": "CHI", @@ -76485,8 +72236,7 @@ "canonical_id": "game_mlb_2026_20260521_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:38p", + "game_datetime_utc": "2026-05-21T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76503,8 +72253,7 @@ "canonical_id": "game_nwsl_2026_20260521_kcc_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "ANG", @@ -76521,8 +72270,7 @@ "canonical_id": "game_nwsl_2026_20260521_bay_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "San Francisco Bay FC", "home_team_abbrev": "POR", @@ -76539,8 +72287,7 @@ "canonical_id": "game_wnba_2026_20260521_con_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Connecticut Sun", "home_team_abbrev": "SEA", @@ -76557,8 +72304,7 @@ "canonical_id": "game_mlb_2026_20260521_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "1:10p", + "game_datetime_utc": "2026-05-21T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -76575,8 +72321,7 @@ "canonical_id": "game_mlb_2026_20260521_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "12:15p", + "game_datetime_utc": "2026-05-21T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76593,8 +72338,7 @@ "canonical_id": "game_mlb_2026_20260521_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "4:05p", + "game_datetime_utc": "2026-05-21T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76611,8 +72355,7 @@ "canonical_id": "game_mlb_2026_20260521_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:40p", + "game_datetime_utc": "2026-05-21T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -76629,8 +72372,7 @@ "canonical_id": "game_mlb_2026_20260521_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "7:05p", + "game_datetime_utc": "2026-05-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76647,8 +72389,7 @@ "canonical_id": "game_wnba_2026_20260522_gsv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-21", - "time": "8p", + "game_datetime_utc": "2026-05-22T00:00:00Z", "home_team": "New York Liberty", "away_team": "Golden State Valkyries", "home_team_abbrev": "NY", @@ -76665,8 +72406,7 @@ "canonical_id": "game_mlb_2026_20260522_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:38p", + "game_datetime_utc": "2026-05-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76683,8 +72423,7 @@ "canonical_id": "game_mlb_2026_20260522_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -76701,8 +72440,7 @@ "canonical_id": "game_wnba_2026_20260522_la_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-21", - "time": "10p", + "game_datetime_utc": "2026-05-22T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Los Angeles Sparks", "home_team_abbrev": "PHX", @@ -76719,8 +72457,7 @@ "canonical_id": "game_mlb_2026_20260522_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "1:20p", + "game_datetime_utc": "2026-05-22T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -76737,8 +72474,7 @@ "canonical_id": "game_mlb_2026_20260522_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -76755,8 +72491,7 @@ "canonical_id": "game_mlb_2026_20260522_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -76773,8 +72508,7 @@ "canonical_id": "game_mlb_2026_20260522_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:05p", + "game_datetime_utc": "2026-05-22T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -76791,8 +72525,7 @@ "canonical_id": "game_mlb_2026_20260522_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:05p", + "game_datetime_utc": "2026-05-22T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -76809,8 +72542,7 @@ "canonical_id": "game_mlb_2026_20260522_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:07p", + "game_datetime_utc": "2026-05-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -76827,8 +72559,7 @@ "canonical_id": "game_mlb_2026_20260522_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:10p", + "game_datetime_utc": "2026-05-22T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -76845,8 +72576,7 @@ "canonical_id": "game_mlb_2026_20260522_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:10p", + "game_datetime_utc": "2026-05-22T23:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -76863,8 +72593,7 @@ "canonical_id": "game_mlb_2026_20260522_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:15p", + "game_datetime_utc": "2026-05-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -76881,8 +72610,7 @@ "canonical_id": "game_wnba_2026_20260522_dal_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7:30p", + "game_datetime_utc": "2026-05-22T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Dallas Wings", "home_team_abbrev": "ATL", @@ -76899,8 +72627,7 @@ "canonical_id": "game_wnba_2026_20260522_gsv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7:30p", + "game_datetime_utc": "2026-05-22T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Golden State Valkyries", "home_team_abbrev": "IND", @@ -76917,8 +72644,7 @@ "canonical_id": "game_mlb_2026_20260522_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -76935,8 +72661,7 @@ "canonical_id": "game_mlb_2026_20260522_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -76953,8 +72678,7 @@ "canonical_id": "game_nwsl_2026_20260523_sea_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-22", - "time": "8p", + "game_datetime_utc": "2026-05-23T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "BOS", @@ -76971,8 +72695,7 @@ "canonical_id": "game_mlb_2026_20260523_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:38p", + "game_datetime_utc": "2026-05-23T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -76989,8 +72712,7 @@ "canonical_id": "game_mlb_2026_20260523_oak_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-23T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77007,8 +72729,7 @@ "canonical_id": "game_mlb_2026_20260523_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-23T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77025,8 +72746,7 @@ "canonical_id": "game_wnba_2026_20260523_con_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7p", + "game_datetime_utc": "2026-05-23T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Connecticut Sun", "home_team_abbrev": "SEA", @@ -77043,8 +72763,7 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:15p", + "game_datetime_utc": "2026-05-23T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77061,8 +72780,7 @@ "canonical_id": "game_wnba_2026_20260523_min_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-23", - "time": "12p", + "game_datetime_utc": "2026-05-23T17:00:00Z", "home_team": "Chicago Sky", "away_team": "Minnesota Lynx", "home_team_abbrev": "CHI", @@ -77079,8 +72797,7 @@ "canonical_id": "game_mlb_2026_20260523_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:35p", + "game_datetime_utc": "2026-05-23T17:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -77097,8 +72814,7 @@ "canonical_id": "game_mlb_2026_20260523_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:20p", + "game_datetime_utc": "2026-05-23T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -77115,8 +72831,7 @@ "canonical_id": "game_mls_2026_20260523_aus_stl", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "1:30p", + "game_datetime_utc": "2026-05-23T18:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Austin Austin FC", "home_team_abbrev": "STL", @@ -77133,8 +72848,7 @@ "canonical_id": "game_mlb_2026_20260523_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "3:07p", + "game_datetime_utc": "2026-05-23T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -77151,8 +72865,7 @@ "canonical_id": "game_nwsl_2026_20260523_ncc_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "4p", + "game_datetime_utc": "2026-05-23T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "RGN", @@ -77169,8 +72882,7 @@ "canonical_id": "game_mlb_2026_20260523_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -77187,8 +72899,7 @@ "canonical_id": "game_mlb_2026_20260523_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -77205,8 +72916,7 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77223,8 +72933,7 @@ "canonical_id": "game_mlb_2026_20260523_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -77241,8 +72950,7 @@ "canonical_id": "game_mlb_2026_20260523_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "3:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -77259,8 +72967,7 @@ "canonical_id": "game_mlb_2026_20260523_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -77277,8 +72984,7 @@ "canonical_id": "game_mlb_2026_20260523_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -77295,8 +73001,7 @@ "canonical_id": "game_nwsl_2026_20260523_den_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "4:30p", + "game_datetime_utc": "2026-05-23T22:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "UTA", @@ -77313,8 +73018,7 @@ "canonical_id": "game_mlb_2026_20260523_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:15p", + "game_datetime_utc": "2026-05-23T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -77331,8 +73035,7 @@ "canonical_id": "game_mlb_2026_20260523_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "6:15p", + "game_datetime_utc": "2026-05-23T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -77349,8 +73052,7 @@ "canonical_id": "game_mls_2026_20260523_orl_cin", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Orlando Orlando City", "home_team_abbrev": "CIN", @@ -77367,8 +73069,7 @@ "canonical_id": "game_mls_2026_20260523_mtl_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Montreal CF Montreal", "home_team_abbrev": "DC", @@ -77385,8 +73086,7 @@ "canonical_id": "game_mls_2026_20260523_ne_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New England New England Revolution", "home_team_abbrev": "CLT", @@ -77403,8 +73103,7 @@ "canonical_id": "game_wnba_2026_20260524_la_lv", "sport": "WNBA", "season": "2026", - "date": "2026-05-23", - "time": "5p", + "game_datetime_utc": "2026-05-24T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Los Angeles Sparks", "home_team_abbrev": "LV", @@ -77421,8 +73120,7 @@ "canonical_id": "game_mls_2026_20260524_nyc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New York New York City FC", "home_team_abbrev": "NSH", @@ -77439,8 +73137,7 @@ "canonical_id": "game_mls_2026_20260524_tor_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CHI", @@ -77457,8 +73154,7 @@ "canonical_id": "game_mls_2026_20260524_slc_min", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "MIN", @@ -77475,8 +73171,7 @@ "canonical_id": "game_mls_2026_20260524_ny_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "New York New York Red Bulls", "home_team_abbrev": "SKC", @@ -77493,8 +73188,7 @@ "canonical_id": "game_nwsl_2026_20260524_ang_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "7:45p", + "game_datetime_utc": "2026-05-24T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "HOU", @@ -77511,8 +73205,7 @@ "canonical_id": "game_mls_2026_20260524_van_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "6:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SD", @@ -77529,8 +73222,7 @@ "canonical_id": "game_mls_2026_20260524_dal_col", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Dallas FC Dallas", "home_team_abbrev": "COL", @@ -77547,8 +73239,7 @@ "canonical_id": "game_mls_2026_20260524_sj_por", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "6:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "POR", @@ -77565,8 +73256,7 @@ "canonical_id": "game_mlb_2026_20260524_oak_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "6:40p", + "game_datetime_utc": "2026-05-24T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77583,8 +73273,7 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:05p", + "game_datetime_utc": "2026-05-24T02:05:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -77601,8 +73290,7 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:10p", + "game_datetime_utc": "2026-05-24T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77619,8 +73307,7 @@ "canonical_id": "game_mls_2026_20260524_hou_lag", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "LAG", @@ -77637,8 +73324,7 @@ "canonical_id": "game_mlb_2026_20260524_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "12:10p", + "game_datetime_utc": "2026-05-24T16:10:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -77655,8 +73341,7 @@ "canonical_id": "game_nwsl_2026_20260524_por_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "12p", + "game_datetime_utc": "2026-05-24T17:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Portland Portland Thorns", "home_team_abbrev": "KCC", @@ -77673,8 +73358,7 @@ "canonical_id": "game_mlb_2026_20260524_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -77691,8 +73375,7 @@ "canonical_id": "game_mlb_2026_20260524_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -77709,8 +73392,7 @@ "canonical_id": "game_mlb_2026_20260524_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -77727,8 +73409,7 @@ "canonical_id": "game_mlb_2026_20260524_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -77745,8 +73426,7 @@ "canonical_id": "game_mlb_2026_20260524_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:40p", + "game_datetime_utc": "2026-05-24T17:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -77763,8 +73443,7 @@ "canonical_id": "game_mlb_2026_20260524_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:40p", + "game_datetime_utc": "2026-05-24T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -77781,8 +73460,7 @@ "canonical_id": "game_mlb_2026_20260524_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -77799,8 +73477,7 @@ "canonical_id": "game_mlb_2026_20260524_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -77817,8 +73494,7 @@ "canonical_id": "game_mlb_2026_20260524_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:20p", + "game_datetime_utc": "2026-05-24T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -77835,8 +73511,7 @@ "canonical_id": "game_wnba_2026_20260524_phx_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3p", + "game_datetime_utc": "2026-05-24T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Phoenix Mercury", "home_team_abbrev": "ATL", @@ -77853,8 +73528,7 @@ "canonical_id": "game_wnba_2026_20260524_dal_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3:30p", + "game_datetime_utc": "2026-05-24T19:30:00Z", "home_team": "New York Liberty", "away_team": "Dallas Wings", "home_team_abbrev": "NY", @@ -77871,8 +73545,7 @@ "canonical_id": "game_mlb_2026_20260524_chw_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:05p", + "game_datetime_utc": "2026-05-24T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77889,8 +73562,7 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77907,8 +73579,7 @@ "canonical_id": "game_mlb_2026_20260524_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "4:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -77925,8 +73596,7 @@ "canonical_id": "game_mlb_2026_20260524_oak_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77943,8 +73613,7 @@ "canonical_id": "game_mls_2026_20260524_atl_clb", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "5p", + "game_datetime_utc": "2026-05-24T21:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CLB", @@ -77961,8 +73630,7 @@ "canonical_id": "game_nwsl_2026_20260524_chi_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "2p", + "game_datetime_utc": "2026-05-24T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "BAY", @@ -77979,8 +73647,7 @@ "canonical_id": "game_wnba_2026_20260524_was_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3p", + "game_datetime_utc": "2026-05-24T22:00:00Z", "home_team": "Seattle Storm", "away_team": "Washington Mystics", "home_team_abbrev": "SEA", @@ -77997,8 +73664,7 @@ "canonical_id": "game_mls_2026_20260524_phi_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "7p", + "game_datetime_utc": "2026-05-24T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "MIA", @@ -78015,8 +73681,7 @@ "canonical_id": "game_nwsl_2026_20260524_orl_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "4p", + "game_datetime_utc": "2026-05-24T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "SDW", @@ -78033,8 +73698,7 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "4:20p", + "game_datetime_utc": "2026-05-24T23:20:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -78051,8 +73715,7 @@ "canonical_id": "game_mls_2026_20260525_sea_lafc", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "6p", + "game_datetime_utc": "2026-05-25T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "LAFC", @@ -78069,8 +73732,7 @@ "canonical_id": "game_mlb_2026_20260525_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:35p", + "game_datetime_utc": "2026-05-25T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78087,8 +73749,7 @@ "canonical_id": "game_mlb_2026_20260525_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:10p", + "game_datetime_utc": "2026-05-25T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78105,8 +73766,7 @@ "canonical_id": "game_mlb_2026_20260525_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:10p", + "game_datetime_utc": "2026-05-25T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78123,8 +73783,7 @@ "canonical_id": "game_mlb_2026_20260525_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "2:40p", + "game_datetime_utc": "2026-05-25T19:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78141,8 +73800,7 @@ "canonical_id": "game_mlb_2026_20260525_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "4:10p", + "game_datetime_utc": "2026-05-25T20:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78159,8 +73817,7 @@ "canonical_id": "game_mlb_2026_20260525_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "2:05p", + "game_datetime_utc": "2026-05-25T21:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78177,8 +73834,7 @@ "canonical_id": "game_mlb_2026_20260525_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:10p", + "game_datetime_utc": "2026-05-25T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78195,8 +73851,7 @@ "canonical_id": "game_mlb_2026_20260525_phi_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "3:40p", + "game_datetime_utc": "2026-05-25T22:40:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78213,8 +73868,7 @@ "canonical_id": "game_mlb_2026_20260525_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:40p", + "game_datetime_utc": "2026-05-25T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78231,8 +73885,7 @@ "canonical_id": "game_mlb_2026_20260525_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:05p", + "game_datetime_utc": "2026-05-25T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78249,8 +73902,7 @@ "canonical_id": "game_mlb_2026_20260525_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "7:07p", + "game_datetime_utc": "2026-05-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78267,8 +73919,7 @@ "canonical_id": "game_mlb_2026_20260526_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:10p", + "game_datetime_utc": "2026-05-26T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78285,8 +73936,7 @@ "canonical_id": "game_mlb_2026_20260526_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78303,8 +73953,7 @@ "canonical_id": "game_wnba_2026_20260526_con_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-25", - "time": "7p", + "game_datetime_utc": "2026-05-26T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Connecticut Sun", "home_team_abbrev": "GSV", @@ -78321,8 +73970,7 @@ "canonical_id": "game_mlb_2026_20260526_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:10p", + "game_datetime_utc": "2026-05-26T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78339,8 +73987,7 @@ "canonical_id": "game_mlb_2026_20260526_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:35p", + "game_datetime_utc": "2026-05-26T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78357,8 +74004,7 @@ "canonical_id": "game_mlb_2026_20260526_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78375,8 +74021,7 @@ "canonical_id": "game_mlb_2026_20260526_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78393,8 +74038,7 @@ "canonical_id": "game_mlb_2026_20260526_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:45p", + "game_datetime_utc": "2026-05-26T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78411,8 +74055,7 @@ "canonical_id": "game_mlb_2026_20260526_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:07p", + "game_datetime_utc": "2026-05-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78429,8 +74072,7 @@ "canonical_id": "game_mlb_2026_20260526_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:10p", + "game_datetime_utc": "2026-05-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78447,8 +74089,7 @@ "canonical_id": "game_mlb_2026_20260526_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78465,8 +74106,7 @@ "canonical_id": "game_mlb_2026_20260526_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78483,8 +74123,7 @@ "canonical_id": "game_mlb_2026_20260526_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78501,8 +74140,7 @@ "canonical_id": "game_mlb_2026_20260527_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:05p", + "game_datetime_utc": "2026-05-27T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78519,8 +74157,7 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78537,8 +74174,7 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78555,8 +74191,7 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:45p", + "game_datetime_utc": "2026-05-27T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78573,8 +74208,7 @@ "canonical_id": "game_mlb_2026_20260527_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:10p", + "game_datetime_utc": "2026-05-27T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78591,8 +74225,7 @@ "canonical_id": "game_mlb_2026_20260527_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:07p", + "game_datetime_utc": "2026-05-27T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78609,8 +74242,7 @@ "canonical_id": "game_mlb_2026_20260527_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:10p", + "game_datetime_utc": "2026-05-27T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78627,8 +74259,7 @@ "canonical_id": "game_mlb_2026_20260527_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:40p", + "game_datetime_utc": "2026-05-27T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78645,8 +74276,7 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:05p", + "game_datetime_utc": "2026-05-27T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78663,8 +74293,7 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:45p", + "game_datetime_utc": "2026-05-27T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78681,8 +74310,7 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:10p", + "game_datetime_utc": "2026-05-27T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78699,8 +74327,7 @@ "canonical_id": "game_mlb_2026_20260527_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:35p", + "game_datetime_utc": "2026-05-27T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78717,8 +74344,7 @@ "canonical_id": "game_mlb_2026_20260527_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78735,8 +74361,7 @@ "canonical_id": "game_mlb_2026_20260527_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78753,8 +74378,7 @@ "canonical_id": "game_mlb_2026_20260527_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:45p", + "game_datetime_utc": "2026-05-27T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78771,8 +74395,7 @@ "canonical_id": "game_wnba_2026_20260527_phx_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "7p", + "game_datetime_utc": "2026-05-27T23:00:00Z", "home_team": "New York Liberty", "away_team": "Phoenix Mercury", "home_team_abbrev": "NY", @@ -78789,8 +74412,7 @@ "canonical_id": "game_mlb_2026_20260527_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:10p", + "game_datetime_utc": "2026-05-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78807,8 +74429,7 @@ "canonical_id": "game_mlb_2026_20260527_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78825,8 +74446,7 @@ "canonical_id": "game_mlb_2026_20260527_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78843,8 +74463,7 @@ "canonical_id": "game_mlb_2026_20260528_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:05p", + "game_datetime_utc": "2026-05-28T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78861,8 +74480,7 @@ "canonical_id": "game_wnba_2026_20260528_atl_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "8p", + "game_datetime_utc": "2026-05-28T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Atlanta Dream", "home_team_abbrev": "MIN", @@ -78879,8 +74497,7 @@ "canonical_id": "game_wnba_2026_20260528_was_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "7p", + "game_datetime_utc": "2026-05-28T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Washington Mystics", "home_team_abbrev": "SEA", @@ -78897,8 +74514,7 @@ "canonical_id": "game_mlb_2026_20260528_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:10p", + "game_datetime_utc": "2026-05-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78915,8 +74531,7 @@ "canonical_id": "game_mlb_2026_20260528_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "1:10p", + "game_datetime_utc": "2026-05-28T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78933,8 +74548,7 @@ "canonical_id": "game_mlb_2026_20260528_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "1:10p", + "game_datetime_utc": "2026-05-28T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78951,8 +74565,7 @@ "canonical_id": "game_mlb_2026_20260528_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "4:10p", + "game_datetime_utc": "2026-05-28T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78969,8 +74582,7 @@ "canonical_id": "game_mlb_2026_20260528_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "6:35p", + "game_datetime_utc": "2026-05-28T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -78987,8 +74599,7 @@ "canonical_id": "game_mlb_2026_20260528_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "6:40p", + "game_datetime_utc": "2026-05-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -79005,8 +74616,7 @@ "canonical_id": "game_wnba_2026_20260529_lv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-28", - "time": "7p", + "game_datetime_utc": "2026-05-29T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Las Vegas Aces", "home_team_abbrev": "DAL", @@ -79023,8 +74633,7 @@ "canonical_id": "game_mlb_2026_20260529_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "7:05p", + "game_datetime_utc": "2026-05-29T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -79041,8 +74650,7 @@ "canonical_id": "game_wnba_2026_20260529_ind_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-28", - "time": "7p", + "game_datetime_utc": "2026-05-29T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Indiana Fever", "home_team_abbrev": "GSV", @@ -79059,8 +74667,7 @@ "canonical_id": "game_mlb_2026_20260529_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79077,8 +74684,7 @@ "canonical_id": "game_mlb_2026_20260529_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79095,8 +74701,7 @@ "canonical_id": "game_mlb_2026_20260529_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:45p", + "game_datetime_utc": "2026-05-29T22:45:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79113,8 +74718,7 @@ "canonical_id": "game_nwsl_2026_20260529_bay_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-29", - "time": "7p", + "game_datetime_utc": "2026-05-29T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "San Francisco Bay FC", "home_team_abbrev": "ORL", @@ -79131,8 +74735,7 @@ "canonical_id": "game_mlb_2026_20260529_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:05p", + "game_datetime_utc": "2026-05-29T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79149,8 +74752,7 @@ "canonical_id": "game_mlb_2026_20260529_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79167,8 +74769,7 @@ "canonical_id": "game_mlb_2026_20260529_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79185,8 +74786,7 @@ "canonical_id": "game_mlb_2026_20260529_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79203,8 +74803,7 @@ "canonical_id": "game_wnba_2026_20260529_phx_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "7:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "New York Liberty", "away_team": "Phoenix Mercury", "home_team_abbrev": "NY", @@ -79221,8 +74820,7 @@ "canonical_id": "game_wnba_2026_20260529_min_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "6:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Minnesota Lynx", "home_team_abbrev": "CHI", @@ -79239,8 +74837,7 @@ "canonical_id": "game_wnba_2026_20260529_la_was", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "7:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Los Angeles Sparks", "home_team_abbrev": "WAS", @@ -79257,8 +74854,7 @@ "canonical_id": "game_mlb_2026_20260529_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79275,8 +74871,7 @@ "canonical_id": "game_nwsl_2026_20260530_den_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-29", - "time": "8p", + "game_datetime_utc": "2026-05-30T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "RGN", @@ -79293,8 +74888,7 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:05p", + "game_datetime_utc": "2026-05-30T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79311,8 +74905,7 @@ "canonical_id": "game_mlb_2026_20260530_mil_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T00:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79329,8 +74922,7 @@ "canonical_id": "game_mlb_2026_20260530_chc_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:15p", + "game_datetime_utc": "2026-05-30T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -79347,8 +74939,7 @@ "canonical_id": "game_mlb_2026_20260530_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-30T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79365,8 +74956,7 @@ "canonical_id": "game_mlb_2026_20260530_nyy_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -79383,8 +74973,7 @@ "canonical_id": "game_mlb_2026_20260530_ari_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -79401,8 +74990,7 @@ "canonical_id": "game_mlb_2026_20260530_phi_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -79419,8 +75007,7 @@ "canonical_id": "game_nwsl_2026_20260530_bos_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "12:30p", + "game_datetime_utc": "2026-05-30T17:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "KCC", @@ -79437,8 +75024,7 @@ "canonical_id": "game_mlb_2026_20260530_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "1:10p", + "game_datetime_utc": "2026-05-30T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79455,8 +75041,7 @@ "canonical_id": "game_nwsl_2026_20260530_uta_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "1p", + "game_datetime_utc": "2026-05-30T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Utah Utah Royals", "home_team_abbrev": "POR", @@ -79473,8 +75058,7 @@ "canonical_id": "game_mlb_2026_20260530_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79491,8 +75075,7 @@ "canonical_id": "game_mlb_2026_20260530_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79509,8 +75092,7 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "3:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79527,8 +75109,7 @@ "canonical_id": "game_mlb_2026_20260530_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79545,8 +75126,7 @@ "canonical_id": "game_mlb_2026_20260530_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79563,8 +75143,7 @@ "canonical_id": "game_mlb_2026_20260530_mil_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "3:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79581,8 +75160,7 @@ "canonical_id": "game_mlb_2026_20260530_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79599,8 +75177,7 @@ "canonical_id": "game_mlb_2026_20260530_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79617,8 +75194,7 @@ "canonical_id": "game_wnba_2026_20260530_la_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-30", - "time": "6p", + "game_datetime_utc": "2026-05-30T22:00:00Z", "home_team": "Connecticut Sun", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CON", @@ -79635,8 +75211,7 @@ "canonical_id": "game_nwsl_2026_20260530_sea_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "6:30p", + "game_datetime_utc": "2026-05-30T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "WSH", @@ -79653,8 +75228,7 @@ "canonical_id": "game_mlb_2026_20260530_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:15p", + "game_datetime_utc": "2026-05-30T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79671,8 +75245,7 @@ "canonical_id": "game_mlb_2026_20260530_chc_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "6:15p", + "game_datetime_utc": "2026-05-30T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -79689,8 +75262,7 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79707,8 +75279,7 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:05p", + "game_datetime_utc": "2026-05-31T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -79725,8 +75296,7 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -79743,8 +75313,7 @@ "canonical_id": "game_mlb_2026_20260531_phi_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -79761,8 +75330,7 @@ "canonical_id": "game_mlb_2026_20260531_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "12:10p", + "game_datetime_utc": "2026-05-31T16:10:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79779,8 +75347,7 @@ "canonical_id": "game_nwsl_2026_20260531_sdw_chi", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "12p", + "game_datetime_utc": "2026-05-31T17:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "CHI", @@ -79797,8 +75364,7 @@ "canonical_id": "game_mlb_2026_20260531_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T17:35:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79815,8 +75381,7 @@ "canonical_id": "game_mlb_2026_20260531_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79833,8 +75398,7 @@ "canonical_id": "game_mlb_2026_20260531_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79851,8 +75415,7 @@ "canonical_id": "game_mlb_2026_20260531_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79869,8 +75432,7 @@ "canonical_id": "game_mlb_2026_20260531_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79887,8 +75449,7 @@ "canonical_id": "game_mlb_2026_20260531_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79905,8 +75466,7 @@ "canonical_id": "game_mlb_2026_20260531_mil_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T18:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79923,8 +75483,7 @@ "canonical_id": "game_mlb_2026_20260531_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79941,8 +75500,7 @@ "canonical_id": "game_mlb_2026_20260531_kc_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79959,8 +75517,7 @@ "canonical_id": "game_nwsl_2026_20260531_hou_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "3p", + "game_datetime_utc": "2026-05-31T19:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "NJY", @@ -79977,8 +75534,7 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79995,8 +75551,7 @@ "canonical_id": "game_wnba_2026_20260531_lv_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-31", - "time": "12:30p", + "game_datetime_utc": "2026-05-31T19:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Las Vegas Aces", "home_team_abbrev": "GSV", @@ -80013,8 +75568,7 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:05p", + "game_datetime_utc": "2026-05-31T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -80031,8 +75585,7 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -80049,8 +75602,7 @@ "canonical_id": "game_mlb_2026_20260531_phi_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -80067,8 +75619,7 @@ "canonical_id": "game_nwsl_2026_20260531_ncc_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "4p", + "game_datetime_utc": "2026-05-31T23:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "ANG", @@ -80085,8 +75636,7 @@ "canonical_id": "game_mlb_2026_20260531_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "6:20p", + "game_datetime_utc": "2026-05-31T23:20:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -80103,8 +75653,7 @@ "canonical_id": "game_mlb_2026_20260601_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80121,8 +75670,7 @@ "canonical_id": "game_mlb_2026_20260601_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:45p", + "game_datetime_utc": "2026-06-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80139,8 +75687,7 @@ "canonical_id": "game_mlb_2026_20260601_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "7:10p", + "game_datetime_utc": "2026-06-01T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80157,8 +75704,7 @@ "canonical_id": "game_mlb_2026_20260601_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80175,8 +75721,7 @@ "canonical_id": "game_mlb_2026_20260601_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80193,8 +75738,7 @@ "canonical_id": "game_mlb_2026_20260601_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:45p", + "game_datetime_utc": "2026-06-01T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80211,8 +75755,7 @@ "canonical_id": "game_wnba_2026_20260602_sea_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-01", - "time": "7p", + "game_datetime_utc": "2026-06-02T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Seattle Storm", "home_team_abbrev": "DAL", @@ -80229,8 +75772,7 @@ "canonical_id": "game_mlb_2026_20260602_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:38p", + "game_datetime_utc": "2026-06-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80247,8 +75789,7 @@ "canonical_id": "game_mlb_2026_20260602_nym_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80265,8 +75806,7 @@ "canonical_id": "game_mlb_2026_20260602_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80283,8 +75823,7 @@ "canonical_id": "game_wnba_2026_20260602_min_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-01", - "time": "10p", + "game_datetime_utc": "2026-06-02T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Minnesota Lynx", "home_team_abbrev": "PHX", @@ -80301,8 +75840,7 @@ "canonical_id": "game_mlb_2026_20260602_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80319,8 +75857,7 @@ "canonical_id": "game_mlb_2026_20260602_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80337,8 +75874,7 @@ "canonical_id": "game_mlb_2026_20260602_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80355,8 +75891,7 @@ "canonical_id": "game_mlb_2026_20260602_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80373,8 +75908,7 @@ "canonical_id": "game_mlb_2026_20260602_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:05p", + "game_datetime_utc": "2026-06-02T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80391,8 +75925,7 @@ "canonical_id": "game_mlb_2026_20260602_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:10p", + "game_datetime_utc": "2026-06-02T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80409,8 +75942,7 @@ "canonical_id": "game_mlb_2026_20260602_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:15p", + "game_datetime_utc": "2026-06-02T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -80427,8 +75959,7 @@ "canonical_id": "game_wnba_2026_20260602_con_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "7:30p", + "game_datetime_utc": "2026-06-02T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Connecticut Sun", "home_team_abbrev": "ATL", @@ -80445,8 +75976,7 @@ "canonical_id": "game_mlb_2026_20260602_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80463,8 +75993,7 @@ "canonical_id": "game_mlb_2026_20260602_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80481,8 +76010,7 @@ "canonical_id": "game_mlb_2026_20260602_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80499,8 +76027,7 @@ "canonical_id": "game_wnba_2026_20260603_chi_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "8p", + "game_datetime_utc": "2026-06-03T00:00:00Z", "home_team": "Washington Mystics", "away_team": "Chicago Sky", "home_team_abbrev": "WAS", @@ -80517,8 +76044,7 @@ "canonical_id": "game_mlb_2026_20260603_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:05p", + "game_datetime_utc": "2026-06-03T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -80535,8 +76061,7 @@ "canonical_id": "game_mlb_2026_20260603_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:10p", + "game_datetime_utc": "2026-06-03T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -80553,8 +76078,7 @@ "canonical_id": "game_mlb_2026_20260603_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:38p", + "game_datetime_utc": "2026-06-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80571,8 +76095,7 @@ "canonical_id": "game_mlb_2026_20260603_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80589,8 +76112,7 @@ "canonical_id": "game_mlb_2026_20260603_nym_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80607,8 +76129,7 @@ "canonical_id": "game_wnba_2026_20260603_lv_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "7p", + "game_datetime_utc": "2026-06-03T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Las Vegas Aces", "home_team_abbrev": "LA", @@ -80625,8 +76146,7 @@ "canonical_id": "game_mlb_2026_20260603_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "1:05p", + "game_datetime_utc": "2026-06-03T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80643,8 +76163,7 @@ "canonical_id": "game_mlb_2026_20260603_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "1:10p", + "game_datetime_utc": "2026-06-03T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80661,8 +76180,7 @@ "canonical_id": "game_mlb_2026_20260603_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "12:40p", + "game_datetime_utc": "2026-06-03T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80679,8 +76197,7 @@ "canonical_id": "game_mlb_2026_20260603_nym_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "12:40p", + "game_datetime_utc": "2026-06-03T19:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80697,8 +76214,7 @@ "canonical_id": "game_mlb_2026_20260603_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80715,8 +76231,7 @@ "canonical_id": "game_mlb_2026_20260603_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:45p", + "game_datetime_utc": "2026-06-03T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80733,8 +76248,7 @@ "canonical_id": "game_mlb_2026_20260603_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:05p", + "game_datetime_utc": "2026-06-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80751,8 +76265,7 @@ "canonical_id": "game_mlb_2026_20260603_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:10p", + "game_datetime_utc": "2026-06-03T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80769,8 +76282,7 @@ "canonical_id": "game_mlb_2026_20260603_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:15p", + "game_datetime_utc": "2026-06-03T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -80787,8 +76299,7 @@ "canonical_id": "game_mlb_2026_20260603_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80805,8 +76316,7 @@ "canonical_id": "game_mlb_2026_20260603_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:45p", + "game_datetime_utc": "2026-06-03T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80823,8 +76333,7 @@ "canonical_id": "game_mlb_2026_20260604_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:05p", + "game_datetime_utc": "2026-06-04T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -80841,8 +76350,7 @@ "canonical_id": "game_mlb_2026_20260604_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:10p", + "game_datetime_utc": "2026-06-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -80859,8 +76367,7 @@ "canonical_id": "game_mlb_2026_20260604_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:38p", + "game_datetime_utc": "2026-06-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80877,8 +76384,7 @@ "canonical_id": "game_mlb_2026_20260604_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80895,8 +76401,7 @@ "canonical_id": "game_wnba_2026_20260604_phx_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-03", - "time": "7p", + "game_datetime_utc": "2026-06-04T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Phoenix Mercury", "home_team_abbrev": "SEA", @@ -80913,8 +76418,7 @@ "canonical_id": "game_mlb_2026_20260604_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:05p", + "game_datetime_utc": "2026-06-04T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80931,8 +76435,7 @@ "canonical_id": "game_mlb_2026_20260604_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:35p", + "game_datetime_utc": "2026-06-04T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80949,8 +76452,7 @@ "canonical_id": "game_mlb_2026_20260604_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:35p", + "game_datetime_utc": "2026-06-04T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80967,8 +76469,7 @@ "canonical_id": "game_mlb_2026_20260604_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:10p", + "game_datetime_utc": "2026-06-04T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80985,8 +76486,7 @@ "canonical_id": "game_wnba_2026_20260604_atl_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-04", - "time": "7p", + "game_datetime_utc": "2026-06-04T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Atlanta Dream", "home_team_abbrev": "IND", @@ -81003,8 +76503,7 @@ "canonical_id": "game_mlb_2026_20260604_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:15p", + "game_datetime_utc": "2026-06-04T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -81021,8 +76520,7 @@ "canonical_id": "game_mlb_2026_20260604_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "6:40p", + "game_datetime_utc": "2026-06-04T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81039,8 +76537,7 @@ "canonical_id": "game_mlb_2026_20260605_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:05p", + "game_datetime_utc": "2026-06-05T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -81057,8 +76554,7 @@ "canonical_id": "game_mlb_2026_20260605_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:10p", + "game_datetime_utc": "2026-06-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -81075,8 +76571,7 @@ "canonical_id": "game_wnba_2026_20260605_gsv_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-04", - "time": "8p", + "game_datetime_utc": "2026-06-05T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Golden State Valkyries", "home_team_abbrev": "MIN", @@ -81093,8 +76588,7 @@ "canonical_id": "game_mlb_2026_20260605_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -81111,8 +76605,7 @@ "canonical_id": "game_mlb_2026_20260605_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "1:20p", + "game_datetime_utc": "2026-06-05T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -81129,8 +76622,7 @@ "canonical_id": "game_mlb_2026_20260605_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81147,8 +76639,7 @@ "canonical_id": "game_mlb_2026_20260605_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81165,8 +76656,7 @@ "canonical_id": "game_mlb_2026_20260605_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:05p", + "game_datetime_utc": "2026-06-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81183,8 +76673,7 @@ "canonical_id": "game_mlb_2026_20260605_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:07p", + "game_datetime_utc": "2026-06-05T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81201,8 +76690,7 @@ "canonical_id": "game_mlb_2026_20260605_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-05T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81219,8 +76707,7 @@ "canonical_id": "game_mlb_2026_20260605_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:15p", + "game_datetime_utc": "2026-06-05T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81237,8 +76724,7 @@ "canonical_id": "game_wnba_2026_20260605_con_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-05", - "time": "6:30p", + "game_datetime_utc": "2026-06-05T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Connecticut Sun", "home_team_abbrev": "CHI", @@ -81255,8 +76741,7 @@ "canonical_id": "game_mlb_2026_20260606_cle_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:05p", + "game_datetime_utc": "2026-06-06T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81273,8 +76758,7 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T00:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81291,8 +76775,7 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81309,8 +76792,7 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:15p", + "game_datetime_utc": "2026-06-06T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81327,8 +76809,7 @@ "canonical_id": "game_mlb_2026_20260606_mil_col", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81345,8 +76826,7 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81363,8 +76843,7 @@ "canonical_id": "game_mlb_2026_20260606_nym_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T01:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81381,8 +76860,7 @@ "canonical_id": "game_wnba_2026_20260606_dal_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-05", - "time": "7p", + "game_datetime_utc": "2026-06-06T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Dallas Wings", "home_team_abbrev": "LA", @@ -81399,8 +76877,7 @@ "canonical_id": "game_mlb_2026_20260606_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -81417,8 +76894,7 @@ "canonical_id": "game_wnba_2026_20260606_sea_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "12p", + "game_datetime_utc": "2026-06-06T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Seattle Storm", "home_team_abbrev": "MIN", @@ -81435,8 +76911,7 @@ "canonical_id": "game_mlb_2026_20260606_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81453,8 +76928,7 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81471,8 +76945,7 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:15p", + "game_datetime_utc": "2026-06-06T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81489,8 +76962,7 @@ "canonical_id": "game_mlb_2026_20260606_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:20p", + "game_datetime_utc": "2026-06-06T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -81507,8 +76979,7 @@ "canonical_id": "game_wnba_2026_20260606_gsv_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "12p", + "game_datetime_utc": "2026-06-06T19:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Golden State Valkyries", "home_team_abbrev": "LV", @@ -81525,8 +76996,7 @@ "canonical_id": "game_mlb_2026_20260606_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "3:07p", + "game_datetime_utc": "2026-06-06T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81543,8 +77013,7 @@ "canonical_id": "game_mlb_2026_20260606_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:05p", + "game_datetime_utc": "2026-06-06T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81561,8 +77030,7 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81579,8 +77047,7 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "3:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81597,8 +77064,7 @@ "canonical_id": "game_mlb_2026_20260606_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81615,8 +77081,7 @@ "canonical_id": "game_mlb_2026_20260606_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81633,8 +77098,7 @@ "canonical_id": "game_wnba_2026_20260606_was_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "6p", + "game_datetime_utc": "2026-06-06T22:00:00Z", "home_team": "Atlanta Dream", "away_team": "Washington Mystics", "home_team_abbrev": "ATL", @@ -81651,8 +77115,7 @@ "canonical_id": "game_mlb_2026_20260606_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:35p", + "game_datetime_utc": "2026-06-06T23:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81669,8 +77132,7 @@ "canonical_id": "game_mlb_2026_20260606_cle_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "6:35p", + "game_datetime_utc": "2026-06-06T23:35:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81687,8 +77149,7 @@ "canonical_id": "game_wnba_2026_20260607_ind_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "8p", + "game_datetime_utc": "2026-06-07T00:00:00Z", "home_team": "New York Liberty", "away_team": "Indiana Fever", "home_team_abbrev": "NY", @@ -81705,8 +77166,7 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81723,8 +77183,7 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -81741,8 +77200,7 @@ "canonical_id": "game_mlb_2026_20260607_nym_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T02:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81759,8 +77217,7 @@ "canonical_id": "game_mlb_2026_20260607_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81777,8 +77234,7 @@ "canonical_id": "game_mlb_2026_20260607_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81795,8 +77251,7 @@ "canonical_id": "game_mlb_2026_20260607_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81813,8 +77268,7 @@ "canonical_id": "game_mlb_2026_20260607_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:37p", + "game_datetime_utc": "2026-06-07T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81831,8 +77285,7 @@ "canonical_id": "game_mlb_2026_20260607_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:40p", + "game_datetime_utc": "2026-06-07T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81849,8 +77302,7 @@ "canonical_id": "game_mlb_2026_20260607_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:40p", + "game_datetime_utc": "2026-06-07T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81867,8 +77319,7 @@ "canonical_id": "game_mlb_2026_20260607_oak_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T18:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81885,8 +77336,7 @@ "canonical_id": "game_mlb_2026_20260607_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81903,8 +77353,7 @@ "canonical_id": "game_mlb_2026_20260607_cin_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:15p", + "game_datetime_utc": "2026-06-07T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81921,8 +77370,7 @@ "canonical_id": "game_mlb_2026_20260607_cle_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81939,8 +77387,7 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81957,8 +77404,7 @@ "canonical_id": "game_mlb_2026_20260607_wsn_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "12:10p", + "game_datetime_utc": "2026-06-07T19:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81975,8 +77421,7 @@ "canonical_id": "game_mlb_2026_20260607_nym_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T20:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81993,8 +77438,7 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -82011,8 +77455,7 @@ "canonical_id": "game_mlb_2026_20260608_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "7:20p", + "game_datetime_utc": "2026-06-08T00:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -82029,8 +77472,7 @@ "canonical_id": "game_mlb_2026_20260608_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:35p", + "game_datetime_utc": "2026-06-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82047,8 +77489,7 @@ "canonical_id": "game_mlb_2026_20260608_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82065,8 +77506,7 @@ "canonical_id": "game_mlb_2026_20260608_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-08T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82083,8 +77523,7 @@ "canonical_id": "game_wnba_2026_20260608_ny_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "7p", + "game_datetime_utc": "2026-06-08T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "New York Liberty", "home_team_abbrev": "CON", @@ -82101,8 +77540,7 @@ "canonical_id": "game_mlb_2026_20260608_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "7:07p", + "game_datetime_utc": "2026-06-08T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82119,8 +77557,7 @@ "canonical_id": "game_wnba_2026_20260609_ind_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "8p", + "game_datetime_utc": "2026-06-09T00:00:00Z", "home_team": "Washington Mystics", "away_team": "Indiana Fever", "home_team_abbrev": "WAS", @@ -82137,8 +77574,7 @@ "canonical_id": "game_mlb_2026_20260609_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:38p", + "game_datetime_utc": "2026-06-09T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82155,8 +77591,7 @@ "canonical_id": "game_mlb_2026_20260609_cin_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82173,8 +77608,7 @@ "canonical_id": "game_mlb_2026_20260609_wsn_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:45p", + "game_datetime_utc": "2026-06-09T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82191,8 +77625,7 @@ "canonical_id": "game_wnba_2026_20260609_sea_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "7p", + "game_datetime_utc": "2026-06-09T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Seattle Storm", "home_team_abbrev": "LV", @@ -82209,8 +77642,7 @@ "canonical_id": "game_mlb_2026_20260609_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "7:05p", + "game_datetime_utc": "2026-06-09T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82227,8 +77659,7 @@ "canonical_id": "game_mlb_2026_20260609_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:35p", + "game_datetime_utc": "2026-06-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82245,8 +77676,7 @@ "canonical_id": "game_mlb_2026_20260609_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82263,8 +77693,7 @@ "canonical_id": "game_mlb_2026_20260609_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82281,8 +77710,7 @@ "canonical_id": "game_mlb_2026_20260609_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82299,8 +77727,7 @@ "canonical_id": "game_mlb_2026_20260609_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82317,8 +77744,7 @@ "canonical_id": "game_mlb_2026_20260609_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82335,8 +77761,7 @@ "canonical_id": "game_mlb_2026_20260609_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:07p", + "game_datetime_utc": "2026-06-09T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82353,8 +77778,7 @@ "canonical_id": "game_mlb_2026_20260609_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:10p", + "game_datetime_utc": "2026-06-09T23:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82371,8 +77795,7 @@ "canonical_id": "game_mlb_2026_20260609_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -82389,8 +77812,7 @@ "canonical_id": "game_mlb_2026_20260609_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82407,8 +77829,7 @@ "canonical_id": "game_wnba_2026_20260610_atl_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Atlanta Dream", "home_team_abbrev": "CHI", @@ -82425,8 +77846,7 @@ "canonical_id": "game_wnba_2026_20260610_dal_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Dallas Wings", "home_team_abbrev": "MIN", @@ -82443,8 +77863,7 @@ "canonical_id": "game_mlb_2026_20260610_chc_col", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82461,8 +77880,7 @@ "canonical_id": "game_mlb_2026_20260610_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:38p", + "game_datetime_utc": "2026-06-10T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82479,8 +77897,7 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82497,8 +77914,7 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:45p", + "game_datetime_utc": "2026-06-10T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82515,8 +77931,7 @@ "canonical_id": "game_wnba_2026_20260610_phx_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Phoenix Mercury", "home_team_abbrev": "GSV", @@ -82533,8 +77948,7 @@ "canonical_id": "game_mlb_2026_20260610_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:05p", + "game_datetime_utc": "2026-06-10T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82551,8 +77965,7 @@ "canonical_id": "game_mlb_2026_20260610_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82569,8 +77982,7 @@ "canonical_id": "game_mlb_2026_20260610_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82587,8 +77999,7 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "12:45p", + "game_datetime_utc": "2026-06-10T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82605,8 +78016,7 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82623,8 +78033,7 @@ "canonical_id": "game_mlb_2026_20260610_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:35p", + "game_datetime_utc": "2026-06-10T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82641,8 +78050,7 @@ "canonical_id": "game_mlb_2026_20260610_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82659,8 +78067,7 @@ "canonical_id": "game_mlb_2026_20260610_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82677,8 +78084,7 @@ "canonical_id": "game_mlb_2026_20260610_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82695,8 +78101,7 @@ "canonical_id": "game_mlb_2026_20260610_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "7:07p", + "game_datetime_utc": "2026-06-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82713,8 +78118,7 @@ "canonical_id": "game_mlb_2026_20260610_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "7:10p", + "game_datetime_utc": "2026-06-10T23:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82731,8 +78135,7 @@ "canonical_id": "game_mlb_2026_20260610_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82749,8 +78152,7 @@ "canonical_id": "game_mlb_2026_20260610_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -82767,8 +78169,7 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82785,8 +78186,7 @@ "canonical_id": "game_mlb_2026_20260611_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:05p", + "game_datetime_utc": "2026-06-11T01:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82803,8 +78203,7 @@ "canonical_id": "game_mlb_2026_20260611_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:38p", + "game_datetime_utc": "2026-06-11T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82821,8 +78220,7 @@ "canonical_id": "game_wnba_2026_20260611_la_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-10", - "time": "7p", + "game_datetime_utc": "2026-06-11T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Los Angeles Sparks", "home_team_abbrev": "SEA", @@ -82839,8 +78237,7 @@ "canonical_id": "game_mlb_2026_20260611_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82857,8 +78254,7 @@ "canonical_id": "game_mlb_2026_20260611_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82875,8 +78271,7 @@ "canonical_id": "game_mlb_2026_20260611_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82893,8 +78288,7 @@ "canonical_id": "game_mlb_2026_20260611_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82911,8 +78305,7 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82929,8 +78322,7 @@ "canonical_id": "game_mlb_2026_20260611_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82947,8 +78339,7 @@ "canonical_id": "game_wnba_2026_20260611_chi_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "7p", + "game_datetime_utc": "2026-06-11T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Chicago Sky", "home_team_abbrev": "IND", @@ -82965,8 +78356,7 @@ "canonical_id": "game_mlb_2026_20260611_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "7:05p", + "game_datetime_utc": "2026-06-11T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82983,8 +78373,7 @@ "canonical_id": "game_wnba_2026_20260611_ny_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "7:30p", + "game_datetime_utc": "2026-06-11T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "New York Liberty", "home_team_abbrev": "ATL", @@ -83001,8 +78390,7 @@ "canonical_id": "game_mlb_2026_20260611_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -83019,8 +78407,7 @@ "canonical_id": "game_wnba_2026_20260612_phx_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "8p", + "game_datetime_utc": "2026-06-12T01:00:00Z", "home_team": "Dallas Wings", "away_team": "Phoenix Mercury", "home_team_abbrev": "DAL", @@ -83037,8 +78424,7 @@ "canonical_id": "game_mlb_2026_20260612_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83055,8 +78441,7 @@ "canonical_id": "game_mlb_2026_20260612_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:45p", + "game_datetime_utc": "2026-06-12T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83073,8 +78458,7 @@ "canonical_id": "game_mlb_2026_20260612_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:05p", + "game_datetime_utc": "2026-06-12T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83091,8 +78475,7 @@ "canonical_id": "game_mlb_2026_20260612_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83109,8 +78492,7 @@ "canonical_id": "game_mlb_2026_20260612_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83127,8 +78509,7 @@ "canonical_id": "game_mlb_2026_20260612_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83145,8 +78526,7 @@ "canonical_id": "game_mlb_2026_20260612_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83163,8 +78543,7 @@ "canonical_id": "game_mlb_2026_20260612_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:37p", + "game_datetime_utc": "2026-06-12T23:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83181,8 +78560,7 @@ "canonical_id": "game_mlb_2026_20260612_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83199,8 +78577,7 @@ "canonical_id": "game_mlb_2026_20260612_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83217,8 +78594,7 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-13T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83235,8 +78611,7 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-13T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83253,8 +78628,7 @@ "canonical_id": "game_mlb_2026_20260613_tbr_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:38p", + "game_datetime_utc": "2026-06-13T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83271,8 +78645,7 @@ "canonical_id": "game_wnba_2026_20260613_gsv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-12", - "time": "7p", + "game_datetime_utc": "2026-06-13T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Golden State Valkyries", "home_team_abbrev": "SEA", @@ -83289,8 +78662,7 @@ "canonical_id": "game_mlb_2026_20260613_col_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:05p", + "game_datetime_utc": "2026-06-13T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83307,8 +78679,7 @@ "canonical_id": "game_mlb_2026_20260613_chc_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:15p", + "game_datetime_utc": "2026-06-13T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83325,8 +78696,7 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "1:10p", + "game_datetime_utc": "2026-06-13T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83343,8 +78713,7 @@ "canonical_id": "game_mlb_2026_20260613_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "3:07p", + "game_datetime_utc": "2026-06-13T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83361,8 +78730,7 @@ "canonical_id": "game_mlb_2026_20260613_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83379,8 +78747,7 @@ "canonical_id": "game_mlb_2026_20260613_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83397,8 +78764,7 @@ "canonical_id": "game_mlb_2026_20260613_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83415,8 +78781,7 @@ "canonical_id": "game_mlb_2026_20260613_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83433,8 +78798,7 @@ "canonical_id": "game_mlb_2026_20260613_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83451,8 +78815,7 @@ "canonical_id": "game_mlb_2026_20260613_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83469,8 +78832,7 @@ "canonical_id": "game_mlb_2026_20260613_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83487,8 +78849,7 @@ "canonical_id": "game_mlb_2026_20260613_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "3:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83505,8 +78866,7 @@ "canonical_id": "game_wnba_2026_20260613_ind_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "6p", + "game_datetime_utc": "2026-06-13T22:00:00Z", "home_team": "Connecticut Sun", "away_team": "Indiana Fever", "home_team_abbrev": "CON", @@ -83523,8 +78883,7 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "6:15p", + "game_datetime_utc": "2026-06-13T23:15:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83541,8 +78900,7 @@ "canonical_id": "game_mlb_2026_20260613_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "6:15p", + "game_datetime_utc": "2026-06-13T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83559,8 +78917,7 @@ "canonical_id": "game_wnba_2026_20260614_min_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "5p", + "game_datetime_utc": "2026-06-14T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Minnesota Lynx", "home_team_abbrev": "LV", @@ -83577,8 +78934,7 @@ "canonical_id": "game_wnba_2026_20260614_la_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "10p", + "game_datetime_utc": "2026-06-14T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Los Angeles Sparks", "home_team_abbrev": "PHX", @@ -83595,8 +78951,7 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:05p", + "game_datetime_utc": "2026-06-14T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83613,8 +78968,7 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:05p", + "game_datetime_utc": "2026-06-14T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83631,8 +78985,7 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:07p", + "game_datetime_utc": "2026-06-14T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83649,8 +79002,7 @@ "canonical_id": "game_mlb_2026_20260614_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:10p", + "game_datetime_utc": "2026-06-14T16:10:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83667,8 +79019,7 @@ "canonical_id": "game_mlb_2026_20260614_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:35p", + "game_datetime_utc": "2026-06-14T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83685,8 +79036,7 @@ "canonical_id": "game_mlb_2026_20260614_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:35p", + "game_datetime_utc": "2026-06-14T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83703,8 +79053,7 @@ "canonical_id": "game_mlb_2026_20260614_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:37p", + "game_datetime_utc": "2026-06-14T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83721,8 +79070,7 @@ "canonical_id": "game_mlb_2026_20260614_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83739,8 +79087,7 @@ "canonical_id": "game_mlb_2026_20260614_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83757,8 +79104,7 @@ "canonical_id": "game_mlb_2026_20260614_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83775,8 +79121,7 @@ "canonical_id": "game_mlb_2026_20260614_hou_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83793,8 +79138,7 @@ "canonical_id": "game_mlb_2026_20260614_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83811,8 +79155,7 @@ "canonical_id": "game_mlb_2026_20260614_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83829,8 +79172,7 @@ "canonical_id": "game_mlb_2026_20260614_stl_min", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83847,8 +79189,7 @@ "canonical_id": "game_wnba_2026_20260614_was_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-14", - "time": "3p", + "game_datetime_utc": "2026-06-14T19:00:00Z", "home_team": "New York Liberty", "away_team": "Washington Mystics", "home_team_abbrev": "NY", @@ -83865,8 +79206,7 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:05p", + "game_datetime_utc": "2026-06-14T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83883,8 +79223,7 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:10p", + "game_datetime_utc": "2026-06-14T19:10:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83901,8 +79240,7 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:07p", + "game_datetime_utc": "2026-06-14T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83919,8 +79257,7 @@ "canonical_id": "game_mlb_2026_20260614_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "7:20p", + "game_datetime_utc": "2026-06-14T23:20:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83937,8 +79274,7 @@ "canonical_id": "game_mlb_2026_20260615_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-15T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -83955,8 +79291,7 @@ "canonical_id": "game_mlb_2026_20260615_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:45p", + "game_datetime_utc": "2026-06-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -83973,8 +79308,7 @@ "canonical_id": "game_mlb_2026_20260615_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-15T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -83991,8 +79325,7 @@ "canonical_id": "game_mlb_2026_20260615_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:45p", + "game_datetime_utc": "2026-06-15T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84009,8 +79342,7 @@ "canonical_id": "game_wnba_2026_20260616_lv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-15", - "time": "7p", + "game_datetime_utc": "2026-06-16T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Las Vegas Aces", "home_team_abbrev": "DAL", @@ -84027,8 +79359,7 @@ "canonical_id": "game_mlb_2026_20260616_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84045,8 +79376,7 @@ "canonical_id": "game_mlb_2026_20260616_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84063,8 +79393,7 @@ "canonical_id": "game_mlb_2026_20260616_det_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84081,8 +79410,7 @@ "canonical_id": "game_mlb_2026_20260616_laa_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84099,8 +79427,7 @@ "canonical_id": "game_mlb_2026_20260616_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84117,8 +79444,7 @@ "canonical_id": "game_wnba_2026_20260616_la_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-15", - "time": "7p", + "game_datetime_utc": "2026-06-16T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Los Angeles Sparks", "home_team_abbrev": "GSV", @@ -84135,8 +79461,7 @@ "canonical_id": "game_mlb_2026_20260616_tbr_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84153,8 +79478,7 @@ "canonical_id": "game_mlb_2026_20260616_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -84171,8 +79495,7 @@ "canonical_id": "game_mlb_2026_20260616_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -84189,8 +79512,7 @@ "canonical_id": "game_mlb_2026_20260616_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84207,8 +79529,7 @@ "canonical_id": "game_mlb_2026_20260616_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84225,8 +79546,7 @@ "canonical_id": "game_mlb_2026_20260616_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -84243,8 +79563,7 @@ "canonical_id": "game_mlb_2026_20260616_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:15p", + "game_datetime_utc": "2026-06-16T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84261,8 +79580,7 @@ "canonical_id": "game_mlb_2026_20260616_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84279,8 +79597,7 @@ "canonical_id": "game_mlb_2026_20260616_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84297,8 +79614,7 @@ "canonical_id": "game_mlb_2026_20260617_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84315,8 +79631,7 @@ "canonical_id": "game_mlb_2026_20260617_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84333,8 +79648,7 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84351,8 +79665,7 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84369,8 +79682,7 @@ "canonical_id": "game_mlb_2026_20260617_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84387,8 +79699,7 @@ "canonical_id": "game_mlb_2026_20260617_bal_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84405,8 +79716,7 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-17T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84423,8 +79733,7 @@ "canonical_id": "game_mlb_2026_20260617_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:40p", + "game_datetime_utc": "2026-06-17T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -84441,8 +79750,7 @@ "canonical_id": "game_mlb_2026_20260617_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:05p", + "game_datetime_utc": "2026-06-17T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -84459,8 +79767,7 @@ "canonical_id": "game_mlb_2026_20260617_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:05p", + "game_datetime_utc": "2026-06-17T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -84477,8 +79784,7 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:10p", + "game_datetime_utc": "2026-06-17T18:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84495,8 +79801,7 @@ "canonical_id": "game_mlb_2026_20260617_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:15p", + "game_datetime_utc": "2026-06-17T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84513,8 +79818,7 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:10p", + "game_datetime_utc": "2026-06-17T19:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84531,8 +79835,7 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:40p", + "game_datetime_utc": "2026-06-17T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84549,8 +79852,7 @@ "canonical_id": "game_mlb_2026_20260617_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:45p", + "game_datetime_utc": "2026-06-17T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84567,8 +79869,7 @@ "canonical_id": "game_wnba_2026_20260617_was_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-17T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Washington Mystics", "home_team_abbrev": "CON", @@ -84585,8 +79886,7 @@ "canonical_id": "game_mlb_2026_20260617_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84603,8 +79903,7 @@ "canonical_id": "game_mlb_2026_20260617_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:15p", + "game_datetime_utc": "2026-06-17T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84621,8 +79920,7 @@ "canonical_id": "game_mlb_2026_20260617_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84639,8 +79937,7 @@ "canonical_id": "game_wnba_2026_20260618_ny_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T00:00:00Z", "home_team": "Chicago Sky", "away_team": "New York Liberty", "home_team_abbrev": "CHI", @@ -84657,8 +79954,7 @@ "canonical_id": "game_mlb_2026_20260618_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:05p", + "game_datetime_utc": "2026-06-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84675,8 +79971,7 @@ "canonical_id": "game_mlb_2026_20260618_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84693,8 +79988,7 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84711,8 +80005,7 @@ "canonical_id": "game_wnba_2026_20260618_lv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "10p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Las Vegas Aces", "home_team_abbrev": "PHX", @@ -84729,8 +80022,7 @@ "canonical_id": "game_wnba_2026_20260618_dal_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Dallas Wings", "home_team_abbrev": "GSV", @@ -84747,8 +80039,7 @@ "canonical_id": "game_wnba_2026_20260618_min_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Minnesota Lynx", "home_team_abbrev": "LA", @@ -84765,8 +80056,7 @@ "canonical_id": "game_mlb_2026_20260618_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:35p", + "game_datetime_utc": "2026-06-18T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84783,8 +80073,7 @@ "canonical_id": "game_mlb_2026_20260618_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:10p", + "game_datetime_utc": "2026-06-18T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84801,8 +80090,7 @@ "canonical_id": "game_mlb_2026_20260618_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:35p", + "game_datetime_utc": "2026-06-18T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84819,8 +80107,7 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:10p", + "game_datetime_utc": "2026-06-18T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84837,8 +80124,7 @@ "canonical_id": "game_mlb_2026_20260618_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -84855,8 +80141,7 @@ "canonical_id": "game_mlb_2026_20260618_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "7:05p", + "game_datetime_utc": "2026-06-18T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84873,8 +80158,7 @@ "canonical_id": "game_mlb_2026_20260618_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "7:15p", + "game_datetime_utc": "2026-06-18T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84891,8 +80175,7 @@ "canonical_id": "game_wnba_2026_20260618_atl_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-18", - "time": "7:30p", + "game_datetime_utc": "2026-06-18T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Atlanta Dream", "home_team_abbrev": "IND", @@ -84909,8 +80192,7 @@ "canonical_id": "game_mlb_2026_20260618_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -84927,8 +80209,7 @@ "canonical_id": "game_mlb_2026_20260619_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-19T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -84945,8 +80226,7 @@ "canonical_id": "game_mlb_2026_20260619_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "1:20p", + "game_datetime_utc": "2026-06-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -84963,8 +80243,7 @@ "canonical_id": "game_mlb_2026_20260619_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-19T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -84981,8 +80260,7 @@ "canonical_id": "game_mlb_2026_20260619_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:05p", + "game_datetime_utc": "2026-06-19T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -84999,8 +80277,7 @@ "canonical_id": "game_mlb_2026_20260619_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-19T23:10:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85017,8 +80294,7 @@ "canonical_id": "game_mlb_2026_20260619_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-19T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85035,8 +80311,7 @@ "canonical_id": "game_mlb_2026_20260619_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:15p", + "game_datetime_utc": "2026-06-19T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85053,8 +80328,7 @@ "canonical_id": "game_wnba_2026_20260619_was_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-19", - "time": "7:30p", + "game_datetime_utc": "2026-06-19T23:30:00Z", "home_team": "New York Liberty", "away_team": "Washington Mystics", "home_team_abbrev": "NY", @@ -85071,8 +80345,7 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:05p", + "game_datetime_utc": "2026-06-20T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85089,8 +80362,7 @@ "canonical_id": "game_mlb_2026_20260620_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -85107,8 +80379,7 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T00:10:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85125,8 +80396,7 @@ "canonical_id": "game_mlb_2026_20260620_pit_col", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85143,8 +80413,7 @@ "canonical_id": "game_mlb_2026_20260620_min_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85161,8 +80430,7 @@ "canonical_id": "game_mlb_2026_20260620_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85179,8 +80447,7 @@ "canonical_id": "game_wnba_2026_20260620_min_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-19", - "time": "7p", + "game_datetime_utc": "2026-06-20T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Minnesota Lynx", "home_team_abbrev": "GSV", @@ -85197,8 +80464,7 @@ "canonical_id": "game_mlb_2026_20260620_bal_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85215,8 +80481,7 @@ "canonical_id": "game_wnba_2026_20260620_ind_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "1p", + "game_datetime_utc": "2026-06-20T17:00:00Z", "home_team": "Atlanta Dream", "away_team": "Indiana Fever", "home_team_abbrev": "ATL", @@ -85233,8 +80498,7 @@ "canonical_id": "game_mlb_2026_20260620_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:10p", + "game_datetime_utc": "2026-06-20T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -85251,8 +80515,7 @@ "canonical_id": "game_mlb_2026_20260620_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:35p", + "game_datetime_utc": "2026-06-20T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -85269,8 +80532,7 @@ "canonical_id": "game_mlb_2026_20260620_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:20p", + "game_datetime_utc": "2026-06-20T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -85287,8 +80549,7 @@ "canonical_id": "game_wnba_2026_20260620_sea_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "3p", + "game_datetime_utc": "2026-06-20T19:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Seattle Storm", "home_team_abbrev": "PHX", @@ -85305,8 +80566,7 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "3:05p", + "game_datetime_utc": "2026-06-20T20:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85323,8 +80583,7 @@ "canonical_id": "game_mlb_2026_20260620_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85341,8 +80600,7 @@ "canonical_id": "game_mlb_2026_20260620_bos_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85359,8 +80617,7 @@ "canonical_id": "game_mlb_2026_20260620_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85377,8 +80634,7 @@ "canonical_id": "game_mlb_2026_20260620_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85395,8 +80651,7 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "6:15p", + "game_datetime_utc": "2026-06-20T23:15:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85413,8 +80668,7 @@ "canonical_id": "game_mlb_2026_20260620_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:15p", + "game_datetime_utc": "2026-06-20T23:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -85431,8 +80685,7 @@ "canonical_id": "game_wnba_2026_20260621_chi_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "7p", + "game_datetime_utc": "2026-06-21T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Chicago Sky", "home_team_abbrev": "DAL", @@ -85449,8 +80702,7 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85467,8 +80719,7 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:05p", + "game_datetime_utc": "2026-06-21T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85485,8 +80736,7 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85503,8 +80753,7 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85521,8 +80770,7 @@ "canonical_id": "game_mlb_2026_20260621_bos_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:15p", + "game_datetime_utc": "2026-06-21T02:15:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85539,8 +80787,7 @@ "canonical_id": "game_mlb_2026_20260621_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85557,8 +80804,7 @@ "canonical_id": "game_mlb_2026_20260621_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -85575,8 +80821,7 @@ "canonical_id": "game_mlb_2026_20260621_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85593,8 +80838,7 @@ "canonical_id": "game_mlb_2026_20260621_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85611,8 +80855,7 @@ "canonical_id": "game_mlb_2026_20260621_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -85629,8 +80872,7 @@ "canonical_id": "game_mlb_2026_20260621_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -85647,8 +80889,7 @@ "canonical_id": "game_mlb_2026_20260621_cle_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T18:10:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85665,8 +80906,7 @@ "canonical_id": "game_mlb_2026_20260621_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:20p", + "game_datetime_utc": "2026-06-21T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -85683,8 +80923,7 @@ "canonical_id": "game_mlb_2026_20260621_sd_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T18:35:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85701,8 +80940,7 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85719,8 +80957,7 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "12:10p", + "game_datetime_utc": "2026-06-21T19:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85737,8 +80974,7 @@ "canonical_id": "game_wnba_2026_20260621_gsv_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "1p", + "game_datetime_utc": "2026-06-21T20:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Golden State Valkyries", "home_team_abbrev": "LV", @@ -85755,8 +80991,7 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:05p", + "game_datetime_utc": "2026-06-21T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85773,8 +81008,7 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85791,8 +81025,7 @@ "canonical_id": "game_mlb_2026_20260621_bos_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85809,8 +81042,7 @@ "canonical_id": "game_wnba_2026_20260621_was_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "5p", + "game_datetime_utc": "2026-06-21T22:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Washington Mystics", "home_team_abbrev": "MIN", @@ -85827,8 +81059,7 @@ "canonical_id": "game_mlb_2026_20260621_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "7:20p", + "game_datetime_utc": "2026-06-21T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -85845,8 +81076,7 @@ "canonical_id": "game_wnba_2026_20260622_ny_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "5p", + "game_datetime_utc": "2026-06-22T00:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "New York Liberty", "home_team_abbrev": "LA", @@ -85863,8 +81093,7 @@ "canonical_id": "game_mlb_2026_20260622_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -85881,8 +81110,7 @@ "canonical_id": "game_mlb_2026_20260622_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -85899,8 +81127,7 @@ "canonical_id": "game_mlb_2026_20260622_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -85917,8 +81144,7 @@ "canonical_id": "game_mlb_2026_20260622_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:45p", + "game_datetime_utc": "2026-06-22T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -85935,8 +81161,7 @@ "canonical_id": "game_wnba_2026_20260622_chi_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "7p", + "game_datetime_utc": "2026-06-22T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Chicago Sky", "home_team_abbrev": "CON", @@ -85953,8 +81178,7 @@ "canonical_id": "game_mlb_2026_20260622_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:07p", + "game_datetime_utc": "2026-06-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -85971,8 +81195,7 @@ "canonical_id": "game_mlb_2026_20260622_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-22T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -85989,8 +81212,7 @@ "canonical_id": "game_mlb_2026_20260622_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-22T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86007,8 +81229,7 @@ "canonical_id": "game_mlb_2026_20260622_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86025,8 +81246,7 @@ "canonical_id": "game_mlb_2026_20260622_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86043,8 +81263,7 @@ "canonical_id": "game_mlb_2026_20260622_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:45p", + "game_datetime_utc": "2026-06-22T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86061,8 +81280,7 @@ "canonical_id": "game_wnba_2026_20260623_phx_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "8p", + "game_datetime_utc": "2026-06-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Phoenix Mercury", "home_team_abbrev": "IND", @@ -86079,8 +81297,7 @@ "canonical_id": "game_mlb_2026_20260623_bos_col", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86097,8 +81314,7 @@ "canonical_id": "game_mlb_2026_20260623_bal_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:38p", + "game_datetime_utc": "2026-06-23T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86115,8 +81331,7 @@ "canonical_id": "game_wnba_2026_20260623_dal_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "7p", + "game_datetime_utc": "2026-06-23T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Dallas Wings", "home_team_abbrev": "SEA", @@ -86133,8 +81348,7 @@ "canonical_id": "game_mlb_2026_20260623_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T02:10:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86151,8 +81365,7 @@ "canonical_id": "game_mlb_2026_20260623_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86169,8 +81382,7 @@ "canonical_id": "game_mlb_2026_20260623_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -86187,8 +81399,7 @@ "canonical_id": "game_mlb_2026_20260623_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -86205,8 +81416,7 @@ "canonical_id": "game_mlb_2026_20260623_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86223,8 +81433,7 @@ "canonical_id": "game_mlb_2026_20260623_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-23T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86241,8 +81450,7 @@ "canonical_id": "game_mlb_2026_20260623_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:07p", + "game_datetime_utc": "2026-06-23T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -86259,8 +81467,7 @@ "canonical_id": "game_mlb_2026_20260623_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -86277,8 +81484,7 @@ "canonical_id": "game_mlb_2026_20260623_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86295,8 +81501,7 @@ "canonical_id": "game_mlb_2026_20260623_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86313,8 +81518,7 @@ "canonical_id": "game_mlb_2026_20260623_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86331,8 +81535,7 @@ "canonical_id": "game_mlb_2026_20260623_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-23T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86349,8 +81552,7 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86367,8 +81569,7 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:38p", + "game_datetime_utc": "2026-06-24T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86385,8 +81586,7 @@ "canonical_id": "game_mlb_2026_20260624_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86403,8 +81603,7 @@ "canonical_id": "game_mlb_2026_20260624_oak_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86421,8 +81620,7 @@ "canonical_id": "game_wnba_2026_20260624_ny_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-23", - "time": "7p", + "game_datetime_utc": "2026-06-24T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "New York Liberty", "home_team_abbrev": "LV", @@ -86439,8 +81637,7 @@ "canonical_id": "game_mlb_2026_20260624_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "12:10p", + "game_datetime_utc": "2026-06-24T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -86457,8 +81654,7 @@ "canonical_id": "game_mlb_2026_20260624_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:10p", + "game_datetime_utc": "2026-06-24T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86475,8 +81671,7 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:10p", + "game_datetime_utc": "2026-06-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86493,8 +81688,7 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:07p", + "game_datetime_utc": "2026-06-24T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86511,8 +81705,7 @@ "canonical_id": "game_mlb_2026_20260624_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86529,8 +81722,7 @@ "canonical_id": "game_mlb_2026_20260624_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86547,8 +81739,7 @@ "canonical_id": "game_mlb_2026_20260624_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -86565,8 +81756,7 @@ "canonical_id": "game_mlb_2026_20260624_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86583,8 +81773,7 @@ "canonical_id": "game_wnba_2026_20260624_phx_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7p", + "game_datetime_utc": "2026-06-24T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Phoenix Mercury", "home_team_abbrev": "IND", @@ -86601,8 +81790,7 @@ "canonical_id": "game_mlb_2026_20260624_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:07p", + "game_datetime_utc": "2026-06-24T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -86619,8 +81807,7 @@ "canonical_id": "game_mlb_2026_20260624_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:10p", + "game_datetime_utc": "2026-06-24T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -86637,8 +81824,7 @@ "canonical_id": "game_mlb_2026_20260624_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:10p", + "game_datetime_utc": "2026-06-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86655,8 +81841,7 @@ "canonical_id": "game_wnba_2026_20260624_min_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7:30p", + "game_datetime_utc": "2026-06-24T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Minnesota Lynx", "home_team_abbrev": "WAS", @@ -86673,8 +81858,7 @@ "canonical_id": "game_mlb_2026_20260624_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86691,8 +81875,7 @@ "canonical_id": "game_mlb_2026_20260624_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86709,8 +81892,7 @@ "canonical_id": "game_mlb_2026_20260625_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "5:40p", + "game_datetime_utc": "2026-06-25T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86727,8 +81909,7 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86745,8 +81926,7 @@ "canonical_id": "game_wnba_2026_20260625_atl_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7p", + "game_datetime_utc": "2026-06-25T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Atlanta Dream", "home_team_abbrev": "GSV", @@ -86763,8 +81943,7 @@ "canonical_id": "game_mlb_2026_20260625_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:10p", + "game_datetime_utc": "2026-06-25T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86781,8 +81960,7 @@ "canonical_id": "game_mlb_2026_20260625_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:35p", + "game_datetime_utc": "2026-06-25T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86799,8 +81977,7 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:45p", + "game_datetime_utc": "2026-06-25T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86817,8 +81994,7 @@ "canonical_id": "game_mlb_2026_20260625_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:40p", + "game_datetime_utc": "2026-06-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -86835,8 +82011,7 @@ "canonical_id": "game_mlb_2026_20260625_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86853,8 +82028,7 @@ "canonical_id": "game_mlb_2026_20260625_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:07p", + "game_datetime_utc": "2026-06-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -86871,8 +82045,7 @@ "canonical_id": "game_mlb_2026_20260625_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:10p", + "game_datetime_utc": "2026-06-25T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86889,8 +82062,7 @@ "canonical_id": "game_mlb_2026_20260625_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:10p", + "game_datetime_utc": "2026-06-25T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -86907,8 +82079,7 @@ "canonical_id": "game_mlb_2026_20260625_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86925,8 +82096,7 @@ "canonical_id": "game_wnba_2026_20260626_dal_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-25", - "time": "7p", + "game_datetime_utc": "2026-06-26T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Dallas Wings", "home_team_abbrev": "LV", @@ -86943,8 +82113,7 @@ "canonical_id": "game_wnba_2026_20260626_ny_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-25", - "time": "7p", + "game_datetime_utc": "2026-06-26T02:00:00Z", "home_team": "Seattle Storm", "away_team": "New York Liberty", "home_team_abbrev": "SEA", @@ -86961,8 +82130,7 @@ "canonical_id": "game_mlb_2026_20260626_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -86979,8 +82147,7 @@ "canonical_id": "game_mlb_2026_20260626_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -86997,8 +82164,7 @@ "canonical_id": "game_mlb_2026_20260626_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:05p", + "game_datetime_utc": "2026-06-26T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87015,8 +82181,7 @@ "canonical_id": "game_mlb_2026_20260626_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:07p", + "game_datetime_utc": "2026-06-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87033,8 +82198,7 @@ "canonical_id": "game_mlb_2026_20260626_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87051,8 +82215,7 @@ "canonical_id": "game_mlb_2026_20260626_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87069,8 +82232,7 @@ "canonical_id": "game_mlb_2026_20260626_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87087,8 +82249,7 @@ "canonical_id": "game_mlb_2026_20260626_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87105,8 +82266,7 @@ "canonical_id": "game_wnba_2026_20260626_was_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-26", - "time": "7:30p", + "game_datetime_utc": "2026-06-26T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Washington Mystics", "home_team_abbrev": "CON", @@ -87123,8 +82283,7 @@ "canonical_id": "game_mlb_2026_20260626_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87141,8 +82300,7 @@ "canonical_id": "game_mlb_2026_20260626_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87159,8 +82317,7 @@ "canonical_id": "game_mlb_2026_20260627_col_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-27T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87177,8 +82334,7 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:15p", + "game_datetime_utc": "2026-06-27T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87195,8 +82351,7 @@ "canonical_id": "game_mlb_2026_20260627_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:38p", + "game_datetime_utc": "2026-06-27T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87213,8 +82368,7 @@ "canonical_id": "game_mlb_2026_20260627_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-27T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87231,8 +82385,7 @@ "canonical_id": "game_wnba_2026_20260627_atl_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-26", - "time": "7p", + "game_datetime_utc": "2026-06-27T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Atlanta Dream", "home_team_abbrev": "GSV", @@ -87249,8 +82402,7 @@ "canonical_id": "game_mlb_2026_20260627_atl_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:15p", + "game_datetime_utc": "2026-06-27T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87267,8 +82419,7 @@ "canonical_id": "game_mlb_2026_20260627_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "1:10p", + "game_datetime_utc": "2026-06-27T17:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87285,8 +82436,7 @@ "canonical_id": "game_mlb_2026_20260627_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "1:10p", + "game_datetime_utc": "2026-06-27T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -87303,8 +82453,7 @@ "canonical_id": "game_mlb_2026_20260627_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "3:07p", + "game_datetime_utc": "2026-06-27T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87321,8 +82470,7 @@ "canonical_id": "game_mlb_2026_20260627_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "4:05p", + "game_datetime_utc": "2026-06-27T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -87339,8 +82487,7 @@ "canonical_id": "game_mlb_2026_20260627_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "3:10p", + "game_datetime_utc": "2026-06-27T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87357,8 +82504,7 @@ "canonical_id": "game_mlb_2026_20260627_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "4:10p", + "game_datetime_utc": "2026-06-27T20:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87375,8 +82521,7 @@ "canonical_id": "game_mlb_2026_20260627_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87393,8 +82538,7 @@ "canonical_id": "game_mlb_2026_20260627_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "7:05p", + "game_datetime_utc": "2026-06-27T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87411,8 +82555,7 @@ "canonical_id": "game_mlb_2026_20260627_col_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87429,8 +82572,7 @@ "canonical_id": "game_mlb_2026_20260627_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "7:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87447,8 +82589,7 @@ "canonical_id": "game_mlb_2026_20260627_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87465,8 +82606,7 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:15p", + "game_datetime_utc": "2026-06-27T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87483,8 +82623,7 @@ "canonical_id": "game_wnba_2026_20260628_la_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-27", - "time": "8p", + "game_datetime_utc": "2026-06-28T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Los Angeles Sparks", "home_team_abbrev": "IND", @@ -87501,8 +82640,7 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "5:40p", + "game_datetime_utc": "2026-06-28T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87519,8 +82657,7 @@ "canonical_id": "game_wnba_2026_20260628_atl_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-27", - "time": "6p", + "game_datetime_utc": "2026-06-28T01:00:00Z", "home_team": "Seattle Storm", "away_team": "Atlanta Dream", "home_team_abbrev": "SEA", @@ -87537,8 +82674,7 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:05p", + "game_datetime_utc": "2026-06-28T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87555,8 +82691,7 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:38p", + "game_datetime_utc": "2026-06-28T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87573,8 +82708,7 @@ "canonical_id": "game_mlb_2026_20260628_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:35p", + "game_datetime_utc": "2026-06-28T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87591,8 +82725,7 @@ "canonical_id": "game_mlb_2026_20260628_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:35p", + "game_datetime_utc": "2026-06-28T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -87609,8 +82742,7 @@ "canonical_id": "game_mlb_2026_20260628_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:37p", + "game_datetime_utc": "2026-06-28T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87627,8 +82759,7 @@ "canonical_id": "game_mlb_2026_20260628_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87645,8 +82776,7 @@ "canonical_id": "game_mlb_2026_20260628_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87663,8 +82793,7 @@ "canonical_id": "game_mlb_2026_20260628_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -87681,8 +82810,7 @@ "canonical_id": "game_mlb_2026_20260628_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87699,8 +82827,7 @@ "canonical_id": "game_wnba_2026_20260628_min_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "1p", + "game_datetime_utc": "2026-06-28T18:00:00Z", "home_team": "Dallas Wings", "away_team": "Minnesota Lynx", "home_team_abbrev": "DAL", @@ -87717,8 +82844,7 @@ "canonical_id": "game_mlb_2026_20260628_col_min", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87735,8 +82861,7 @@ "canonical_id": "game_mlb_2026_20260628_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87753,8 +82878,7 @@ "canonical_id": "game_mlb_2026_20260628_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87771,8 +82895,7 @@ "canonical_id": "game_mlb_2026_20260628_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:15p", + "game_datetime_utc": "2026-06-28T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87789,8 +82912,7 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "12:10p", + "game_datetime_utc": "2026-06-28T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87807,8 +82929,7 @@ "canonical_id": "game_wnba_2026_20260628_lv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "3p", + "game_datetime_utc": "2026-06-28T20:00:00Z", "home_team": "Chicago Sky", "away_team": "Las Vegas Aces", "home_team_abbrev": "CHI", @@ -87825,8 +82946,7 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:05p", + "game_datetime_utc": "2026-06-28T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87843,8 +82963,7 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87861,8 +82980,7 @@ "canonical_id": "game_wnba_2026_20260628_ny_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "4p", + "game_datetime_utc": "2026-06-28T23:00:00Z", "home_team": "Golden State Valkyries", "away_team": "New York Liberty", "home_team_abbrev": "GSV", @@ -87879,8 +82997,7 @@ "canonical_id": "game_mlb_2026_20260628_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "7:20p", + "game_datetime_utc": "2026-06-28T23:20:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87897,8 +83014,7 @@ "canonical_id": "game_mlb_2026_20260629_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:35p", + "game_datetime_utc": "2026-06-29T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -87915,8 +83031,7 @@ "canonical_id": "game_mlb_2026_20260629_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-29T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -87933,8 +83048,7 @@ "canonical_id": "game_mlb_2026_20260629_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:05p", + "game_datetime_utc": "2026-06-29T23:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -87951,8 +83065,7 @@ "canonical_id": "game_mlb_2026_20260629_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:07p", + "game_datetime_utc": "2026-06-29T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -87969,8 +83082,7 @@ "canonical_id": "game_mlb_2026_20260629_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-29T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -87987,8 +83099,7 @@ "canonical_id": "game_mlb_2026_20260629_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-29T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88005,8 +83116,7 @@ "canonical_id": "game_mlb_2026_20260629_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-29T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88023,8 +83133,7 @@ "canonical_id": "game_mlb_2026_20260630_sd_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:05p", + "game_datetime_utc": "2026-06-30T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88041,8 +83150,7 @@ "canonical_id": "game_mlb_2026_20260630_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-30T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88059,8 +83167,7 @@ "canonical_id": "game_mlb_2026_20260630_mia_col", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88077,8 +83184,7 @@ "canonical_id": "game_mlb_2026_20260630_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88095,8 +83201,7 @@ "canonical_id": "game_mlb_2026_20260630_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88113,8 +83218,7 @@ "canonical_id": "game_mlb_2026_20260630_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88131,8 +83235,7 @@ "canonical_id": "game_mlb_2026_20260630_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:35p", + "game_datetime_utc": "2026-06-30T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -88149,8 +83252,7 @@ "canonical_id": "game_mlb_2026_20260630_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88167,8 +83269,7 @@ "canonical_id": "game_mlb_2026_20260630_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -88185,8 +83286,7 @@ "canonical_id": "game_mlb_2026_20260630_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:05p", + "game_datetime_utc": "2026-06-30T23:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -88203,8 +83303,7 @@ "canonical_id": "game_mlb_2026_20260630_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:07p", + "game_datetime_utc": "2026-06-30T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -88221,8 +83320,7 @@ "canonical_id": "game_mlb_2026_20260630_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:10p", + "game_datetime_utc": "2026-06-30T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88239,8 +83337,7 @@ "canonical_id": "game_mlb_2026_20260630_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:15p", + "game_datetime_utc": "2026-06-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88257,8 +83354,7 @@ "canonical_id": "game_mlb_2026_20260630_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88275,8 +83371,7 @@ "canonical_id": "game_mlb_2026_20260630_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88293,8 +83388,7 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:05p", + "game_datetime_utc": "2026-07-01T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88311,8 +83405,7 @@ "canonical_id": "game_mlb_2026_20260701_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88329,8 +83422,7 @@ "canonical_id": "game_mlb_2026_20260701_mia_col", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88347,8 +83439,7 @@ "canonical_id": "game_mlb_2026_20260701_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88365,8 +83456,7 @@ "canonical_id": "game_mlb_2026_20260701_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88383,8 +83473,7 @@ "canonical_id": "game_mlb_2026_20260701_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88401,8 +83490,7 @@ "canonical_id": "game_mlb_2026_20260701_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "12:35p", + "game_datetime_utc": "2026-07-01T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -88419,8 +83507,7 @@ "canonical_id": "game_mlb_2026_20260701_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:10p", + "game_datetime_utc": "2026-07-01T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -88437,8 +83524,7 @@ "canonical_id": "game_mlb_2026_20260701_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:35p", + "game_datetime_utc": "2026-07-01T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88455,8 +83541,7 @@ "canonical_id": "game_mlb_2026_20260701_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:35p", + "game_datetime_utc": "2026-07-01T17:35:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -88473,8 +83558,7 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:20p", + "game_datetime_utc": "2026-07-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88491,8 +83575,7 @@ "canonical_id": "game_mlb_2026_20260701_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "3:07p", + "game_datetime_utc": "2026-07-01T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -88509,8 +83592,7 @@ "canonical_id": "game_mlb_2026_20260701_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88527,8 +83609,7 @@ "canonical_id": "game_mlb_2026_20260701_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:15p", + "game_datetime_utc": "2026-07-01T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88545,8 +83626,7 @@ "canonical_id": "game_mlb_2026_20260701_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88563,8 +83643,7 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_1", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:10p", + "game_datetime_utc": "2026-07-02T00:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88581,8 +83660,7 @@ "canonical_id": "game_mlb_2026_20260702_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:10p", + "game_datetime_utc": "2026-07-02T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88599,8 +83677,7 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88617,8 +83694,7 @@ "canonical_id": "game_mlb_2026_20260702_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88635,8 +83711,7 @@ "canonical_id": "game_mlb_2026_20260702_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88653,8 +83728,7 @@ "canonical_id": "game_mlb_2026_20260702_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "12:35p", + "game_datetime_utc": "2026-07-02T16:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88671,8 +83745,7 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_2", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "1:10p", + "game_datetime_utc": "2026-07-02T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88689,8 +83762,7 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "1:10p", + "game_datetime_utc": "2026-07-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88707,8 +83779,7 @@ "canonical_id": "game_mlb_2026_20260702_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -88725,8 +83796,7 @@ "canonical_id": "game_mlb_2026_20260702_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:15p", + "game_datetime_utc": "2026-07-02T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88743,8 +83813,7 @@ "canonical_id": "game_wnba_2026_20260702_atl_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "7:30p", + "game_datetime_utc": "2026-07-02T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Atlanta Dream", "home_team_abbrev": "WAS", @@ -88761,8 +83830,7 @@ "canonical_id": "game_mlb_2026_20260702_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88779,8 +83847,7 @@ "canonical_id": "game_wnba_2026_20260703_dal_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "8p", + "game_datetime_utc": "2026-07-03T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Dallas Wings", "home_team_abbrev": "CON", @@ -88797,8 +83864,7 @@ "canonical_id": "game_mlb_2026_20260703_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:05p", + "game_datetime_utc": "2026-07-03T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -88815,8 +83881,7 @@ "canonical_id": "game_mlb_2026_20260703_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88833,8 +83898,7 @@ "canonical_id": "game_wnba_2026_20260703_sea_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "10p", + "game_datetime_utc": "2026-07-03T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Seattle Storm", "home_team_abbrev": "PHX", @@ -88851,8 +83915,7 @@ "canonical_id": "game_mlb_2026_20260703_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -88869,8 +83932,7 @@ "canonical_id": "game_mlb_2026_20260703_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "1:20p", + "game_datetime_utc": "2026-07-03T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -88887,8 +83949,7 @@ "canonical_id": "game_mlb_2026_20260703_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:45p", + "game_datetime_utc": "2026-07-03T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -88905,8 +83966,7 @@ "canonical_id": "game_mlb_2026_20260703_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:05p", + "game_datetime_utc": "2026-07-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -88923,8 +83983,7 @@ "canonical_id": "game_mlb_2026_20260703_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -88941,8 +84000,7 @@ "canonical_id": "game_mlb_2026_20260703_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -88959,8 +84017,7 @@ "canonical_id": "game_mlb_2026_20260703_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:15p", + "game_datetime_utc": "2026-07-03T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -88977,8 +84034,7 @@ "canonical_id": "game_wnba_2026_20260703_min_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-03", - "time": "7:30p", + "game_datetime_utc": "2026-07-03T23:30:00Z", "home_team": "New York Liberty", "away_team": "Minnesota Lynx", "home_team_abbrev": "NY", @@ -88995,8 +84051,7 @@ "canonical_id": "game_nwsl_2026_20260704_hou_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "8p", + "game_datetime_utc": "2026-07-04T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Houston Houston Dash", "home_team_abbrev": "WSH", @@ -89013,8 +84068,7 @@ "canonical_id": "game_mlb_2026_20260704_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:10p", + "game_datetime_utc": "2026-07-04T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89031,8 +84085,7 @@ "canonical_id": "game_mlb_2026_20260704_tbr_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89049,8 +84102,7 @@ "canonical_id": "game_nwsl_2026_20260704_kcc_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "7:30p", + "game_datetime_utc": "2026-07-04T01:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "DEN", @@ -89067,8 +84119,7 @@ "canonical_id": "game_mlb_2026_20260704_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:38p", + "game_datetime_utc": "2026-07-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89085,8 +84136,7 @@ "canonical_id": "game_mlb_2026_20260704_mia_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:40p", + "game_datetime_utc": "2026-07-04T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89103,8 +84153,7 @@ "canonical_id": "game_mlb_2026_20260704_mil_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:40p", + "game_datetime_utc": "2026-07-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89121,8 +84170,7 @@ "canonical_id": "game_nwsl_2026_20260704_orl_ang", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "7p", + "game_datetime_utc": "2026-07-04T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "ANG", @@ -89139,8 +84187,7 @@ "canonical_id": "game_wnba_2026_20260704_chi_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-03", - "time": "7p", + "game_datetime_utc": "2026-07-04T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Chicago Sky", "home_team_abbrev": "LV", @@ -89157,8 +84204,7 @@ "canonical_id": "game_mlb_2026_20260704_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89175,8 +84221,7 @@ "canonical_id": "game_mlb_2026_20260704_tor_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89193,8 +84238,7 @@ "canonical_id": "game_mlb_2026_20260704_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "11:05a", + "game_datetime_utc": "2026-07-04T15:05:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -89211,8 +84255,7 @@ "canonical_id": "game_wnba_2026_20260704_gsv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-04", - "time": "1p", + "game_datetime_utc": "2026-07-04T17:00:00Z", "home_team": "Atlanta Dream", "away_team": "Golden State Valkyries", "home_team_abbrev": "ATL", @@ -89229,8 +84272,7 @@ "canonical_id": "game_mlb_2026_20260704_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "1:35p", + "game_datetime_utc": "2026-07-04T17:35:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -89247,8 +84289,7 @@ "canonical_id": "game_mlb_2026_20260704_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "3:05p", + "game_datetime_utc": "2026-07-04T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -89265,8 +84306,7 @@ "canonical_id": "game_mlb_2026_20260704_tor_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "1:10p", + "game_datetime_utc": "2026-07-04T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89283,8 +84323,7 @@ "canonical_id": "game_nwsl_2026_20260704_sea_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-04", - "time": "6:30p", + "game_datetime_utc": "2026-07-04T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "NCC", @@ -89301,8 +84340,7 @@ "canonical_id": "game_mlb_2026_20260704_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -89319,8 +84357,7 @@ "canonical_id": "game_mlb_2026_20260704_tbr_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89337,8 +84374,7 @@ "canonical_id": "game_mlb_2026_20260704_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -89355,8 +84391,7 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:08p", + "game_datetime_utc": "2026-07-05T00:08:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -89373,8 +84408,7 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "8:08p", + "game_datetime_utc": "2026-07-05T00:08:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89391,8 +84425,7 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-05T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89409,8 +84442,7 @@ "canonical_id": "game_mlb_2026_20260705_sf_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:10p", + "game_datetime_utc": "2026-07-05T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89427,8 +84459,7 @@ "canonical_id": "game_nwsl_2026_20260705_njy_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-04", - "time": "5:45p", + "game_datetime_utc": "2026-07-05T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "SDW", @@ -89445,8 +84476,7 @@ "canonical_id": "game_mlb_2026_20260705_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:38p", + "game_datetime_utc": "2026-07-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89463,8 +84493,7 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:40p", + "game_datetime_utc": "2026-07-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89481,8 +84510,7 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:40p", + "game_datetime_utc": "2026-07-05T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89499,8 +84527,7 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-05T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89517,8 +84544,7 @@ "canonical_id": "game_nwsl_2026_20260705_bay_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "12p", + "game_datetime_utc": "2026-07-05T16:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "BOS", @@ -89535,8 +84561,7 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "12:30p", + "game_datetime_utc": "2026-07-05T16:30:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89553,8 +84578,7 @@ "canonical_id": "game_mlb_2026_20260705_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1p", + "game_datetime_utc": "2026-07-05T17:00:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -89571,8 +84595,7 @@ "canonical_id": "game_mlb_2026_20260705_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1p", + "game_datetime_utc": "2026-07-05T17:00:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -89589,8 +84612,7 @@ "canonical_id": "game_mlb_2026_20260705_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:35p", + "game_datetime_utc": "2026-07-05T17:35:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -89607,8 +84629,7 @@ "canonical_id": "game_mlb_2026_20260705_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T18:00:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -89625,8 +84646,7 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:30p", + "game_datetime_utc": "2026-07-05T18:30:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -89643,8 +84663,7 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T19:00:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89661,8 +84680,7 @@ "canonical_id": "game_mlb_2026_20260705_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2:30p", + "game_datetime_utc": "2026-07-05T19:30:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -89679,8 +84697,7 @@ "canonical_id": "game_mlb_2026_20260705_tbr_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2:30p", + "game_datetime_utc": "2026-07-05T19:30:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89697,8 +84714,7 @@ "canonical_id": "game_mlb_2026_20260705_sf_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T20:00:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89715,8 +84731,7 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:10p", + "game_datetime_utc": "2026-07-05T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89733,8 +84748,7 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:30p", + "game_datetime_utc": "2026-07-05T20:30:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89751,8 +84765,7 @@ "canonical_id": "game_mlb_2026_20260705_tor_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T21:00:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89769,8 +84782,7 @@ "canonical_id": "game_nwsl_2026_20260705_uta_chi", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T21:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Utah Utah Royals", "home_team_abbrev": "CHI", @@ -89787,8 +84799,7 @@ "canonical_id": "game_nwsl_2026_20260705_rgn_por", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T23:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "POR", @@ -89805,8 +84816,7 @@ "canonical_id": "game_wnba_2026_20260705_ind_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T23:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Indiana Fever", "home_team_abbrev": "LV", @@ -89823,8 +84833,7 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "4:20p", + "game_datetime_utc": "2026-07-05T23:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89841,8 +84850,7 @@ "canonical_id": "game_mlb_2026_20260706_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "6:30p", + "game_datetime_utc": "2026-07-06T01:30:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89859,8 +84867,7 @@ "canonical_id": "game_mlb_2026_20260706_phi_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "1:10p", + "game_datetime_utc": "2026-07-06T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89877,8 +84884,7 @@ "canonical_id": "game_mlb_2026_20260706_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:40p", + "game_datetime_utc": "2026-07-06T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -89895,8 +84901,7 @@ "canonical_id": "game_mlb_2026_20260706_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:05p", + "game_datetime_utc": "2026-07-06T23:05:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -89913,8 +84918,7 @@ "canonical_id": "game_mlb_2026_20260706_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:15p", + "game_datetime_utc": "2026-07-06T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89931,8 +84935,7 @@ "canonical_id": "game_wnba_2026_20260706_gsv_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7:30p", + "game_datetime_utc": "2026-07-06T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Golden State Valkyries", "home_team_abbrev": "WAS", @@ -89949,8 +84952,7 @@ "canonical_id": "game_mlb_2026_20260706_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:45p", + "game_datetime_utc": "2026-07-06T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -89967,8 +84969,7 @@ "canonical_id": "game_wnba_2026_20260707_con_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7p", + "game_datetime_utc": "2026-07-07T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Connecticut Sun", "home_team_abbrev": "MIN", @@ -89985,8 +84986,7 @@ "canonical_id": "game_mlb_2026_20260707_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90003,8 +85003,7 @@ "canonical_id": "game_mlb_2026_20260707_tor_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90021,8 +85020,7 @@ "canonical_id": "game_wnba_2026_20260707_sea_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7p", + "game_datetime_utc": "2026-07-07T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Seattle Storm", "home_team_abbrev": "LA", @@ -90039,8 +85037,7 @@ "canonical_id": "game_mlb_2026_20260707_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90057,8 +85054,7 @@ "canonical_id": "game_mlb_2026_20260707_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:35p", + "game_datetime_utc": "2026-07-07T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90075,8 +85071,7 @@ "canonical_id": "game_mlb_2026_20260707_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90093,8 +85088,7 @@ "canonical_id": "game_mlb_2026_20260707_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90111,8 +85105,7 @@ "canonical_id": "game_mlb_2026_20260707_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90129,8 +85122,7 @@ "canonical_id": "game_mlb_2026_20260707_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90147,8 +85139,7 @@ "canonical_id": "game_mlb_2026_20260707_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -90165,8 +85156,7 @@ "canonical_id": "game_mlb_2026_20260707_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T23:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90183,8 +85173,7 @@ "canonical_id": "game_mlb_2026_20260707_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90201,8 +85190,7 @@ "canonical_id": "game_mlb_2026_20260707_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90219,8 +85207,7 @@ "canonical_id": "game_mlb_2026_20260707_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90237,8 +85224,7 @@ "canonical_id": "game_mlb_2026_20260707_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90255,8 +85241,7 @@ "canonical_id": "game_wnba_2026_20260708_dal_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-07", - "time": "8p", + "game_datetime_utc": "2026-07-08T00:00:00Z", "home_team": "New York Liberty", "away_team": "Dallas Wings", "home_team_abbrev": "NY", @@ -90273,8 +85258,7 @@ "canonical_id": "game_mlb_2026_20260708_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:05p", + "game_datetime_utc": "2026-07-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90291,8 +85275,7 @@ "canonical_id": "game_mlb_2026_20260708_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90309,8 +85292,7 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90327,8 +85309,7 @@ "canonical_id": "game_wnba_2026_20260708_chi_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-07", - "time": "10p", + "game_datetime_utc": "2026-07-08T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Chicago Sky", "home_team_abbrev": "PHX", @@ -90345,8 +85326,7 @@ "canonical_id": "game_mlb_2026_20260708_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90363,8 +85343,7 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "12:45p", + "game_datetime_utc": "2026-07-08T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90381,8 +85360,7 @@ "canonical_id": "game_mlb_2026_20260708_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:35p", + "game_datetime_utc": "2026-07-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90399,8 +85377,7 @@ "canonical_id": "game_mlb_2026_20260708_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90417,8 +85394,7 @@ "canonical_id": "game_mlb_2026_20260708_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90435,8 +85411,7 @@ "canonical_id": "game_mlb_2026_20260708_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90453,8 +85428,7 @@ "canonical_id": "game_mlb_2026_20260708_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90471,8 +85445,7 @@ "canonical_id": "game_mlb_2026_20260708_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -90489,8 +85462,7 @@ "canonical_id": "game_mlb_2026_20260708_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T23:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90507,8 +85479,7 @@ "canonical_id": "game_mlb_2026_20260708_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90525,8 +85496,7 @@ "canonical_id": "game_mlb_2026_20260708_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90543,8 +85513,7 @@ "canonical_id": "game_mlb_2026_20260708_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90561,8 +85530,7 @@ "canonical_id": "game_mlb_2026_20260708_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90579,8 +85547,7 @@ "canonical_id": "game_wnba_2026_20260709_min_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-08", - "time": "8p", + "game_datetime_utc": "2026-07-09T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Minnesota Lynx", "home_team_abbrev": "CON", @@ -90597,8 +85564,7 @@ "canonical_id": "game_mlb_2026_20260709_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:05p", + "game_datetime_utc": "2026-07-09T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90615,8 +85581,7 @@ "canonical_id": "game_wnba_2026_20260709_ind_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-08", - "time": "7p", + "game_datetime_utc": "2026-07-09T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Indiana Fever", "home_team_abbrev": "LA", @@ -90633,8 +85598,7 @@ "canonical_id": "game_mlb_2026_20260709_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90651,8 +85615,7 @@ "canonical_id": "game_mlb_2026_20260709_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T02:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90669,8 +85632,7 @@ "canonical_id": "game_mlb_2026_20260709_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "12:35p", + "game_datetime_utc": "2026-07-09T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90687,8 +85649,7 @@ "canonical_id": "game_mlb_2026_20260709_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90705,8 +85666,7 @@ "canonical_id": "game_mlb_2026_20260709_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T17:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90723,8 +85683,7 @@ "canonical_id": "game_mlb_2026_20260709_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "12:40p", + "game_datetime_utc": "2026-07-09T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90741,8 +85700,7 @@ "canonical_id": "game_mlb_2026_20260709_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90759,8 +85717,7 @@ "canonical_id": "game_mlb_2026_20260709_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:35p", + "game_datetime_utc": "2026-07-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90777,8 +85734,7 @@ "canonical_id": "game_mlb_2026_20260709_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90795,8 +85751,7 @@ "canonical_id": "game_mlb_2026_20260709_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-09T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90813,8 +85768,7 @@ "canonical_id": "game_mlb_2026_20260709_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90831,8 +85785,7 @@ "canonical_id": "game_mlb_2026_20260709_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:45p", + "game_datetime_utc": "2026-07-09T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90849,8 +85802,7 @@ "canonical_id": "game_wnba_2026_20260710_sea_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-09", - "time": "8p", + "game_datetime_utc": "2026-07-10T00:00:00Z", "home_team": "Atlanta Dream", "away_team": "Seattle Storm", "home_team_abbrev": "ATL", @@ -90867,8 +85819,7 @@ "canonical_id": "game_mlb_2026_20260710_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "7:05p", + "game_datetime_utc": "2026-07-10T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90885,8 +85836,7 @@ "canonical_id": "game_mlb_2026_20260710_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90903,8 +85853,7 @@ "canonical_id": "game_mlb_2026_20260710_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:45p", + "game_datetime_utc": "2026-07-10T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -90921,8 +85870,7 @@ "canonical_id": "game_wnba_2026_20260710_ind_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-09", - "time": "10p", + "game_datetime_utc": "2026-07-10T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Indiana Fever", "home_team_abbrev": "PHX", @@ -90939,8 +85887,7 @@ "canonical_id": "game_mlb_2026_20260710_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -90957,8 +85904,7 @@ "canonical_id": "game_mlb_2026_20260710_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -90975,8 +85921,7 @@ "canonical_id": "game_mlb_2026_20260710_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:45p", + "game_datetime_utc": "2026-07-10T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -90993,8 +85938,7 @@ "canonical_id": "game_mlb_2026_20260710_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:05p", + "game_datetime_utc": "2026-07-10T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91011,8 +85955,7 @@ "canonical_id": "game_mlb_2026_20260710_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91029,8 +85972,7 @@ "canonical_id": "game_mlb_2026_20260710_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91047,8 +85989,7 @@ "canonical_id": "game_mlb_2026_20260710_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91065,8 +86006,7 @@ "canonical_id": "game_mlb_2026_20260710_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91083,8 +86023,7 @@ "canonical_id": "game_wnba_2026_20260710_gsv_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-10", - "time": "7:30p", + "game_datetime_utc": "2026-07-10T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Golden State Valkyries", "home_team_abbrev": "CON", @@ -91101,8 +86040,7 @@ "canonical_id": "game_mlb_2026_20260710_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91119,8 +86057,7 @@ "canonical_id": "game_nwsl_2026_20260711_chi_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "BOS", @@ -91137,8 +86074,7 @@ "canonical_id": "game_nwsl_2026_20260711_bay_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "San Francisco Bay FC", "home_team_abbrev": "RGN", @@ -91155,8 +86091,7 @@ "canonical_id": "game_nwsl_2026_20260711_kcc_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "ORL", @@ -91173,8 +86108,7 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:05p", + "game_datetime_utc": "2026-07-11T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91191,8 +86125,7 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91209,8 +86142,7 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:15p", + "game_datetime_utc": "2026-07-11T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91227,8 +86159,7 @@ "canonical_id": "game_mlb_2026_20260711_tor_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91245,8 +86176,7 @@ "canonical_id": "game_nwsl_2026_20260711_njy_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "UTA", @@ -91263,8 +86193,7 @@ "canonical_id": "game_wnba_2026_20260711_chi_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-10", - "time": "7p", + "game_datetime_utc": "2026-07-11T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Chicago Sky", "home_team_abbrev": "LA", @@ -91281,8 +86210,7 @@ "canonical_id": "game_mlb_2026_20260711_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91299,8 +86227,7 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:15p", + "game_datetime_utc": "2026-07-11T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91317,8 +86244,7 @@ "canonical_id": "game_wnba_2026_20260711_ny_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-11", - "time": "12p", + "game_datetime_utc": "2026-07-11T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "New York Liberty", "home_team_abbrev": "MIN", @@ -91335,8 +86261,7 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "1:10p", + "game_datetime_utc": "2026-07-11T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91353,8 +86278,7 @@ "canonical_id": "game_wnba_2026_20260711_phx_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-11", - "time": "1p", + "game_datetime_utc": "2026-07-11T20:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Phoenix Mercury", "home_team_abbrev": "LV", @@ -91371,8 +86295,7 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "1:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91389,8 +86312,7 @@ "canonical_id": "game_mlb_2026_20260711_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -91407,8 +86329,7 @@ "canonical_id": "game_mlb_2026_20260711_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -91425,8 +86346,7 @@ "canonical_id": "game_mlb_2026_20260711_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91443,8 +86363,7 @@ "canonical_id": "game_mlb_2026_20260711_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91461,8 +86380,7 @@ "canonical_id": "game_mlb_2026_20260711_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91479,8 +86397,7 @@ "canonical_id": "game_mlb_2026_20260711_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "3:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91497,8 +86414,7 @@ "canonical_id": "game_mlb_2026_20260711_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:10p", + "game_datetime_utc": "2026-07-11T22:10:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -91515,8 +86431,7 @@ "canonical_id": "game_nwsl_2026_20260711_wsh_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-11", - "time": "6:30p", + "game_datetime_utc": "2026-07-11T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Washington Washington Spirit", "home_team_abbrev": "NCC", @@ -91533,8 +86448,7 @@ "canonical_id": "game_mlb_2026_20260711_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "7:05p", + "game_datetime_utc": "2026-07-11T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91551,8 +86465,7 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:05p", + "game_datetime_utc": "2026-07-11T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91569,8 +86482,7 @@ "canonical_id": "game_mlb_2026_20260711_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91587,8 +86499,7 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:15p", + "game_datetime_utc": "2026-07-11T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91605,8 +86516,7 @@ "canonical_id": "game_mlb_2026_20260712_tor_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "5:40p", + "game_datetime_utc": "2026-07-12T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91623,8 +86533,7 @@ "canonical_id": "game_nwsl_2026_20260712_ang_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-11", - "time": "5:45p", + "game_datetime_utc": "2026-07-12T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "SDW", @@ -91641,8 +86550,7 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:10p", + "game_datetime_utc": "2026-07-12T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91659,8 +86567,7 @@ "canonical_id": "game_mlb_2026_20260712_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "12:10p", + "game_datetime_utc": "2026-07-12T16:10:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -91677,8 +86584,7 @@ "canonical_id": "game_mlb_2026_20260712_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91695,8 +86601,7 @@ "canonical_id": "game_mlb_2026_20260712_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T17:35:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -91713,8 +86618,7 @@ "canonical_id": "game_mlb_2026_20260712_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91731,8 +86635,7 @@ "canonical_id": "game_mlb_2026_20260712_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91749,8 +86652,7 @@ "canonical_id": "game_mlb_2026_20260712_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -91767,8 +86669,7 @@ "canonical_id": "game_mlb_2026_20260712_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91785,8 +86686,7 @@ "canonical_id": "game_mlb_2026_20260712_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91803,8 +86703,7 @@ "canonical_id": "game_mlb_2026_20260712_laa_min", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91821,8 +86720,7 @@ "canonical_id": "game_mlb_2026_20260712_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91839,8 +86737,7 @@ "canonical_id": "game_mlb_2026_20260712_atl_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:15p", + "game_datetime_utc": "2026-07-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91857,8 +86754,7 @@ "canonical_id": "game_mlb_2026_20260712_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91875,8 +86771,7 @@ "canonical_id": "game_wnba_2026_20260712_sea_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "3p", + "game_datetime_utc": "2026-07-12T19:00:00Z", "home_team": "Washington Mystics", "away_team": "Seattle Storm", "home_team_abbrev": "WAS", @@ -91893,8 +86788,7 @@ "canonical_id": "game_nwsl_2026_20260712_por_sea", "sport": "NWSL", "season": "2026", - "date": "2026-07-12", - "time": "1p", + "game_datetime_utc": "2026-07-12T20:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Portland Portland Thorns", "home_team_abbrev": "SEA", @@ -91911,8 +86805,7 @@ "canonical_id": "game_mlb_2026_20260712_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:05p", + "game_datetime_utc": "2026-07-12T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91929,8 +86822,7 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91947,8 +86839,7 @@ "canonical_id": "game_mlb_2026_20260712_tor_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91965,8 +86856,7 @@ "canonical_id": "game_nwsl_2026_20260712_hou_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-12", - "time": "5p", + "game_datetime_utc": "2026-07-12T23:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "DEN", @@ -91983,8 +86873,7 @@ "canonical_id": "game_wnba_2026_20260712_chi_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "6p", + "game_datetime_utc": "2026-07-12T23:00:00Z", "home_team": "Dallas Wings", "away_team": "Chicago Sky", "home_team_abbrev": "DAL", @@ -92001,8 +86890,7 @@ "canonical_id": "game_wnba_2026_20260713_ind_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "6p", + "game_datetime_utc": "2026-07-13T01:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Indiana Fever", "home_team_abbrev": "LV", @@ -92019,8 +86907,7 @@ "canonical_id": "game_wnba_2026_20260713_la_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-13", - "time": "7p", + "game_datetime_utc": "2026-07-13T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Los Angeles Sparks", "home_team_abbrev": "ATL", @@ -92037,8 +86924,7 @@ "canonical_id": "game_wnba_2026_20260714_phx_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-13", - "time": "8p", + "game_datetime_utc": "2026-07-14T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Phoenix Mercury", "home_team_abbrev": "MIN", @@ -92055,8 +86941,7 @@ "canonical_id": "game_wnba_2026_20260715_sea_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "11a", + "game_datetime_utc": "2026-07-15T16:00:00Z", "home_team": "Chicago Sky", "away_team": "Seattle Storm", "home_team_abbrev": "CHI", @@ -92073,8 +86958,7 @@ "canonical_id": "game_wnba_2026_20260715_la_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "12p", + "game_datetime_utc": "2026-07-15T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Los Angeles Sparks", "home_team_abbrev": "MIN", @@ -92091,8 +86975,7 @@ "canonical_id": "game_nwsl_2026_20260715_bos_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-15", - "time": "7p", + "game_datetime_utc": "2026-07-15T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "ORL", @@ -92109,8 +86992,7 @@ "canonical_id": "game_nwsl_2026_20260715_wsh_njy", "sport": "NWSL", "season": "2026", - "date": "2026-07-15", - "time": "7p", + "game_datetime_utc": "2026-07-15T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "NJY", @@ -92127,8 +87009,7 @@ "canonical_id": "game_wnba_2026_20260716_gsv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "8p", + "game_datetime_utc": "2026-07-16T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Golden State Valkyries", "home_team_abbrev": "IND", @@ -92145,8 +87026,7 @@ "canonical_id": "game_mlb_2026_20260716_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-16", - "time": "7:10p", + "game_datetime_utc": "2026-07-16T23:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -92163,8 +87043,7 @@ "canonical_id": "game_mls_2026_20260716_tor_mtl", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-16T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Toronto Toronto FC", "home_team_abbrev": "MTL", @@ -92181,8 +87060,7 @@ "canonical_id": "game_mls_2026_20260717_skc_stl", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "STL", @@ -92199,8 +87077,7 @@ "canonical_id": "game_mls_2026_20260717_van_chi", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "CHI", @@ -92217,8 +87094,7 @@ "canonical_id": "game_wnba_2026_20260717_ny_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-16", - "time": "8p", + "game_datetime_utc": "2026-07-17T01:00:00Z", "home_team": "Dallas Wings", "away_team": "New York Liberty", "home_team_abbrev": "DAL", @@ -92235,8 +87111,7 @@ "canonical_id": "game_mls_2026_20260717_por_sea", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SEA", @@ -92253,8 +87128,7 @@ "canonical_id": "game_mlb_2026_20260717_lad_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:05p", + "game_datetime_utc": "2026-07-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -92271,8 +87145,7 @@ "canonical_id": "game_mlb_2026_20260717_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:07p", + "game_datetime_utc": "2026-07-17T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -92289,8 +87162,7 @@ "canonical_id": "game_mlb_2026_20260717_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-17T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -92307,8 +87179,7 @@ "canonical_id": "game_mlb_2026_20260717_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -92325,8 +87196,7 @@ "canonical_id": "game_mlb_2026_20260717_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:15p", + "game_datetime_utc": "2026-07-17T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -92343,8 +87213,7 @@ "canonical_id": "game_wnba_2026_20260717_la_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "6:30p", + "game_datetime_utc": "2026-07-17T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CHI", @@ -92361,8 +87230,7 @@ "canonical_id": "game_wnba_2026_20260717_sea_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Seattle Storm", "home_team_abbrev": "IND", @@ -92379,8 +87247,7 @@ "canonical_id": "game_mlb_2026_20260717_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-17T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -92397,8 +87264,7 @@ "canonical_id": "game_mls_2026_20260718_atl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-07-17", - "time": "7p", + "game_datetime_utc": "2026-07-18T00:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NSH", @@ -92415,8 +87281,7 @@ "canonical_id": "game_nwsl_2026_20260718_sdw_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-07-17", - "time": "7p", + "game_datetime_utc": "2026-07-18T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "KCC", @@ -92433,8 +87298,7 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:05p", + "game_datetime_utc": "2026-07-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -92451,8 +87315,7 @@ "canonical_id": "game_mlb_2026_20260718_sd_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -92469,8 +87332,7 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T00:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -92487,8 +87349,7 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -92505,8 +87366,7 @@ "canonical_id": "game_mlb_2026_20260718_det_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:38p", + "game_datetime_utc": "2026-07-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -92523,8 +87383,7 @@ "canonical_id": "game_mlb_2026_20260718_stl_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -92541,8 +87400,7 @@ "canonical_id": "game_mlb_2026_20260718_wsn_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -92559,8 +87417,7 @@ "canonical_id": "game_wnba_2026_20260718_con_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "10p", + "game_datetime_utc": "2026-07-18T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Connecticut Sun", "home_team_abbrev": "PHX", @@ -92577,8 +87434,7 @@ "canonical_id": "game_mlb_2026_20260718_sf_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -92595,8 +87451,7 @@ "canonical_id": "game_mls_2026_20260718_lafc_lag", "sport": "MLS", "season": "2026", - "date": "2026-07-17", - "time": "7:30p", + "game_datetime_utc": "2026-07-18T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "LAG", @@ -92613,8 +87468,7 @@ "canonical_id": "game_nwsl_2026_20260718_sea_njy", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "12p", + "game_datetime_utc": "2026-07-18T16:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "NJY", @@ -92631,8 +87485,7 @@ "canonical_id": "game_nwsl_2026_20260718_por_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "12p", + "game_datetime_utc": "2026-07-18T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "DEN", @@ -92649,8 +87502,7 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:20p", + "game_datetime_utc": "2026-07-18T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -92667,8 +87519,7 @@ "canonical_id": "game_mlb_2026_20260718_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:07p", + "game_datetime_utc": "2026-07-18T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -92685,8 +87536,7 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:10p", + "game_datetime_utc": "2026-07-18T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -92703,8 +87553,7 @@ "canonical_id": "game_nwsl_2026_20260718_ncc_bay", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "1p", + "game_datetime_utc": "2026-07-18T20:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "BAY", @@ -92721,8 +87570,7 @@ "canonical_id": "game_mlb_2026_20260718_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:05p", + "game_datetime_utc": "2026-07-18T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -92739,8 +87587,7 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -92757,8 +87604,7 @@ "canonical_id": "game_mlb_2026_20260718_sd_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -92775,8 +87621,7 @@ "canonical_id": "game_mlb_2026_20260718_stl_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -92793,8 +87638,7 @@ "canonical_id": "game_mlb_2026_20260718_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -92811,8 +87655,7 @@ "canonical_id": "game_mlb_2026_20260718_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -92829,8 +87672,7 @@ "canonical_id": "game_mlb_2026_20260718_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -92847,8 +87689,7 @@ "canonical_id": "game_mlb_2026_20260718_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -92865,8 +87706,7 @@ "canonical_id": "game_nwsl_2026_20260718_ang_chi", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "5:30p", + "game_datetime_utc": "2026-07-18T22:30:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "CHI", @@ -92883,8 +87723,7 @@ "canonical_id": "game_nwsl_2026_20260719_hou_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "8p", + "game_datetime_utc": "2026-07-19T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Houston Houston Dash", "home_team_abbrev": "RGN", @@ -92901,8 +87740,7 @@ "canonical_id": "game_wnba_2026_20260719_ny_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-18", - "time": "8p", + "game_datetime_utc": "2026-07-19T00:00:00Z", "home_team": "Indiana Fever", "away_team": "New York Liberty", "home_team_abbrev": "IND", @@ -92919,8 +87757,7 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "8:08p", + "game_datetime_utc": "2026-07-19T00:08:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -92937,8 +87774,7 @@ "canonical_id": "game_mlb_2026_20260719_sf_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "5:08p", + "game_datetime_utc": "2026-07-19T00:08:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -92955,8 +87791,7 @@ "canonical_id": "game_wnba_2026_20260719_was_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-07-18", - "time": "5:30p", + "game_datetime_utc": "2026-07-19T00:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Washington Mystics", "home_team_abbrev": "GSV", @@ -92973,8 +87808,7 @@ "canonical_id": "game_nwsl_2026_20260719_orl_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "6:45p", + "game_datetime_utc": "2026-07-19T00:45:00Z", "home_team": "Utah Utah Royals", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "UTA", @@ -92991,8 +87825,7 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "7:05p", + "game_datetime_utc": "2026-07-19T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -93009,8 +87842,7 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "7:07p", + "game_datetime_utc": "2026-07-19T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -93027,8 +87859,7 @@ "canonical_id": "game_mlb_2026_20260719_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "12:10p", + "game_datetime_utc": "2026-07-19T16:10:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -93045,8 +87876,7 @@ "canonical_id": "game_wnba_2026_20260719_la_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "12:30p", + "game_datetime_utc": "2026-07-19T17:30:00Z", "home_team": "Dallas Wings", "away_team": "Los Angeles Sparks", "home_team_abbrev": "DAL", @@ -93063,8 +87893,7 @@ "canonical_id": "game_mlb_2026_20260719_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -93081,8 +87910,7 @@ "canonical_id": "game_mlb_2026_20260719_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -93099,8 +87927,7 @@ "canonical_id": "game_mlb_2026_20260719_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -93117,8 +87944,7 @@ "canonical_id": "game_mlb_2026_20260719_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:40p", + "game_datetime_utc": "2026-07-19T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -93135,8 +87961,7 @@ "canonical_id": "game_mlb_2026_20260719_bal_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -93153,8 +87978,7 @@ "canonical_id": "game_mlb_2026_20260719_sd_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -93171,8 +87995,7 @@ "canonical_id": "game_mlb_2026_20260719_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -93189,8 +88012,7 @@ "canonical_id": "game_mlb_2026_20260719_min_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:20p", + "game_datetime_utc": "2026-07-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -93207,8 +88029,7 @@ "canonical_id": "game_mlb_2026_20260719_cin_col", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -93225,8 +88046,7 @@ "canonical_id": "game_wnba_2026_20260719_chi_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "4p", + "game_datetime_utc": "2026-07-19T20:00:00Z", "home_team": "Atlanta Dream", "away_team": "Chicago Sky", "home_team_abbrev": "ATL", @@ -93243,8 +88063,7 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:05p", + "game_datetime_utc": "2026-07-19T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -93261,8 +88080,7 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:07p", + "game_datetime_utc": "2026-07-19T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -93279,8 +88097,7 @@ "canonical_id": "game_mlb_2026_20260719_stl_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -93297,8 +88114,7 @@ "canonical_id": "game_mlb_2026_20260719_sf_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -93315,8 +88131,7 @@ "canonical_id": "game_nwsl_2026_20260719_wsh_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-19", - "time": "7p", + "game_datetime_utc": "2026-07-19T23:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "BOS", @@ -93333,8 +88148,7 @@ "canonical_id": "game_wnba_2026_20260719_con_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "7p", + "game_datetime_utc": "2026-07-19T23:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Connecticut Sun", "home_team_abbrev": "PHX", @@ -93351,8 +88165,7 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "7:20p", + "game_datetime_utc": "2026-07-19T23:20:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -93369,8 +88182,7 @@ "canonical_id": "game_mlb_2026_20260720_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -93387,8 +88199,7 @@ "canonical_id": "game_mlb_2026_20260720_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-20T23:05:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93405,8 +88216,7 @@ "canonical_id": "game_mlb_2026_20260720_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:07p", + "game_datetime_utc": "2026-07-20T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -93423,8 +88233,7 @@ "canonical_id": "game_mlb_2026_20260720_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-20T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -93441,8 +88250,7 @@ "canonical_id": "game_mlb_2026_20260720_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-20T23:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -93459,8 +88267,7 @@ "canonical_id": "game_mlb_2026_20260720_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:15p", + "game_datetime_utc": "2026-07-20T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -93477,8 +88284,7 @@ "canonical_id": "game_mlb_2026_20260720_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93495,8 +88301,7 @@ "canonical_id": "game_mlb_2026_20260720_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93513,8 +88318,7 @@ "canonical_id": "game_mlb_2026_20260721_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -93531,8 +88335,7 @@ "canonical_id": "game_mlb_2026_20260721_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -93549,8 +88352,7 @@ "canonical_id": "game_mlb_2026_20260721_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -93567,8 +88369,7 @@ "canonical_id": "game_mlb_2026_20260721_wsn_col", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -93585,8 +88386,7 @@ "canonical_id": "game_mlb_2026_20260721_oak_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -93603,8 +88403,7 @@ "canonical_id": "game_mlb_2026_20260721_cin_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -93621,8 +88420,7 @@ "canonical_id": "game_wnba_2026_20260721_was_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-07-20", - "time": "7p", + "game_datetime_utc": "2026-07-21T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Washington Mystics", "home_team_abbrev": "GSV", @@ -93639,8 +88437,7 @@ "canonical_id": "game_wnba_2026_20260721_min_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-20", - "time": "7p", + "game_datetime_utc": "2026-07-21T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Minnesota Lynx", "home_team_abbrev": "SEA", @@ -93657,8 +88454,7 @@ "canonical_id": "game_mlb_2026_20260721_stl_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T02:10:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -93675,8 +88471,7 @@ "canonical_id": "game_mlb_2026_20260721_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -93693,8 +88488,7 @@ "canonical_id": "game_mlb_2026_20260721_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -93711,8 +88505,7 @@ "canonical_id": "game_mlb_2026_20260721_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93729,8 +88522,7 @@ "canonical_id": "game_mlb_2026_20260721_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:07p", + "game_datetime_utc": "2026-07-21T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -93747,8 +88539,7 @@ "canonical_id": "game_mlb_2026_20260721_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -93765,8 +88556,7 @@ "canonical_id": "game_mlb_2026_20260721_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:15p", + "game_datetime_utc": "2026-07-21T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -93783,8 +88573,7 @@ "canonical_id": "game_mlb_2026_20260721_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93801,8 +88590,7 @@ "canonical_id": "game_mlb_2026_20260721_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93819,8 +88607,7 @@ "canonical_id": "game_mlb_2026_20260722_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-22T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -93837,8 +88624,7 @@ "canonical_id": "game_mlb_2026_20260722_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -93855,8 +88641,7 @@ "canonical_id": "game_mlb_2026_20260722_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:10p", + "game_datetime_utc": "2026-07-22T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -93873,8 +88658,7 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -93891,8 +88675,7 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:38p", + "game_datetime_utc": "2026-07-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -93909,8 +88692,7 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -93927,8 +88709,7 @@ "canonical_id": "game_mlb_2026_20260722_oak_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -93945,8 +88726,7 @@ "canonical_id": "game_mlb_2026_20260722_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:35p", + "game_datetime_utc": "2026-07-22T17:35:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93963,8 +88743,7 @@ "canonical_id": "game_mlb_2026_20260722_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93981,8 +88760,7 @@ "canonical_id": "game_mlb_2026_20260722_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93999,8 +88777,7 @@ "canonical_id": "game_wnba_2026_20260722_min_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "12p", + "game_datetime_utc": "2026-07-22T19:00:00Z", "home_team": "Seattle Storm", "away_team": "Minnesota Lynx", "home_team_abbrev": "SEA", @@ -94017,8 +88794,7 @@ "canonical_id": "game_wnba_2026_20260722_phx_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "12p", + "game_datetime_utc": "2026-07-22T19:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Phoenix Mercury", "home_team_abbrev": "LA", @@ -94035,8 +88811,7 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -94053,8 +88828,7 @@ "canonical_id": "game_mlb_2026_20260722_oak_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "12:40p", + "game_datetime_utc": "2026-07-22T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -94071,8 +88845,7 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "12:40p", + "game_datetime_utc": "2026-07-22T19:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -94089,8 +88862,7 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:07p", + "game_datetime_utc": "2026-07-22T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -94107,8 +88879,7 @@ "canonical_id": "game_mlb_2026_20260722_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -94125,8 +88896,7 @@ "canonical_id": "game_mlb_2026_20260722_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -94143,8 +88913,7 @@ "canonical_id": "game_wnba_2026_20260722_chi_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "7p", + "game_datetime_utc": "2026-07-22T23:00:00Z", "home_team": "New York Liberty", "away_team": "Chicago Sky", "home_team_abbrev": "NY", @@ -94161,8 +88930,7 @@ "canonical_id": "game_mlb_2026_20260722_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:07p", + "game_datetime_utc": "2026-07-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -94179,8 +88947,7 @@ "canonical_id": "game_mlb_2026_20260722_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:10p", + "game_datetime_utc": "2026-07-22T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -94197,8 +88964,7 @@ "canonical_id": "game_mlb_2026_20260722_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:15p", + "game_datetime_utc": "2026-07-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -94215,8 +88981,7 @@ "canonical_id": "game_mls_2026_20260722_nyc_clb", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New York New York City FC", "home_team_abbrev": "CLB", @@ -94233,8 +88998,7 @@ "canonical_id": "game_mls_2026_20260722_van_cin", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "CIN", @@ -94251,8 +89015,7 @@ "canonical_id": "game_mls_2026_20260722_chi_mia", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "MIA", @@ -94269,8 +89032,7 @@ "canonical_id": "game_mls_2026_20260722_tor_ne", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NE", @@ -94287,8 +89049,7 @@ "canonical_id": "game_mls_2026_20260722_ny_phi", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New York New York Red Bulls", "home_team_abbrev": "PHI", @@ -94305,8 +89066,7 @@ "canonical_id": "game_wnba_2026_20260722_lv_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Las Vegas Aces", "home_team_abbrev": "WAS", @@ -94323,8 +89083,7 @@ "canonical_id": "game_mls_2026_20260723_atl_clt", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "8p", + "game_datetime_utc": "2026-07-23T00:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CLT", @@ -94341,8 +89100,7 @@ "canonical_id": "game_wnba_2026_20260723_con_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "8p", + "game_datetime_utc": "2026-07-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Connecticut Sun", "home_team_abbrev": "IND", @@ -94359,8 +89117,7 @@ "canonical_id": "game_mlb_2026_20260723_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:05p", + "game_datetime_utc": "2026-07-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -94377,8 +89134,7 @@ "canonical_id": "game_mlb_2026_20260723_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:05p", + "game_datetime_utc": "2026-07-23T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -94395,8 +89151,7 @@ "canonical_id": "game_mlb_2026_20260723_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:10p", + "game_datetime_utc": "2026-07-23T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -94413,8 +89168,7 @@ "canonical_id": "game_mls_2026_20260723_mtl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NSH", @@ -94431,8 +89185,7 @@ "canonical_id": "game_mls_2026_20260723_sea_aus", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "AUS", @@ -94449,8 +89202,7 @@ "canonical_id": "game_mls_2026_20260723_min_skc", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SKC", @@ -94467,8 +89219,7 @@ "canonical_id": "game_mls_2026_20260723_dc_hou", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Washington D.C. United", "home_team_abbrev": "HOU", @@ -94485,8 +89236,7 @@ "canonical_id": "game_mls_2026_20260723_sd_col", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "San Diego San Diego FC", "home_team_abbrev": "COL", @@ -94503,8 +89253,7 @@ "canonical_id": "game_mls_2026_20260723_stl_lag", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "LAG", @@ -94521,8 +89270,7 @@ "canonical_id": "game_mls_2026_20260723_orl_sj", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Orlando Orlando City", "home_team_abbrev": "SJ", @@ -94539,8 +89287,7 @@ "canonical_id": "game_mls_2026_20260723_dal_por", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Dallas FC Dallas", "home_team_abbrev": "POR", @@ -94557,8 +89304,7 @@ "canonical_id": "game_mls_2026_20260723_slc_lafc", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "LAFC", @@ -94575,8 +89321,7 @@ "canonical_id": "game_mlb_2026_20260723_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "12:15p", + "game_datetime_utc": "2026-07-23T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -94593,8 +89338,7 @@ "canonical_id": "game_mlb_2026_20260723_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "1:10p", + "game_datetime_utc": "2026-07-23T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -94611,8 +89355,7 @@ "canonical_id": "game_mlb_2026_20260723_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "3:07p", + "game_datetime_utc": "2026-07-23T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -94629,8 +89372,7 @@ "canonical_id": "game_mlb_2026_20260723_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "6:40p", + "game_datetime_utc": "2026-07-23T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94647,8 +89389,7 @@ "canonical_id": "game_mlb_2026_20260724_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "3:10p", + "game_datetime_utc": "2026-07-24T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -94665,8 +89406,7 @@ "canonical_id": "game_mlb_2026_20260724_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -94683,8 +89423,7 @@ "canonical_id": "game_mlb_2026_20260724_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94701,8 +89440,7 @@ "canonical_id": "game_mlb_2026_20260724_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -94719,8 +89457,7 @@ "canonical_id": "game_mlb_2026_20260724_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:45p", + "game_datetime_utc": "2026-07-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -94737,8 +89474,7 @@ "canonical_id": "game_mlb_2026_20260724_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:05p", + "game_datetime_utc": "2026-07-24T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -94755,8 +89491,7 @@ "canonical_id": "game_mlb_2026_20260724_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -94773,8 +89508,7 @@ "canonical_id": "game_mlb_2026_20260724_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -94791,8 +89525,7 @@ "canonical_id": "game_mlb_2026_20260724_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -94809,8 +89542,7 @@ "canonical_id": "game_mlb_2026_20260724_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -94827,8 +89559,7 @@ "canonical_id": "game_mlb_2026_20260724_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -94845,8 +89576,7 @@ "canonical_id": "game_nwsl_2026_20260725_bay_hou", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "7p", + "game_datetime_utc": "2026-07-25T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "San Francisco Bay FC", "home_team_abbrev": "HOU", @@ -94863,8 +89593,7 @@ "canonical_id": "game_nwsl_2026_20260725_chi_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "8p", + "game_datetime_utc": "2026-07-25T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "ORL", @@ -94881,8 +89610,7 @@ "canonical_id": "game_mlb_2026_20260725_sea_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:05p", + "game_datetime_utc": "2026-07-25T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -94899,8 +89627,7 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-25T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -94917,8 +89644,7 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -94935,8 +89661,7 @@ "canonical_id": "game_nwsl_2026_20260725_njy_por", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "7p", + "game_datetime_utc": "2026-07-25T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "POR", @@ -94953,8 +89678,7 @@ "canonical_id": "game_mlb_2026_20260725_laa_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -94971,8 +89695,7 @@ "canonical_id": "game_mlb_2026_20260725_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "1:10p", + "game_datetime_utc": "2026-07-25T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94989,8 +89712,7 @@ "canonical_id": "game_mlb_2026_20260725_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:05p", + "game_datetime_utc": "2026-07-25T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -95007,8 +89729,7 @@ "canonical_id": "game_mlb_2026_20260725_laa_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "1:05p", + "game_datetime_utc": "2026-07-25T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -95025,8 +89746,7 @@ "canonical_id": "game_mlb_2026_20260725_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:10p", + "game_datetime_utc": "2026-07-25T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -95043,8 +89763,7 @@ "canonical_id": "game_mlb_2026_20260725_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:10p", + "game_datetime_utc": "2026-07-25T20:10:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -95061,8 +89780,7 @@ "canonical_id": "game_nwsl_2026_20260725_kcc_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-25", - "time": "5p", + "game_datetime_utc": "2026-07-25T21:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "BOS", @@ -95079,8 +89797,7 @@ "canonical_id": "game_mlb_2026_20260725_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:05p", + "game_datetime_utc": "2026-07-25T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -95097,8 +89814,7 @@ "canonical_id": "game_mlb_2026_20260725_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -95115,8 +89831,7 @@ "canonical_id": "game_mlb_2026_20260725_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:40p", + "game_datetime_utc": "2026-07-25T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -95133,8 +89848,7 @@ "canonical_id": "game_mls_2026_20260725_cin_clb", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7p", + "game_datetime_utc": "2026-07-25T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CLB", @@ -95151,8 +89865,7 @@ "canonical_id": "game_mlb_2026_20260725_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "7:05p", + "game_datetime_utc": "2026-07-25T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -95169,8 +89882,7 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -95187,8 +89899,7 @@ "canonical_id": "game_mlb_2026_20260725_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -95205,8 +89916,7 @@ "canonical_id": "game_mlb_2026_20260725_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -95223,8 +89933,7 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -95241,8 +89950,7 @@ "canonical_id": "game_mlb_2026_20260725_sea_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95259,8 +89967,7 @@ "canonical_id": "game_mlb_2026_20260725_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -95277,8 +89984,7 @@ "canonical_id": "game_mls_2026_20260725_mia_mtl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Miami Inter Miami", "home_team_abbrev": "MTL", @@ -95295,8 +90001,7 @@ "canonical_id": "game_mls_2026_20260725_sea_phi", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "PHI", @@ -95313,8 +90018,7 @@ "canonical_id": "game_mls_2026_20260725_nsh_orl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Nashville Nashville SC", "home_team_abbrev": "ORL", @@ -95331,8 +90035,7 @@ "canonical_id": "game_mls_2026_20260725_clt_ny", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "RB", @@ -95349,8 +90052,7 @@ "canonical_id": "game_mls_2026_20260725_chi_nyc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NYC", @@ -95367,8 +90069,7 @@ "canonical_id": "game_mls_2026_20260725_atl_ne", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NE", @@ -95385,8 +90086,7 @@ "canonical_id": "game_mls_2026_20260725_tor_dc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Toronto Toronto FC", "home_team_abbrev": "DC", @@ -95403,8 +90103,7 @@ "canonical_id": "game_nwsl_2026_20260725_uta_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-25", - "time": "7:45p", + "game_datetime_utc": "2026-07-25T23:45:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Utah Utah Royals", "home_team_abbrev": "NCC", @@ -95421,8 +90120,7 @@ "canonical_id": "game_mls_2026_20260726_col_stl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "STL", @@ -95439,8 +90137,7 @@ "canonical_id": "game_mls_2026_20260726_aus_hou", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Austin Austin FC", "home_team_abbrev": "HOU", @@ -95457,8 +90154,7 @@ "canonical_id": "game_mls_2026_20260726_van_min", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "MIN", @@ -95475,8 +90171,7 @@ "canonical_id": "game_mls_2026_20260726_dal_sd", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "6:30p", + "game_datetime_utc": "2026-07-26T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SD", @@ -95493,8 +90188,7 @@ "canonical_id": "game_mls_2026_20260726_lag_sj", "sport": "MLS", "season": "2026", - "date": "2026-07-26", - "time": "2:30a", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SJ", @@ -95511,8 +90205,7 @@ "canonical_id": "game_mls_2026_20260726_slc_por", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "POR", @@ -95529,8 +90222,7 @@ "canonical_id": "game_mls_2026_20260726_skc_lafc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "LAFC", @@ -95547,8 +90239,7 @@ "canonical_id": "game_mlb_2026_20260726_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "12:10p", + "game_datetime_utc": "2026-07-26T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -95565,8 +90256,7 @@ "canonical_id": "game_mlb_2026_20260726_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -95583,8 +90273,7 @@ "canonical_id": "game_mlb_2026_20260726_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -95601,8 +90290,7 @@ "canonical_id": "game_mlb_2026_20260726_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -95619,8 +90307,7 @@ "canonical_id": "game_mlb_2026_20260726_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -95637,8 +90324,7 @@ "canonical_id": "game_mlb_2026_20260726_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -95655,8 +90341,7 @@ "canonical_id": "game_mlb_2026_20260726_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -95673,8 +90358,7 @@ "canonical_id": "game_mlb_2026_20260726_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -95691,8 +90375,7 @@ "canonical_id": "game_mlb_2026_20260726_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -95709,8 +90392,7 @@ "canonical_id": "game_mlb_2026_20260726_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -95727,8 +90409,7 @@ "canonical_id": "game_mlb_2026_20260726_oak_min", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -95745,8 +90426,7 @@ "canonical_id": "game_mlb_2026_20260726_cin_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:15p", + "game_datetime_utc": "2026-07-26T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -95763,8 +90443,7 @@ "canonical_id": "game_mlb_2026_20260726_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95781,8 +90460,7 @@ "canonical_id": "game_mlb_2026_20260726_laa_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:05p", + "game_datetime_utc": "2026-07-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -95799,8 +90477,7 @@ "canonical_id": "game_nwsl_2026_20260726_sea_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "2p", + "game_datetime_utc": "2026-07-26T21:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "SDW", @@ -95817,8 +90494,7 @@ "canonical_id": "game_nwsl_2026_20260726_den_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "7p", + "game_datetime_utc": "2026-07-26T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "WSH", @@ -95835,8 +90511,7 @@ "canonical_id": "game_mlb_2026_20260726_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "7:20p", + "game_datetime_utc": "2026-07-26T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -95853,8 +90528,7 @@ "canonical_id": "game_nwsl_2026_20260727_rgn_ang", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "6p", + "game_datetime_utc": "2026-07-27T01:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "ANG", @@ -95871,8 +90545,7 @@ "canonical_id": "game_mlb_2026_20260727_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "1:35p", + "game_datetime_utc": "2026-07-27T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95889,8 +90562,7 @@ "canonical_id": "game_mlb_2026_20260727_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -95907,8 +90579,7 @@ "canonical_id": "game_mlb_2026_20260727_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -95925,8 +90596,7 @@ "canonical_id": "game_mlb_2026_20260727_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -95943,8 +90613,7 @@ "canonical_id": "game_mlb_2026_20260727_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-27T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -95961,8 +90630,7 @@ "canonical_id": "game_mlb_2026_20260727_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "7:10p", + "game_datetime_utc": "2026-07-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -95979,8 +90647,7 @@ "canonical_id": "game_mlb_2026_20260727_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "7:10p", + "game_datetime_utc": "2026-07-27T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -95997,8 +90664,7 @@ "canonical_id": "game_mlb_2026_20260727_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96015,8 +90681,7 @@ "canonical_id": "game_mlb_2026_20260727_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-27T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96033,8 +90698,7 @@ "canonical_id": "game_mlb_2026_20260728_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:38p", + "game_datetime_utc": "2026-07-28T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96051,8 +90715,7 @@ "canonical_id": "game_mlb_2026_20260728_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96069,8 +90732,7 @@ "canonical_id": "game_mlb_2026_20260728_mil_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96087,8 +90749,7 @@ "canonical_id": "game_mlb_2026_20260728_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -96105,8 +90766,7 @@ "canonical_id": "game_mlb_2026_20260728_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96123,8 +90783,7 @@ "canonical_id": "game_mlb_2026_20260728_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -96141,8 +90800,7 @@ "canonical_id": "game_mlb_2026_20260728_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -96159,8 +90817,7 @@ "canonical_id": "game_mlb_2026_20260728_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -96177,8 +90834,7 @@ "canonical_id": "game_mlb_2026_20260728_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-28T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -96195,8 +90851,7 @@ "canonical_id": "game_mlb_2026_20260728_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -96213,8 +90868,7 @@ "canonical_id": "game_wnba_2026_20260728_con_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "7:30p", + "game_datetime_utc": "2026-07-28T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Connecticut Sun", "home_team_abbrev": "WAS", @@ -96231,8 +90885,7 @@ "canonical_id": "game_mlb_2026_20260728_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96249,8 +90902,7 @@ "canonical_id": "game_mlb_2026_20260728_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96267,8 +90919,7 @@ "canonical_id": "game_mlb_2026_20260728_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96285,8 +90936,7 @@ "canonical_id": "game_wnba_2026_20260729_ind_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "6:30p", + "game_datetime_utc": "2026-07-29T01:30:00Z", "home_team": "Seattle Storm", "away_team": "Indiana Fever", "home_team_abbrev": "SEA", @@ -96303,8 +90953,7 @@ "canonical_id": "game_mlb_2026_20260729_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:38p", + "game_datetime_utc": "2026-07-29T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96321,8 +90970,7 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -96339,8 +90987,7 @@ "canonical_id": "game_mlb_2026_20260729_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96357,8 +91004,7 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-29T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96375,8 +91021,7 @@ "canonical_id": "game_wnba_2026_20260729_ny_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "7p", + "game_datetime_utc": "2026-07-29T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "New York Liberty", "home_team_abbrev": "LA", @@ -96393,8 +91038,7 @@ "canonical_id": "game_mlb_2026_20260729_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-29T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96411,8 +91055,7 @@ "canonical_id": "game_mlb_2026_20260729_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:10p", + "game_datetime_utc": "2026-07-29T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -96429,8 +91072,7 @@ "canonical_id": "game_mlb_2026_20260729_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:35p", + "game_datetime_utc": "2026-07-29T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -96447,8 +91089,7 @@ "canonical_id": "game_mlb_2026_20260729_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:05p", + "game_datetime_utc": "2026-07-29T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -96465,8 +91106,7 @@ "canonical_id": "game_mlb_2026_20260729_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T17:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -96483,8 +91123,7 @@ "canonical_id": "game_mlb_2026_20260729_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -96501,8 +91140,7 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:45p", + "game_datetime_utc": "2026-07-29T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96519,8 +91157,7 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -96537,8 +91174,7 @@ "canonical_id": "game_mlb_2026_20260729_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96555,8 +91191,7 @@ "canonical_id": "game_mlb_2026_20260729_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "7:10p", + "game_datetime_utc": "2026-07-29T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -96573,8 +91208,7 @@ "canonical_id": "game_mlb_2026_20260729_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96591,8 +91225,7 @@ "canonical_id": "game_mlb_2026_20260729_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96609,8 +91242,7 @@ "canonical_id": "game_mlb_2026_20260729_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:45p", + "game_datetime_utc": "2026-07-29T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96627,8 +91259,7 @@ "canonical_id": "game_nwsl_2026_20260730_rgn_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "KCC", @@ -96645,8 +91276,7 @@ "canonical_id": "game_wnba_2026_20260730_atl_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Atlanta Dream", "home_team_abbrev": "DAL", @@ -96663,8 +91293,7 @@ "canonical_id": "game_nwsl_2026_20260730_wsh_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T01:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Washington Washington Spirit", "home_team_abbrev": "UTA", @@ -96681,8 +91310,7 @@ "canonical_id": "game_mlb_2026_20260730_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:38p", + "game_datetime_utc": "2026-07-30T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96699,8 +91327,7 @@ "canonical_id": "game_mlb_2026_20260730_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96717,8 +91344,7 @@ "canonical_id": "game_nwsl_2026_20260730_njy_bay", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "BAY", @@ -96735,8 +91361,7 @@ "canonical_id": "game_wnba_2026_20260730_gsv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-29", - "time": "10p", + "game_datetime_utc": "2026-07-30T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Golden State Valkyries", "home_team_abbrev": "PHX", @@ -96753,8 +91378,7 @@ "canonical_id": "game_mlb_2026_20260730_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96771,8 +91395,7 @@ "canonical_id": "game_mlb_2026_20260730_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "12:10p", + "game_datetime_utc": "2026-07-30T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96789,8 +91412,7 @@ "canonical_id": "game_mlb_2026_20260730_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "12:40p", + "game_datetime_utc": "2026-07-30T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96807,8 +91429,7 @@ "canonical_id": "game_mlb_2026_20260730_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "1:10p", + "game_datetime_utc": "2026-07-30T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96825,8 +91446,7 @@ "canonical_id": "game_mlb_2026_20260730_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "1:15p", + "game_datetime_utc": "2026-07-30T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96843,8 +91463,7 @@ "canonical_id": "game_mlb_2026_20260730_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -96861,8 +91480,7 @@ "canonical_id": "game_mlb_2026_20260730_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -96879,8 +91497,7 @@ "canonical_id": "game_mlb_2026_20260730_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:15p", + "game_datetime_utc": "2026-07-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -96897,8 +91514,7 @@ "canonical_id": "game_wnba_2026_20260731_con_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-30", - "time": "7p", + "game_datetime_utc": "2026-07-31T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Connecticut Sun", "home_team_abbrev": "CHI", @@ -96915,8 +91531,7 @@ "canonical_id": "game_mlb_2026_20260731_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-31T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96933,8 +91548,7 @@ "canonical_id": "game_mlb_2026_20260731_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-31T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -96951,8 +91565,7 @@ "canonical_id": "game_wnba_2026_20260731_ny_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-30", - "time": "7p", + "game_datetime_utc": "2026-07-31T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "New York Liberty", "home_team_abbrev": "LV", @@ -96969,8 +91582,7 @@ "canonical_id": "game_mlb_2026_20260731_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96987,8 +91599,7 @@ "canonical_id": "game_mlb_2026_20260731_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "1:20p", + "game_datetime_utc": "2026-07-31T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -97005,8 +91616,7 @@ "canonical_id": "game_mlb_2026_20260731_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:10p", + "game_datetime_utc": "2026-07-31T22:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -97023,8 +91633,7 @@ "canonical_id": "game_mlb_2026_20260731_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:05p", + "game_datetime_utc": "2026-07-31T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97041,8 +91650,7 @@ "canonical_id": "game_mlb_2026_20260731_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:07p", + "game_datetime_utc": "2026-07-31T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -97059,8 +91667,7 @@ "canonical_id": "game_mlb_2026_20260731_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -97077,8 +91684,7 @@ "canonical_id": "game_mlb_2026_20260731_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -97095,8 +91701,7 @@ "canonical_id": "game_mlb_2026_20260731_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -97113,8 +91718,7 @@ "canonical_id": "game_mlb_2026_20260731_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:15p", + "game_datetime_utc": "2026-07-31T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -97131,8 +91735,7 @@ "canonical_id": "game_mls_2026_20260731_tor_nyc", "sport": "MLS", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NYC", @@ -97149,8 +91752,7 @@ "canonical_id": "game_wnba_2026_20260731_sea_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Seattle Storm", "home_team_abbrev": "ATL", @@ -97167,8 +91769,7 @@ "canonical_id": "game_wnba_2026_20260731_dal_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Dallas Wings", "home_team_abbrev": "WAS", @@ -97185,8 +91786,7 @@ "canonical_id": "game_nwsl_2026_20260801_orl_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-31", - "time": "8p", + "game_datetime_utc": "2026-08-01T00:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "NCC", @@ -97203,8 +91803,7 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -97221,8 +91820,7 @@ "canonical_id": "game_mlb_2026_20260801_kc_col", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -97239,8 +91837,7 @@ "canonical_id": "game_mlb_2026_20260801_mil_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:38p", + "game_datetime_utc": "2026-08-01T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -97257,8 +91854,7 @@ "canonical_id": "game_mlb_2026_20260801_det_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -97275,8 +91871,7 @@ "canonical_id": "game_mlb_2026_20260801_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -97293,8 +91888,7 @@ "canonical_id": "game_mlb_2026_20260801_min_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -97311,8 +91905,7 @@ "canonical_id": "game_mlb_2026_20260801_bos_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -97329,8 +91922,7 @@ "canonical_id": "game_wnba_2026_20260801_lv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-01", - "time": "12p", + "game_datetime_utc": "2026-08-01T17:00:00Z", "home_team": "Chicago Sky", "away_team": "Las Vegas Aces", "home_team_abbrev": "CHI", @@ -97347,8 +91939,7 @@ "canonical_id": "game_wnba_2026_20260801_ny_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-01", - "time": "3p", + "game_datetime_utc": "2026-08-01T19:00:00Z", "home_team": "Phoenix Mercury", "away_team": "New York Liberty", "home_team_abbrev": "PHX", @@ -97365,8 +91956,7 @@ "canonical_id": "game_mlb_2026_20260801_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "3:07p", + "game_datetime_utc": "2026-08-01T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -97383,8 +91973,7 @@ "canonical_id": "game_nwsl_2026_20260801_chi_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "4p", + "game_datetime_utc": "2026-08-01T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "RGN", @@ -97401,8 +91990,7 @@ "canonical_id": "game_mlb_2026_20260801_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "4:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -97419,8 +92007,7 @@ "canonical_id": "game_mlb_2026_20260801_min_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "1:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -97437,8 +92024,7 @@ "canonical_id": "game_mlb_2026_20260801_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "4:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -97455,8 +92041,7 @@ "canonical_id": "game_nwsl_2026_20260801_ang_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "5:30p", + "game_datetime_utc": "2026-08-01T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "KCC", @@ -97473,8 +92058,7 @@ "canonical_id": "game_mlb_2026_20260801_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -97491,8 +92075,7 @@ "canonical_id": "game_mlb_2026_20260801_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:05p", + "game_datetime_utc": "2026-08-01T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97509,8 +92092,7 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-01T23:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -97527,8 +92109,7 @@ "canonical_id": "game_mlb_2026_20260801_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -97545,8 +92126,7 @@ "canonical_id": "game_mlb_2026_20260801_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -97563,8 +92143,7 @@ "canonical_id": "game_mlb_2026_20260801_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -97581,8 +92160,7 @@ "canonical_id": "game_mls_2026_20260801_orl_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Orlando Orlando City", "home_team_abbrev": "RB", @@ -97599,8 +92177,7 @@ "canonical_id": "game_mls_2026_20260801_atl_phi", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "PHI", @@ -97617,8 +92194,7 @@ "canonical_id": "game_mls_2026_20260801_lafc_van", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "4:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "VAN", @@ -97635,8 +92211,7 @@ "canonical_id": "game_mls_2026_20260801_nsh_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Nashville Nashville SC", "home_team_abbrev": "DC", @@ -97653,8 +92228,7 @@ "canonical_id": "game_mls_2026_20260801_clb_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "MIA", @@ -97671,8 +92245,7 @@ "canonical_id": "game_mls_2026_20260801_sj_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "CIN", @@ -97689,8 +92262,7 @@ "canonical_id": "game_mls_2026_20260801_ne_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New England New England Revolution", "home_team_abbrev": "MTL", @@ -97707,8 +92279,7 @@ "canonical_id": "game_nwsl_2026_20260802_njy_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "7p", + "game_datetime_utc": "2026-08-02T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "HOU", @@ -97725,8 +92296,7 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-02T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -97743,8 +92313,7 @@ "canonical_id": "game_mls_2026_20260802_hou_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SKC", @@ -97761,8 +92330,7 @@ "canonical_id": "game_mls_2026_20260802_slc_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "STL", @@ -97779,8 +92347,7 @@ "canonical_id": "game_mls_2026_20260802_sd_min", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "San Diego San Diego FC", "home_team_abbrev": "MIN", @@ -97797,8 +92364,7 @@ "canonical_id": "game_mls_2026_20260802_clt_chi", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CHI", @@ -97815,8 +92381,7 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "5:40p", + "game_datetime_utc": "2026-08-02T00:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -97833,8 +92398,7 @@ "canonical_id": "game_nwsl_2026_20260802_sea_bay", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "5:45p", + "game_datetime_utc": "2026-08-02T00:45:00Z", "home_team": "San Francisco Bay FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "BAY", @@ -97851,8 +92415,7 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-02T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -97869,8 +92432,7 @@ "canonical_id": "game_mls_2026_20260802_aus_col", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Austin Austin FC", "home_team_abbrev": "COL", @@ -97887,8 +92449,7 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:38p", + "game_datetime_utc": "2026-08-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -97905,8 +92466,7 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:40p", + "game_datetime_utc": "2026-08-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -97923,8 +92483,7 @@ "canonical_id": "game_mls_2026_20260802_sea_por", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "POR", @@ -97941,8 +92500,7 @@ "canonical_id": "game_mls_2026_20260802_dal_lag", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Dallas FC Dallas", "home_team_abbrev": "LAG", @@ -97959,8 +92517,7 @@ "canonical_id": "game_wnba_2026_20260802_ind_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-02", - "time": "12p", + "game_datetime_utc": "2026-08-02T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Indiana Fever", "home_team_abbrev": "MIN", @@ -97977,8 +92534,7 @@ "canonical_id": "game_mlb_2026_20260802_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:35p", + "game_datetime_utc": "2026-08-02T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97995,8 +92551,7 @@ "canonical_id": "game_mlb_2026_20260802_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:35p", + "game_datetime_utc": "2026-08-02T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -98013,8 +92568,7 @@ "canonical_id": "game_mlb_2026_20260802_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:37p", + "game_datetime_utc": "2026-08-02T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -98031,8 +92585,7 @@ "canonical_id": "game_mlb_2026_20260802_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -98049,8 +92602,7 @@ "canonical_id": "game_mlb_2026_20260802_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -98067,8 +92619,7 @@ "canonical_id": "game_mlb_2026_20260802_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -98085,8 +92636,7 @@ "canonical_id": "game_mlb_2026_20260802_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -98103,8 +92653,7 @@ "canonical_id": "game_mlb_2026_20260802_tex_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T18:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -98121,8 +92670,7 @@ "canonical_id": "game_mlb_2026_20260802_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:20p", + "game_datetime_utc": "2026-08-02T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -98139,8 +92687,7 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -98157,8 +92704,7 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "12:10p", + "game_datetime_utc": "2026-08-02T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -98175,8 +92721,7 @@ "canonical_id": "game_nwsl_2026_20260802_sdw_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "4p", + "game_datetime_utc": "2026-08-02T20:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "WSH", @@ -98193,8 +92738,7 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:05p", + "game_datetime_utc": "2026-08-02T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -98211,8 +92755,7 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -98229,8 +92772,7 @@ "canonical_id": "game_mlb_2026_20260802_min_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -98247,8 +92789,7 @@ "canonical_id": "game_nwsl_2026_20260802_por_uta", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "5p", + "game_datetime_utc": "2026-08-02T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Portland Portland Thorns", "home_team_abbrev": "UTA", @@ -98265,8 +92806,7 @@ "canonical_id": "game_wnba_2026_20260802_con_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-02", - "time": "6p", + "game_datetime_utc": "2026-08-02T23:00:00Z", "home_team": "Dallas Wings", "away_team": "Connecticut Sun", "home_team_abbrev": "DAL", @@ -98283,8 +92823,7 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "4:20p", + "game_datetime_utc": "2026-08-02T23:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -98301,8 +92840,7 @@ "canonical_id": "game_nwsl_2026_20260803_bos_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "7p", + "game_datetime_utc": "2026-08-03T01:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "DEN", @@ -98319,8 +92857,7 @@ "canonical_id": "game_mlb_2026_20260803_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-03T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98337,8 +92874,7 @@ "canonical_id": "game_mlb_2026_20260803_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98355,8 +92891,7 @@ "canonical_id": "game_wnba_2026_20260803_lv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "7:30p", + "game_datetime_utc": "2026-08-03T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Las Vegas Aces", "home_team_abbrev": "ATL", @@ -98373,8 +92908,7 @@ "canonical_id": "game_mlb_2026_20260803_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-03T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -98391,8 +92925,7 @@ "canonical_id": "game_wnba_2026_20260804_phx_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "7p", + "game_datetime_utc": "2026-08-04T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Phoenix Mercury", "home_team_abbrev": "CHI", @@ -98409,8 +92942,7 @@ "canonical_id": "game_wnba_2026_20260804_sea_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "8p", + "game_datetime_utc": "2026-08-04T00:00:00Z", "home_team": "New York Liberty", "away_team": "Seattle Storm", "home_team_abbrev": "NY", @@ -98427,8 +92959,7 @@ "canonical_id": "game_mlb_2026_20260804_sf_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98445,8 +92976,7 @@ "canonical_id": "game_mlb_2026_20260804_lad_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98463,8 +92993,7 @@ "canonical_id": "game_mlb_2026_20260804_tor_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:10p", + "game_datetime_utc": "2026-08-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98481,8 +93010,7 @@ "canonical_id": "game_mlb_2026_20260804_tbr_col", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98499,8 +93027,7 @@ "canonical_id": "game_mlb_2026_20260804_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -98517,8 +93044,7 @@ "canonical_id": "game_mlb_2026_20260804_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:35p", + "game_datetime_utc": "2026-08-04T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -98535,8 +93061,7 @@ "canonical_id": "game_mlb_2026_20260804_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98553,8 +93078,7 @@ "canonical_id": "game_mlb_2026_20260804_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -98571,8 +93095,7 @@ "canonical_id": "game_mlb_2026_20260804_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -98589,8 +93112,7 @@ "canonical_id": "game_mlb_2026_20260804_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98607,8 +93129,7 @@ "canonical_id": "game_mlb_2026_20260804_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:10p", + "game_datetime_utc": "2026-08-04T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -98625,8 +93146,7 @@ "canonical_id": "game_mlb_2026_20260804_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:15p", + "game_datetime_utc": "2026-08-04T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -98643,8 +93163,7 @@ "canonical_id": "game_mlb_2026_20260804_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -98661,8 +93180,7 @@ "canonical_id": "game_mlb_2026_20260804_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -98679,8 +93197,7 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98697,8 +93214,7 @@ "canonical_id": "game_mlb_2026_20260805_sf_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98715,8 +93231,7 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:10p", + "game_datetime_utc": "2026-08-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98733,8 +93248,7 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98751,8 +93265,7 @@ "canonical_id": "game_mlb_2026_20260805_det_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -98769,8 +93282,7 @@ "canonical_id": "game_mlb_2026_20260805_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -98787,8 +93299,7 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:10p", + "game_datetime_utc": "2026-08-05T18:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98805,8 +93316,7 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:20p", + "game_datetime_utc": "2026-08-05T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98823,8 +93333,7 @@ "canonical_id": "game_mlb_2026_20260805_sf_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:35p", + "game_datetime_utc": "2026-08-05T18:35:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98841,8 +93350,7 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:10p", + "game_datetime_utc": "2026-08-05T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98859,8 +93367,7 @@ "canonical_id": "game_mlb_2026_20260805_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:35p", + "game_datetime_utc": "2026-08-05T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -98877,8 +93384,7 @@ "canonical_id": "game_mlb_2026_20260805_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98895,8 +93401,7 @@ "canonical_id": "game_mlb_2026_20260805_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -98913,8 +93418,7 @@ "canonical_id": "game_mlb_2026_20260805_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -98931,8 +93435,7 @@ "canonical_id": "game_wnba_2026_20260805_sea_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7p", + "game_datetime_utc": "2026-08-05T23:00:00Z", "home_team": "New York Liberty", "away_team": "Seattle Storm", "home_team_abbrev": "NY", @@ -98949,8 +93452,7 @@ "canonical_id": "game_wnba_2026_20260805_phx_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7p", + "game_datetime_utc": "2026-08-05T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Phoenix Mercury", "home_team_abbrev": "ATL", @@ -98967,8 +93469,7 @@ "canonical_id": "game_mlb_2026_20260805_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98985,8 +93486,7 @@ "canonical_id": "game_mlb_2026_20260805_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:10p", + "game_datetime_utc": "2026-08-05T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -99003,8 +93503,7 @@ "canonical_id": "game_mlb_2026_20260805_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:15p", + "game_datetime_utc": "2026-08-05T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -99021,8 +93520,7 @@ "canonical_id": "game_wnba_2026_20260805_dal_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7:30p", + "game_datetime_utc": "2026-08-05T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Dallas Wings", "home_team_abbrev": "WAS", @@ -99039,8 +93537,7 @@ "canonical_id": "game_mlb_2026_20260805_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -99057,8 +93554,7 @@ "canonical_id": "game_mlb_2026_20260805_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -99075,8 +93571,7 @@ "canonical_id": "game_wnba_2026_20260806_la_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "8p", + "game_datetime_utc": "2026-08-06T01:00:00Z", "home_team": "Chicago Sky", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CHI", @@ -99093,8 +93588,7 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -99111,8 +93605,7 @@ "canonical_id": "game_mlb_2026_20260806_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -99129,8 +93622,7 @@ "canonical_id": "game_nwsl_2026_20260806_ncc_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-05", - "time": "8p", + "game_datetime_utc": "2026-08-06T02:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "DEN", @@ -99147,8 +93639,7 @@ "canonical_id": "game_mlb_2026_20260806_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "12:35p", + "game_datetime_utc": "2026-08-06T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -99165,8 +93656,7 @@ "canonical_id": "game_mlb_2026_20260806_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "12:40p", + "game_datetime_utc": "2026-08-06T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -99183,8 +93673,7 @@ "canonical_id": "game_mlb_2026_20260806_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -99201,8 +93690,7 @@ "canonical_id": "game_mlb_2026_20260806_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -99219,8 +93707,7 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -99237,8 +93724,7 @@ "canonical_id": "game_mlb_2026_20260806_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:05p", + "game_datetime_utc": "2026-08-06T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -99255,8 +93741,7 @@ "canonical_id": "game_wnba_2026_20260806_lv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-06", - "time": "7p", + "game_datetime_utc": "2026-08-06T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Las Vegas Aces", "home_team_abbrev": "IND", @@ -99273,8 +93758,7 @@ "canonical_id": "game_mlb_2026_20260806_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "7:10p", + "game_datetime_utc": "2026-08-06T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -99291,8 +93775,7 @@ "canonical_id": "game_mlb_2026_20260806_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "7:15p", + "game_datetime_utc": "2026-08-06T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -99309,8 +93792,7 @@ "canonical_id": "game_mlb_2026_20260806_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -99327,8 +93809,7 @@ "canonical_id": "game_wnba_2026_20260807_la_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-06", - "time": "8p", + "game_datetime_utc": "2026-08-07T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Los Angeles Sparks", "home_team_abbrev": "MIN", @@ -99345,8 +93826,7 @@ "canonical_id": "game_mlb_2026_20260807_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -99363,8 +93843,7 @@ "canonical_id": "game_mlb_2026_20260807_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -99381,8 +93860,7 @@ "canonical_id": "game_mlb_2026_20260807_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -99399,8 +93877,7 @@ "canonical_id": "game_mlb_2026_20260807_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:45p", + "game_datetime_utc": "2026-08-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -99417,8 +93894,7 @@ "canonical_id": "game_mlb_2026_20260807_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:05p", + "game_datetime_utc": "2026-08-07T23:05:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -99435,8 +93911,7 @@ "canonical_id": "game_mlb_2026_20260807_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-07T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -99453,8 +93928,7 @@ "canonical_id": "game_mlb_2026_20260807_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-07T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -99471,8 +93945,7 @@ "canonical_id": "game_wnba_2026_20260807_atl_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "7:30p", + "game_datetime_utc": "2026-08-07T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Atlanta Dream", "home_team_abbrev": "WAS", @@ -99489,8 +93962,7 @@ "canonical_id": "game_wnba_2026_20260807_phx_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "7:30p", + "game_datetime_utc": "2026-08-07T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Phoenix Mercury", "home_team_abbrev": "CON", @@ -99507,8 +93979,7 @@ "canonical_id": "game_mlb_2026_20260807_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -99525,8 +93996,7 @@ "canonical_id": "game_mlb_2026_20260807_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -99543,8 +94013,7 @@ "canonical_id": "game_nwsl_2026_20260808_sdw_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-07", - "time": "8p", + "game_datetime_utc": "2026-08-08T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "NJY", @@ -99561,8 +94030,7 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:05p", + "game_datetime_utc": "2026-08-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -99579,8 +94047,7 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-08T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -99597,8 +94064,7 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:15p", + "game_datetime_utc": "2026-08-08T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -99615,8 +94081,7 @@ "canonical_id": "game_wnba_2026_20260808_gsv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "8:30p", + "game_datetime_utc": "2026-08-08T01:30:00Z", "home_team": "Dallas Wings", "away_team": "Golden State Valkyries", "home_team_abbrev": "DAL", @@ -99633,8 +94098,7 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -99651,8 +94115,7 @@ "canonical_id": "game_mlb_2026_20260808_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -99669,8 +94132,7 @@ "canonical_id": "game_mlb_2026_20260808_tbr_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-08T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -99687,8 +94149,7 @@ "canonical_id": "game_mlb_2026_20260808_det_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:15p", + "game_datetime_utc": "2026-08-08T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -99705,8 +94166,7 @@ "canonical_id": "game_wnba_2026_20260808_lv_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-08", - "time": "12p", + "game_datetime_utc": "2026-08-08T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Las Vegas Aces", "home_team_abbrev": "MIN", @@ -99723,8 +94183,7 @@ "canonical_id": "game_mlb_2026_20260808_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "1:35p", + "game_datetime_utc": "2026-08-08T17:35:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -99741,8 +94200,7 @@ "canonical_id": "game_wnba_2026_20260808_ind_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-08", - "time": "2p", + "game_datetime_utc": "2026-08-08T19:00:00Z", "home_team": "Chicago Sky", "away_team": "Indiana Fever", "home_team_abbrev": "CHI", @@ -99759,8 +94217,7 @@ "canonical_id": "game_nwsl_2026_20260808_uta_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "2p", + "game_datetime_utc": "2026-08-08T20:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "DEN", @@ -99777,8 +94234,7 @@ "canonical_id": "game_mlb_2026_20260808_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:10p", + "game_datetime_utc": "2026-08-08T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -99795,8 +94251,7 @@ "canonical_id": "game_mlb_2026_20260808_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:10p", + "game_datetime_utc": "2026-08-08T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -99813,8 +94268,7 @@ "canonical_id": "game_mlb_2026_20260808_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:05p", + "game_datetime_utc": "2026-08-08T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -99831,8 +94285,7 @@ "canonical_id": "game_nwsl_2026_20260808_ncc_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "6:30p", + "game_datetime_utc": "2026-08-08T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "WSH", @@ -99849,8 +94302,7 @@ "canonical_id": "game_mlb_2026_20260808_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -99867,8 +94319,7 @@ "canonical_id": "game_mlb_2026_20260808_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:45p", + "game_datetime_utc": "2026-08-08T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -99885,8 +94336,7 @@ "canonical_id": "game_nwsl_2026_20260808_rgn_orl", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "7p", + "game_datetime_utc": "2026-08-08T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "ORL", @@ -99903,8 +94353,7 @@ "canonical_id": "game_mlb_2026_20260808_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -99921,8 +94370,7 @@ "canonical_id": "game_mlb_2026_20260808_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -99939,8 +94387,7 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -99957,8 +94404,7 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -99975,8 +94421,7 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -99993,8 +94438,7 @@ "canonical_id": "game_mlb_2026_20260808_det_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -100011,8 +94455,7 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -100029,8 +94472,7 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "5:10p", + "game_datetime_utc": "2026-08-09T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -100047,8 +94489,7 @@ "canonical_id": "game_nwsl_2026_20260809_kcc_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "7:45p", + "game_datetime_utc": "2026-08-09T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "HOU", @@ -100065,8 +94506,7 @@ "canonical_id": "game_mlb_2026_20260809_tbr_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:50p", + "game_datetime_utc": "2026-08-09T01:50:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -100083,8 +94523,7 @@ "canonical_id": "game_mlb_2026_20260809_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "12:10p", + "game_datetime_utc": "2026-08-09T16:10:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -100101,8 +94540,7 @@ "canonical_id": "game_wnba_2026_20260809_lv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "12:30p", + "game_datetime_utc": "2026-08-09T16:30:00Z", "home_team": "New York Liberty", "away_team": "Las Vegas Aces", "home_team_abbrev": "NY", @@ -100119,8 +94557,7 @@ "canonical_id": "game_mlb_2026_20260809_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -100137,8 +94574,7 @@ "canonical_id": "game_mlb_2026_20260809_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -100155,8 +94591,7 @@ "canonical_id": "game_mlb_2026_20260809_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -100173,8 +94608,7 @@ "canonical_id": "game_mlb_2026_20260809_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -100191,8 +94625,7 @@ "canonical_id": "game_mlb_2026_20260809_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:40p", + "game_datetime_utc": "2026-08-09T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -100209,8 +94642,7 @@ "canonical_id": "game_mlb_2026_20260809_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -100227,8 +94659,7 @@ "canonical_id": "game_mlb_2026_20260809_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -100245,8 +94676,7 @@ "canonical_id": "game_mlb_2026_20260809_chc_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -100263,8 +94693,7 @@ "canonical_id": "game_mlb_2026_20260809_col_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:15p", + "game_datetime_utc": "2026-08-09T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -100281,8 +94710,7 @@ "canonical_id": "game_mlb_2026_20260809_bal_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -100299,8 +94727,7 @@ "canonical_id": "game_wnba_2026_20260809_phx_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "3p", + "game_datetime_utc": "2026-08-09T19:00:00Z", "home_team": "Washington Mystics", "away_team": "Phoenix Mercury", "home_team_abbrev": "WAS", @@ -100317,8 +94744,7 @@ "canonical_id": "game_wnba_2026_20260809_dal_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "2:30p", + "game_datetime_utc": "2026-08-09T19:30:00Z", "home_team": "Minnesota Lynx", "away_team": "Dallas Wings", "home_team_abbrev": "MIN", @@ -100335,8 +94761,7 @@ "canonical_id": "game_nwsl_2026_20260809_por_bos", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "4p", + "game_datetime_utc": "2026-08-09T20:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "BOS", @@ -100353,8 +94778,7 @@ "canonical_id": "game_mlb_2026_20260809_det_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:05p", + "game_datetime_utc": "2026-08-09T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -100371,8 +94795,7 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -100389,8 +94812,7 @@ "canonical_id": "game_mlb_2026_20260809_tbr_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -100407,8 +94829,7 @@ "canonical_id": "game_nwsl_2026_20260809_bay_chi", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "6p", + "game_datetime_utc": "2026-08-09T23:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "San Francisco Bay FC", "home_team_abbrev": "CHI", @@ -100425,8 +94846,7 @@ "canonical_id": "game_wnba_2026_20260809_gsv_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "4p", + "game_datetime_utc": "2026-08-09T23:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Golden State Valkyries", "home_team_abbrev": "LA", @@ -100443,8 +94863,7 @@ "canonical_id": "game_mlb_2026_20260810_hou_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "5:20p", + "game_datetime_utc": "2026-08-10T00:20:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -100461,8 +94880,7 @@ "canonical_id": "game_nwsl_2026_20260810_ang_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "6p", + "game_datetime_utc": "2026-08-10T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "SEA", @@ -100479,8 +94897,7 @@ "canonical_id": "game_mlb_2026_20260810_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:07p", + "game_datetime_utc": "2026-08-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -100497,8 +94914,7 @@ "canonical_id": "game_mlb_2026_20260810_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:15p", + "game_datetime_utc": "2026-08-10T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -100515,8 +94931,7 @@ "canonical_id": "game_mlb_2026_20260810_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-10T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -100533,8 +94948,7 @@ "canonical_id": "game_mlb_2026_20260810_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:45p", + "game_datetime_utc": "2026-08-10T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -100551,8 +94965,7 @@ "canonical_id": "game_mlb_2026_20260811_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:38p", + "game_datetime_utc": "2026-08-11T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -100569,8 +94982,7 @@ "canonical_id": "game_mlb_2026_20260811_mil_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -100587,8 +94999,7 @@ "canonical_id": "game_mlb_2026_20260811_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -100605,8 +95016,7 @@ "canonical_id": "game_mlb_2026_20260811_tbr_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -100623,8 +95033,7 @@ "canonical_id": "game_mlb_2026_20260811_hou_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -100641,8 +95050,7 @@ "canonical_id": "game_wnba_2026_20260811_chi_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-10", - "time": "7p", + "game_datetime_utc": "2026-08-11T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Chicago Sky", "home_team_abbrev": "SEA", @@ -100659,8 +95067,7 @@ "canonical_id": "game_mlb_2026_20260811_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:10p", + "game_datetime_utc": "2026-08-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -100677,8 +95084,7 @@ "canonical_id": "game_mlb_2026_20260811_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -100695,8 +95101,7 @@ "canonical_id": "game_mlb_2026_20260811_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -100713,8 +95118,7 @@ "canonical_id": "game_mlb_2026_20260811_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -100731,8 +95135,7 @@ "canonical_id": "game_mlb_2026_20260811_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:05p", + "game_datetime_utc": "2026-08-11T23:05:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -100749,8 +95152,7 @@ "canonical_id": "game_mlb_2026_20260811_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:07p", + "game_datetime_utc": "2026-08-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -100767,8 +95169,7 @@ "canonical_id": "game_mlb_2026_20260811_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:15p", + "game_datetime_utc": "2026-08-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -100785,8 +95186,7 @@ "canonical_id": "game_wnba_2026_20260811_ny_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7:30p", + "game_datetime_utc": "2026-08-11T23:30:00Z", "home_team": "Indiana Fever", "away_team": "New York Liberty", "home_team_abbrev": "IND", @@ -100803,8 +95203,7 @@ "canonical_id": "game_mlb_2026_20260811_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -100821,8 +95220,7 @@ "canonical_id": "game_mlb_2026_20260811_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -100839,8 +95237,7 @@ "canonical_id": "game_mlb_2026_20260811_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -100857,8 +95254,7 @@ "canonical_id": "game_mlb_2026_20260812_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:38p", + "game_datetime_utc": "2026-08-12T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -100875,8 +95271,7 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -100893,8 +95288,7 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -100911,8 +95305,7 @@ "canonical_id": "game_mlb_2026_20260812_mil_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -100929,8 +95322,7 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-12T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -100947,8 +95339,7 @@ "canonical_id": "game_wnba_2026_20260812_phx_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7p", + "game_datetime_utc": "2026-08-12T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Phoenix Mercury", "home_team_abbrev": "LA", @@ -100965,8 +95356,7 @@ "canonical_id": "game_wnba_2026_20260812_was_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7p", + "game_datetime_utc": "2026-08-12T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Washington Mystics", "home_team_abbrev": "LV", @@ -100983,8 +95373,7 @@ "canonical_id": "game_mlb_2026_20260812_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:10p", + "game_datetime_utc": "2026-08-12T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -101001,8 +95390,7 @@ "canonical_id": "game_mlb_2026_20260812_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:40p", + "game_datetime_utc": "2026-08-12T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -101019,8 +95407,7 @@ "canonical_id": "game_mlb_2026_20260812_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "1:15p", + "game_datetime_utc": "2026-08-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -101037,8 +95424,7 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:05p", + "game_datetime_utc": "2026-08-12T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -101055,8 +95441,7 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:40p", + "game_datetime_utc": "2026-08-12T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -101073,8 +95458,7 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:45p", + "game_datetime_utc": "2026-08-12T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -101091,8 +95475,7 @@ "canonical_id": "game_mlb_2026_20260812_mil_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "1:10p", + "game_datetime_utc": "2026-08-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -101109,8 +95492,7 @@ "canonical_id": "game_mlb_2026_20260812_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -101127,8 +95509,7 @@ "canonical_id": "game_mlb_2026_20260812_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -101145,8 +95526,7 @@ "canonical_id": "game_mlb_2026_20260812_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:45p", + "game_datetime_utc": "2026-08-12T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -101163,8 +95543,7 @@ "canonical_id": "game_mlb_2026_20260812_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:05p", + "game_datetime_utc": "2026-08-12T23:05:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -101181,8 +95560,7 @@ "canonical_id": "game_mlb_2026_20260812_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:07p", + "game_datetime_utc": "2026-08-12T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -101199,8 +95577,7 @@ "canonical_id": "game_mlb_2026_20260812_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:15p", + "game_datetime_utc": "2026-08-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -101217,8 +95594,7 @@ "canonical_id": "game_mlb_2026_20260812_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -101235,8 +95611,7 @@ "canonical_id": "game_wnba_2026_20260813_chi_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-12", - "time": "7p", + "game_datetime_utc": "2026-08-13T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Chicago Sky", "home_team_abbrev": "GSV", @@ -101253,8 +95628,7 @@ "canonical_id": "game_mlb_2026_20260813_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:10p", + "game_datetime_utc": "2026-08-13T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -101271,8 +95645,7 @@ "canonical_id": "game_mlb_2026_20260813_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:10p", + "game_datetime_utc": "2026-08-13T02:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -101289,8 +95662,7 @@ "canonical_id": "game_mlb_2026_20260813_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -101307,8 +95679,7 @@ "canonical_id": "game_mlb_2026_20260813_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -101325,8 +95696,7 @@ "canonical_id": "game_mlb_2026_20260813_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:35p", + "game_datetime_utc": "2026-08-13T17:35:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -101343,8 +95713,7 @@ "canonical_id": "game_mlb_2026_20260813_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -101361,8 +95730,7 @@ "canonical_id": "game_mlb_2026_20260813_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "3:07p", + "game_datetime_utc": "2026-08-13T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -101379,8 +95747,7 @@ "canonical_id": "game_mlb_2026_20260813_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "4:05p", + "game_datetime_utc": "2026-08-13T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -101397,8 +95764,7 @@ "canonical_id": "game_wnba_2026_20260813_atl_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "7p", + "game_datetime_utc": "2026-08-13T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Atlanta Dream", "home_team_abbrev": "CON", @@ -101415,8 +95781,7 @@ "canonical_id": "game_mlb_2026_20260813_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "6:30p", + "game_datetime_utc": "2026-08-13T23:30:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -101433,8 +95798,7 @@ "canonical_id": "game_wnba_2026_20260814_la_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "8p", + "game_datetime_utc": "2026-08-14T00:00:00Z", "home_team": "New York Liberty", "away_team": "Los Angeles Sparks", "home_team_abbrev": "NY", @@ -101451,8 +95815,7 @@ "canonical_id": "game_wnba_2026_20260814_was_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "7p", + "game_datetime_utc": "2026-08-14T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Washington Mystics", "home_team_abbrev": "LV", @@ -101469,8 +95832,7 @@ "canonical_id": "game_mlb_2026_20260814_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "7:07p", + "game_datetime_utc": "2026-08-14T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -101487,8 +95849,7 @@ "canonical_id": "game_mlb_2026_20260814_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -101505,8 +95866,7 @@ "canonical_id": "game_mlb_2026_20260814_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "1:20p", + "game_datetime_utc": "2026-08-14T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -101523,8 +95883,7 @@ "canonical_id": "game_mlb_2026_20260814_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:10p", + "game_datetime_utc": "2026-08-14T22:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -101541,8 +95900,7 @@ "canonical_id": "game_mlb_2026_20260814_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-14T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -101559,8 +95917,7 @@ "canonical_id": "game_mlb_2026_20260814_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-14T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -101577,8 +95934,7 @@ "canonical_id": "game_mlb_2026_20260814_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:07p", + "game_datetime_utc": "2026-08-14T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -101595,8 +95951,7 @@ "canonical_id": "game_mlb_2026_20260814_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -101613,8 +95968,7 @@ "canonical_id": "game_mlb_2026_20260814_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -101631,8 +95985,7 @@ "canonical_id": "game_mlb_2026_20260814_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -101649,8 +96002,7 @@ "canonical_id": "game_mlb_2026_20260814_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:15p", + "game_datetime_utc": "2026-08-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -101667,8 +96019,7 @@ "canonical_id": "game_wnba_2026_20260814_dal_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-14", - "time": "7:30p", + "game_datetime_utc": "2026-08-14T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Dallas Wings", "home_team_abbrev": "IND", @@ -101685,8 +96036,7 @@ "canonical_id": "game_nwsl_2026_20260815_kcc_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "8p", + "game_datetime_utc": "2026-08-15T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "NJY", @@ -101703,8 +96053,7 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -101721,8 +96070,7 @@ "canonical_id": "game_mlb_2026_20260815_kc_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:38p", + "game_datetime_utc": "2026-08-15T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -101739,8 +96087,7 @@ "canonical_id": "game_mlb_2026_20260815_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -101757,8 +96104,7 @@ "canonical_id": "game_nwsl_2026_20260815_bay_uta", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "8p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "San Francisco Bay FC", "home_team_abbrev": "UTA", @@ -101775,8 +96121,7 @@ "canonical_id": "game_nwsl_2026_20260815_chi_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "7p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "SEA", @@ -101793,8 +96138,7 @@ "canonical_id": "game_nwsl_2026_20260815_den_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "7p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "SDW", @@ -101811,8 +96155,7 @@ "canonical_id": "game_mlb_2026_20260815_mil_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -101829,8 +96172,7 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:15p", + "game_datetime_utc": "2026-08-15T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -101847,8 +96189,7 @@ "canonical_id": "game_wnba_2026_20260815_ny_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "1p", + "game_datetime_utc": "2026-08-15T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "New York Liberty", "home_team_abbrev": "CON", @@ -101865,8 +96206,7 @@ "canonical_id": "game_mlb_2026_20260815_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:10p", + "game_datetime_utc": "2026-08-15T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -101883,8 +96223,7 @@ "canonical_id": "game_mlb_2026_20260815_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:20p", + "game_datetime_utc": "2026-08-15T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -101901,8 +96240,7 @@ "canonical_id": "game_mlb_2026_20260815_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "3:07p", + "game_datetime_utc": "2026-08-15T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -101919,8 +96257,7 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:05p", + "game_datetime_utc": "2026-08-15T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -101937,8 +96274,7 @@ "canonical_id": "game_mlb_2026_20260815_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "4:10p", + "game_datetime_utc": "2026-08-15T20:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -101955,8 +96291,7 @@ "canonical_id": "game_mlb_2026_20260815_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -101973,8 +96308,7 @@ "canonical_id": "game_nwsl_2026_20260815_bos_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-15", - "time": "6:30p", + "game_datetime_utc": "2026-08-15T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "RGN", @@ -101991,8 +96325,7 @@ "canonical_id": "game_mlb_2026_20260815_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -102009,8 +96342,7 @@ "canonical_id": "game_mlb_2026_20260815_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -102027,8 +96359,7 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -102045,8 +96376,7 @@ "canonical_id": "game_mlb_2026_20260815_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -102063,8 +96393,7 @@ "canonical_id": "game_mlb_2026_20260815_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -102081,8 +96410,7 @@ "canonical_id": "game_mlb_2026_20260815_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "7:15p", + "game_datetime_utc": "2026-08-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -102099,8 +96427,7 @@ "canonical_id": "game_mlb_2026_20260815_mil_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "4:15p", + "game_datetime_utc": "2026-08-15T23:15:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -102117,8 +96444,7 @@ "canonical_id": "game_mls_2026_20260815_cin_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "ORL", @@ -102135,8 +96461,7 @@ "canonical_id": "game_mls_2026_20260815_ne_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "New England New England Revolution", "home_team_abbrev": "TOR", @@ -102153,8 +96478,7 @@ "canonical_id": "game_mls_2026_20260815_clb_clt", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CLT", @@ -102171,8 +96495,7 @@ "canonical_id": "game_mls_2026_20260815_dc_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Washington D.C. United", "home_team_abbrev": "MTL", @@ -102189,8 +96512,7 @@ "canonical_id": "game_mls_2026_20260815_ny_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New York New York Red Bulls", "home_team_abbrev": "ATL", @@ -102207,8 +96529,7 @@ "canonical_id": "game_wnba_2026_20260815_la_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Los Angeles Sparks", "home_team_abbrev": "WAS", @@ -102225,8 +96546,7 @@ "canonical_id": "game_wnba_2026_20260816_min_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "5p", + "game_datetime_utc": "2026-08-16T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Minnesota Lynx", "home_team_abbrev": "LV", @@ -102243,8 +96563,7 @@ "canonical_id": "game_mls_2026_20260816_mia_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Miami Inter Miami", "home_team_abbrev": "NSH", @@ -102261,8 +96580,7 @@ "canonical_id": "game_mls_2026_20260816_lag_hou", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "HOU", @@ -102279,8 +96597,7 @@ "canonical_id": "game_mls_2026_20260816_dal_aus", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "AUS", @@ -102297,8 +96614,7 @@ "canonical_id": "game_nwsl_2026_20260816_orl_por", "sport": "NWSL", "season": "2026", - "date": "2026-08-15", - "time": "5:45p", + "game_datetime_utc": "2026-08-16T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "POR", @@ -102315,8 +96631,7 @@ "canonical_id": "game_mls_2026_20260816_min_slc", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SLC", @@ -102333,8 +96648,7 @@ "canonical_id": "game_mls_2026_20260816_skc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "COL", @@ -102351,8 +96665,7 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:38p", + "game_datetime_utc": "2026-08-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -102369,8 +96682,7 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -102387,8 +96699,7 @@ "canonical_id": "game_mls_2026_20260816_sd_lafc", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "LAFC", @@ -102405,8 +96716,7 @@ "canonical_id": "game_mls_2026_20260816_stl_sj", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SJ", @@ -102423,8 +96733,7 @@ "canonical_id": "game_mlb_2026_20260816_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "12:10p", + "game_datetime_utc": "2026-08-16T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -102441,8 +96750,7 @@ "canonical_id": "game_mlb_2026_20260816_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:35p", + "game_datetime_utc": "2026-08-16T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -102459,8 +96767,7 @@ "canonical_id": "game_mlb_2026_20260816_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:35p", + "game_datetime_utc": "2026-08-16T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -102477,8 +96784,7 @@ "canonical_id": "game_mlb_2026_20260816_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:37p", + "game_datetime_utc": "2026-08-16T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -102495,8 +96801,7 @@ "canonical_id": "game_mlb_2026_20260816_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -102513,8 +96818,7 @@ "canonical_id": "game_mlb_2026_20260816_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -102531,8 +96835,7 @@ "canonical_id": "game_mlb_2026_20260816_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -102549,8 +96852,7 @@ "canonical_id": "game_mlb_2026_20260816_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -102567,8 +96869,7 @@ "canonical_id": "game_mlb_2026_20260816_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:10p", + "game_datetime_utc": "2026-08-16T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -102585,8 +96886,7 @@ "canonical_id": "game_mlb_2026_20260816_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "2:10p", + "game_datetime_utc": "2026-08-16T19:10:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -102603,8 +96903,7 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:05p", + "game_datetime_utc": "2026-08-16T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -102621,8 +96920,7 @@ "canonical_id": "game_mlb_2026_20260816_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:05p", + "game_datetime_utc": "2026-08-16T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -102639,8 +96937,7 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:07p", + "game_datetime_utc": "2026-08-16T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -102657,8 +96954,7 @@ "canonical_id": "game_mlb_2026_20260816_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:10p", + "game_datetime_utc": "2026-08-16T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -102675,8 +96971,7 @@ "canonical_id": "game_wnba_2026_20260816_chi_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-16", - "time": "2p", + "game_datetime_utc": "2026-08-16T21:00:00Z", "home_team": "Seattle Storm", "away_team": "Chicago Sky", "home_team_abbrev": "SEA", @@ -102693,8 +96988,7 @@ "canonical_id": "game_mls_2026_20260816_phi_nyc", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "6:30p", + "game_datetime_utc": "2026-08-16T22:30:00Z", "home_team": "New York New York City FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NYC", @@ -102711,8 +97005,7 @@ "canonical_id": "game_mls_2026_20260816_por_chi", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "5:30p", + "game_datetime_utc": "2026-08-16T22:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Portland Portland Timbers", "home_team_abbrev": "CHI", @@ -102729,8 +97022,7 @@ "canonical_id": "game_nwsl_2026_20260816_hou_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-16", - "time": "7p", + "game_datetime_utc": "2026-08-16T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Houston Houston Dash", "home_team_abbrev": "NCC", @@ -102747,8 +97039,7 @@ "canonical_id": "game_wnba_2026_20260816_ind_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-16", - "time": "7p", + "game_datetime_utc": "2026-08-16T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Indiana Fever", "home_team_abbrev": "ATL", @@ -102765,8 +97056,7 @@ "canonical_id": "game_mlb_2026_20260816_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "6:20p", + "game_datetime_utc": "2026-08-16T23:20:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -102783,8 +97073,7 @@ "canonical_id": "game_mls_2026_20260817_van_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "6p", + "game_datetime_utc": "2026-08-17T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SEA", @@ -102801,8 +97090,7 @@ "canonical_id": "game_nwsl_2026_20260817_wsh_ang", "sport": "NWSL", "season": "2026", - "date": "2026-08-16", - "time": "6p", + "game_datetime_utc": "2026-08-17T01:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "ANG", @@ -102819,8 +97107,7 @@ "canonical_id": "game_mlb_2026_20260817_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -102837,8 +97124,7 @@ "canonical_id": "game_mlb_2026_20260817_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -102855,8 +97141,7 @@ "canonical_id": "game_mlb_2026_20260817_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -102873,8 +97158,7 @@ "canonical_id": "game_mlb_2026_20260817_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:05p", + "game_datetime_utc": "2026-08-17T23:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -102891,8 +97175,7 @@ "canonical_id": "game_mlb_2026_20260817_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:10p", + "game_datetime_utc": "2026-08-17T23:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -102909,8 +97192,7 @@ "canonical_id": "game_mlb_2026_20260817_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:10p", + "game_datetime_utc": "2026-08-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -102927,8 +97209,7 @@ "canonical_id": "game_mlb_2026_20260817_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -102945,8 +97226,7 @@ "canonical_id": "game_mlb_2026_20260817_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -102963,8 +97243,7 @@ "canonical_id": "game_mlb_2026_20260818_chw_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:05p", + "game_datetime_utc": "2026-08-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -102981,8 +97260,7 @@ "canonical_id": "game_mlb_2026_20260818_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -102999,8 +97277,7 @@ "canonical_id": "game_wnba_2026_20260818_dal_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-17", - "time": "7p", + "game_datetime_utc": "2026-08-18T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Dallas Wings", "home_team_abbrev": "GSV", @@ -103017,8 +97294,7 @@ "canonical_id": "game_mlb_2026_20260818_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:35p", + "game_datetime_utc": "2026-08-18T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -103035,8 +97311,7 @@ "canonical_id": "game_mlb_2026_20260818_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103053,8 +97328,7 @@ "canonical_id": "game_mlb_2026_20260818_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -103071,8 +97345,7 @@ "canonical_id": "game_mlb_2026_20260818_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -103089,8 +97362,7 @@ "canonical_id": "game_mlb_2026_20260818_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103107,8 +97379,7 @@ "canonical_id": "game_mlb_2026_20260818_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103125,8 +97396,7 @@ "canonical_id": "game_wnba_2026_20260818_la_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "7p", + "game_datetime_utc": "2026-08-18T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CON", @@ -103143,8 +97413,7 @@ "canonical_id": "game_mlb_2026_20260818_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-18T23:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -103161,8 +97430,7 @@ "canonical_id": "game_mlb_2026_20260818_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-18T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -103179,8 +97447,7 @@ "canonical_id": "game_mlb_2026_20260818_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -103197,8 +97464,7 @@ "canonical_id": "game_mlb_2026_20260818_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -103215,8 +97481,7 @@ "canonical_id": "game_mlb_2026_20260818_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -103233,8 +97498,7 @@ "canonical_id": "game_mlb_2026_20260819_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:05p", + "game_datetime_utc": "2026-08-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -103251,8 +97515,7 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:05p", + "game_datetime_utc": "2026-08-19T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -103269,8 +97532,7 @@ "canonical_id": "game_mlb_2026_20260819_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-19T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -103287,8 +97549,7 @@ "canonical_id": "game_mlb_2026_20260819_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -103305,8 +97566,7 @@ "canonical_id": "game_wnba_2026_20260819_ny_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "8p", + "game_datetime_utc": "2026-08-19T01:00:00Z", "home_team": "Chicago Sky", "away_team": "New York Liberty", "home_team_abbrev": "CHI", @@ -103323,8 +97583,7 @@ "canonical_id": "game_wnba_2026_20260819_atl_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "7p", + "game_datetime_utc": "2026-08-19T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Atlanta Dream", "home_team_abbrev": "LV", @@ -103341,8 +97600,7 @@ "canonical_id": "game_mlb_2026_20260819_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "12:35p", + "game_datetime_utc": "2026-08-19T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -103359,8 +97617,7 @@ "canonical_id": "game_mlb_2026_20260819_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "1:10p", + "game_datetime_utc": "2026-08-19T17:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -103377,8 +97634,7 @@ "canonical_id": "game_mlb_2026_20260819_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "12:40p", + "game_datetime_utc": "2026-08-19T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -103395,8 +97651,7 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "1:20p", + "game_datetime_utc": "2026-08-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -103413,8 +97668,7 @@ "canonical_id": "game_mlb_2026_20260819_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "4:10p", + "game_datetime_utc": "2026-08-19T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -103431,8 +97685,7 @@ "canonical_id": "game_mlb_2026_20260819_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:05p", + "game_datetime_utc": "2026-08-19T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -103449,8 +97702,7 @@ "canonical_id": "game_nwsl_2026_20260819_sea_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-19", - "time": "6:30p", + "game_datetime_utc": "2026-08-19T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "RGN", @@ -103467,8 +97719,7 @@ "canonical_id": "game_mlb_2026_20260819_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:35p", + "game_datetime_utc": "2026-08-19T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -103485,8 +97736,7 @@ "canonical_id": "game_mlb_2026_20260819_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103503,8 +97753,7 @@ "canonical_id": "game_mlb_2026_20260819_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103521,8 +97770,7 @@ "canonical_id": "game_mlb_2026_20260819_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103539,8 +97787,7 @@ "canonical_id": "game_mls_2026_20260819_ne_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "New England New England Revolution", "home_team_abbrev": "DC", @@ -103557,8 +97804,7 @@ "canonical_id": "game_mls_2026_20260819_mtl_clb", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CLB", @@ -103575,8 +97821,7 @@ "canonical_id": "game_mls_2026_20260819_clt_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "TOR", @@ -103593,8 +97838,7 @@ "canonical_id": "game_mls_2026_20260819_mia_phi", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Miami Inter Miami", "home_team_abbrev": "PHI", @@ -103611,8 +97855,7 @@ "canonical_id": "game_mls_2026_20260819_chi_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "ORL", @@ -103629,8 +97872,7 @@ "canonical_id": "game_mls_2026_20260819_nsh_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Nashville Nashville SC", "home_team_abbrev": "RB", @@ -103647,8 +97889,7 @@ "canonical_id": "game_mls_2026_20260819_nyc_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New York New York City FC", "home_team_abbrev": "CIN", @@ -103665,8 +97906,7 @@ "canonical_id": "game_mlb_2026_20260819_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -103683,8 +97923,7 @@ "canonical_id": "game_mlb_2026_20260819_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -103701,8 +97940,7 @@ "canonical_id": "game_mls_2026_20260820_stl_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T00:00:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SKC", @@ -103719,8 +97957,7 @@ "canonical_id": "game_nwsl_2026_20260820_chi_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "HOU", @@ -103737,8 +97974,7 @@ "canonical_id": "game_mlb_2026_20260820_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "7:05p", + "game_datetime_utc": "2026-08-20T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -103755,8 +97991,7 @@ "canonical_id": "game_mlb_2026_20260820_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "7:10p", + "game_datetime_utc": "2026-08-20T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -103773,8 +98008,7 @@ "canonical_id": "game_mls_2026_20260820_atl_min", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MIN", @@ -103791,8 +98025,7 @@ "canonical_id": "game_mlb_2026_20260820_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -103809,8 +98042,7 @@ "canonical_id": "game_mls_2026_20260820_lafc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "COL", @@ -103827,8 +98059,7 @@ "canonical_id": "game_mls_2026_20260820_aus_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "6:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Austin Austin FC", "home_team_abbrev": "SEA", @@ -103845,8 +98076,7 @@ "canonical_id": "game_mls_2026_20260820_dal_slc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SLC", @@ -103863,8 +98093,7 @@ "canonical_id": "game_wnba_2026_20260820_min_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Minnesota Lynx", "home_team_abbrev": "GSV", @@ -103881,8 +98110,7 @@ "canonical_id": "game_mls_2026_20260820_hou_van", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "VAN", @@ -103899,8 +98127,7 @@ "canonical_id": "game_mls_2026_20260820_sd_por", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "San Diego San Diego FC", "home_team_abbrev": "POR", @@ -103917,8 +98144,7 @@ "canonical_id": "game_mls_2026_20260820_sj_lag", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "LAG", @@ -103935,8 +98161,7 @@ "canonical_id": "game_mlb_2026_20260820_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "12:40p", + "game_datetime_utc": "2026-08-20T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103953,8 +98178,7 @@ "canonical_id": "game_mlb_2026_20260820_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103971,8 +98195,7 @@ "canonical_id": "game_mlb_2026_20260820_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103989,8 +98212,7 @@ "canonical_id": "game_mlb_2026_20260820_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -104007,8 +98229,7 @@ "canonical_id": "game_mlb_2026_20260820_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -104025,8 +98246,7 @@ "canonical_id": "game_mlb_2026_20260820_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "6:35p", + "game_datetime_utc": "2026-08-20T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -104043,8 +98263,7 @@ "canonical_id": "game_wnba_2026_20260821_ind_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Indiana Fever", "home_team_abbrev": "DAL", @@ -104061,8 +98280,7 @@ "canonical_id": "game_mlb_2026_20260821_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -104079,8 +98297,7 @@ "canonical_id": "game_mlb_2026_20260821_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -104097,8 +98314,7 @@ "canonical_id": "game_wnba_2026_20260821_con_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Connecticut Sun", "home_team_abbrev": "LV", @@ -104115,8 +98331,7 @@ "canonical_id": "game_wnba_2026_20260821_atl_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Atlanta Dream", "home_team_abbrev": "LA", @@ -104133,8 +98348,7 @@ "canonical_id": "game_mlb_2026_20260821_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "3:10p", + "game_datetime_utc": "2026-08-21T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -104151,8 +98365,7 @@ "canonical_id": "game_mlb_2026_20260821_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-21T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -104169,8 +98382,7 @@ "canonical_id": "game_mlb_2026_20260821_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -104187,8 +98399,7 @@ "canonical_id": "game_mlb_2026_20260821_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -104205,8 +98416,7 @@ "canonical_id": "game_mlb_2026_20260821_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -104223,8 +98433,7 @@ "canonical_id": "game_mlb_2026_20260821_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -104241,8 +98450,7 @@ "canonical_id": "game_wnba_2026_20260821_gsv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-21", - "time": "6:30p", + "game_datetime_utc": "2026-08-21T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Golden State Valkyries", "home_team_abbrev": "CHI", @@ -104259,8 +98467,7 @@ "canonical_id": "game_wnba_2026_20260821_min_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-21", - "time": "7:30p", + "game_datetime_utc": "2026-08-21T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Minnesota Lynx", "home_team_abbrev": "WAS", @@ -104277,8 +98484,7 @@ "canonical_id": "game_mlb_2026_20260821_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-21T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -104295,8 +98501,7 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -104313,8 +98518,7 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -104331,8 +98535,7 @@ "canonical_id": "game_mlb_2026_20260822_oak_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T00:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -104349,8 +98552,7 @@ "canonical_id": "game_mlb_2026_20260822_cle_col", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -104367,8 +98569,7 @@ "canonical_id": "game_mlb_2026_20260822_min_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -104385,8 +98586,7 @@ "canonical_id": "game_mlb_2026_20260822_cin_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -104403,8 +98603,7 @@ "canonical_id": "game_nwsl_2026_20260822_uta_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-21", - "time": "7p", + "game_datetime_utc": "2026-08-22T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Utah Utah Royals", "home_team_abbrev": "SDW", @@ -104421,8 +98620,7 @@ "canonical_id": "game_mlb_2026_20260822_pit_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -104439,8 +98637,7 @@ "canonical_id": "game_mlb_2026_20260822_chc_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -104457,8 +98654,7 @@ "canonical_id": "game_mlb_2026_20260822_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "1:35p", + "game_datetime_utc": "2026-08-22T17:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -104475,8 +98671,7 @@ "canonical_id": "game_mlb_2026_20260822_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "1:10p", + "game_datetime_utc": "2026-08-22T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -104493,8 +98688,7 @@ "canonical_id": "game_mlb_2026_20260822_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "4:10p", + "game_datetime_utc": "2026-08-22T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -104511,8 +98705,7 @@ "canonical_id": "game_mlb_2026_20260822_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:05p", + "game_datetime_utc": "2026-08-22T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -104529,8 +98722,7 @@ "canonical_id": "game_nwsl_2026_20260822_sea_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "5:30p", + "game_datetime_utc": "2026-08-22T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "KCC", @@ -104547,8 +98739,7 @@ "canonical_id": "game_wnba_2026_20260822_ind_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "7p", + "game_datetime_utc": "2026-08-22T23:00:00Z", "home_team": "New York Liberty", "away_team": "Indiana Fever", "home_team_abbrev": "NY", @@ -104565,8 +98756,7 @@ "canonical_id": "game_mlb_2026_20260822_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "7:05p", + "game_datetime_utc": "2026-08-22T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -104583,8 +98773,7 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:05p", + "game_datetime_utc": "2026-08-22T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -104601,8 +98790,7 @@ "canonical_id": "game_mlb_2026_20260822_oak_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-22T23:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -104619,8 +98807,7 @@ "canonical_id": "game_mlb_2026_20260822_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-22T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -104637,8 +98824,7 @@ "canonical_id": "game_mlb_2026_20260822_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "7:15p", + "game_datetime_utc": "2026-08-22T23:15:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -104655,8 +98841,7 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:15p", + "game_datetime_utc": "2026-08-22T23:15:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -104673,8 +98858,7 @@ "canonical_id": "game_mls_2026_20260822_slc_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "ORL", @@ -104691,8 +98875,7 @@ "canonical_id": "game_mls_2026_20260822_tor_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Toronto Toronto FC", "home_team_abbrev": "MIA", @@ -104709,8 +98892,7 @@ "canonical_id": "game_mls_2026_20260822_chi_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "RB", @@ -104727,8 +98909,7 @@ "canonical_id": "game_mls_2026_20260822_lag_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "MTL", @@ -104745,8 +98926,7 @@ "canonical_id": "game_mls_2026_20260822_dc_clt", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Washington D.C. United", "home_team_abbrev": "CLT", @@ -104763,8 +98943,7 @@ "canonical_id": "game_mls_2026_20260822_sea_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "CIN", @@ -104781,8 +98960,7 @@ "canonical_id": "game_nwsl_2026_20260822_bos_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "NCC", @@ -104799,8 +98977,7 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-23T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -104817,8 +98994,7 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "5:10p", + "game_datetime_utc": "2026-08-23T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -104835,8 +99011,7 @@ "canonical_id": "game_mls_2026_20260823_phi_aus", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "AUS", @@ -104853,8 +99028,7 @@ "canonical_id": "game_mls_2026_20260823_clb_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NSH", @@ -104871,8 +99045,7 @@ "canonical_id": "game_mls_2026_20260823_hou_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "STL", @@ -104889,8 +99062,7 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "5:40p", + "game_datetime_utc": "2026-08-23T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -104907,8 +99079,7 @@ "canonical_id": "game_nwsl_2026_20260823_den_por", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "5:45p", + "game_datetime_utc": "2026-08-23T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "POR", @@ -104925,8 +99096,7 @@ "canonical_id": "game_wnba_2026_20260823_con_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "6p", + "game_datetime_utc": "2026-08-23T01:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Connecticut Sun", "home_team_abbrev": "LA", @@ -104943,8 +99113,7 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-23T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -104961,8 +99130,7 @@ "canonical_id": "game_mls_2026_20260823_dal_van", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "6:30p", + "game_datetime_utc": "2026-08-23T01:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Dallas FC Dallas", "home_team_abbrev": "VAN", @@ -104979,8 +99147,7 @@ "canonical_id": "game_mlb_2026_20260823_chc_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:40p", + "game_datetime_utc": "2026-08-23T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -104997,8 +99164,7 @@ "canonical_id": "game_wnba_2026_20260823_atl_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "10p", + "game_datetime_utc": "2026-08-23T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Atlanta Dream", "home_team_abbrev": "PHX", @@ -105015,8 +99181,7 @@ "canonical_id": "game_mls_2026_20260823_min_sj", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SJ", @@ -105033,8 +99198,7 @@ "canonical_id": "game_mls_2026_20260823_por_lafc", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "LAFC", @@ -105051,8 +99215,7 @@ "canonical_id": "game_mls_2026_20260823_col_sd", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SD", @@ -105069,8 +99232,7 @@ "canonical_id": "game_mlb_2026_20260823_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -105087,8 +99249,7 @@ "canonical_id": "game_mlb_2026_20260823_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -105105,8 +99266,7 @@ "canonical_id": "game_mlb_2026_20260823_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -105123,8 +99283,7 @@ "canonical_id": "game_mlb_2026_20260823_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:40p", + "game_datetime_utc": "2026-08-23T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -105141,8 +99300,7 @@ "canonical_id": "game_nwsl_2026_20260823_rgn_chi", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "1p", + "game_datetime_utc": "2026-08-23T18:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "CHI", @@ -105159,8 +99317,7 @@ "canonical_id": "game_mlb_2026_20260823_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -105177,8 +99334,7 @@ "canonical_id": "game_mlb_2026_20260823_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -105195,8 +99351,7 @@ "canonical_id": "game_mlb_2026_20260823_oak_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -105213,8 +99368,7 @@ "canonical_id": "game_mlb_2026_20260823_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -105231,8 +99385,7 @@ "canonical_id": "game_mlb_2026_20260823_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "3:10p", + "game_datetime_utc": "2026-08-23T19:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -105249,8 +99402,7 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -105267,8 +99419,7 @@ "canonical_id": "game_nwsl_2026_20260823_orl_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "4p", + "game_datetime_utc": "2026-08-23T20:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "WSH", @@ -105285,8 +99436,7 @@ "canonical_id": "game_wnba_2026_20260823_sea_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-23", - "time": "3p", + "game_datetime_utc": "2026-08-23T20:00:00Z", "home_team": "Dallas Wings", "away_team": "Seattle Storm", "home_team_abbrev": "DAL", @@ -105303,8 +99453,7 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -105321,8 +99470,7 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -105339,8 +99487,7 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -105357,8 +99504,7 @@ "canonical_id": "game_mlb_2026_20260823_chc_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -105375,8 +99521,7 @@ "canonical_id": "game_mls_2026_20260823_nyc_ne", "sport": "MLS", "season": "2026", - "date": "2026-08-23", - "time": "4:30p", + "game_datetime_utc": "2026-08-23T20:30:00Z", "home_team": "New England New England Revolution", "away_team": "New York New York City FC", "home_team_abbrev": "NE", @@ -105393,8 +99538,7 @@ "canonical_id": "game_nwsl_2026_20260823_hou_bay", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "3p", + "game_datetime_utc": "2026-08-23T22:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "BAY", @@ -105411,8 +99555,7 @@ "canonical_id": "game_mls_2026_20260823_skc_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-23", - "time": "7p", + "game_datetime_utc": "2026-08-23T23:00:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "ATL", @@ -105429,8 +99572,7 @@ "canonical_id": "game_wnba_2026_20260823_ind_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-23", - "time": "6p", + "game_datetime_utc": "2026-08-23T23:00:00Z", "home_team": "Chicago Sky", "away_team": "Indiana Fever", "home_team_abbrev": "CHI", @@ -105447,8 +99589,7 @@ "canonical_id": "game_mlb_2026_20260823_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "7:10p", + "game_datetime_utc": "2026-08-23T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -105465,8 +99606,7 @@ "canonical_id": "game_nwsl_2026_20260824_njy_ang", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "5p", + "game_datetime_utc": "2026-08-24T00:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "ANG", @@ -105483,8 +99623,7 @@ "canonical_id": "game_mlb_2026_20260824_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -105501,8 +99640,7 @@ "canonical_id": "game_mlb_2026_20260824_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -105519,8 +99657,7 @@ "canonical_id": "game_mlb_2026_20260824_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:45p", + "game_datetime_utc": "2026-08-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -105537,8 +99674,7 @@ "canonical_id": "game_mlb_2026_20260824_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -105555,8 +99691,7 @@ "canonical_id": "game_wnba_2026_20260825_gsv_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-24", - "time": "7p", + "game_datetime_utc": "2026-08-25T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Golden State Valkyries", "home_team_abbrev": "MIN", @@ -105573,8 +99708,7 @@ "canonical_id": "game_mlb_2026_20260825_cle_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:38p", + "game_datetime_utc": "2026-08-25T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -105591,8 +99725,7 @@ "canonical_id": "game_mlb_2026_20260825_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -105609,8 +99742,7 @@ "canonical_id": "game_mlb_2026_20260825_chc_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -105627,8 +99759,7 @@ "canonical_id": "game_mlb_2026_20260825_pit_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -105645,8 +99776,7 @@ "canonical_id": "game_mlb_2026_20260825_phi_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -105663,8 +99793,7 @@ "canonical_id": "game_mlb_2026_20260825_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -105681,8 +99810,7 @@ "canonical_id": "game_wnba_2026_20260825_atl_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-24", - "time": "7p", + "game_datetime_utc": "2026-08-25T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Atlanta Dream", "home_team_abbrev": "LA", @@ -105699,8 +99827,7 @@ "canonical_id": "game_mlb_2026_20260825_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -105717,8 +99844,7 @@ "canonical_id": "game_mlb_2026_20260825_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -105735,8 +99861,7 @@ "canonical_id": "game_mlb_2026_20260825_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -105753,8 +99878,7 @@ "canonical_id": "game_wnba_2026_20260825_chi_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-25", - "time": "7p", + "game_datetime_utc": "2026-08-25T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Chicago Sky", "home_team_abbrev": "CON", @@ -105771,8 +99895,7 @@ "canonical_id": "game_mlb_2026_20260825_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:05p", + "game_datetime_utc": "2026-08-25T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -105789,8 +99912,7 @@ "canonical_id": "game_mlb_2026_20260825_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:07p", + "game_datetime_utc": "2026-08-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -105807,8 +99929,7 @@ "canonical_id": "game_mlb_2026_20260825_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:10p", + "game_datetime_utc": "2026-08-25T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -105825,8 +99946,7 @@ "canonical_id": "game_mlb_2026_20260825_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:15p", + "game_datetime_utc": "2026-08-25T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -105843,8 +99963,7 @@ "canonical_id": "game_mlb_2026_20260825_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -105861,8 +99980,7 @@ "canonical_id": "game_mlb_2026_20260825_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -105879,8 +99997,7 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:38p", + "game_datetime_utc": "2026-08-26T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -105897,8 +100014,7 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -105915,8 +100031,7 @@ "canonical_id": "game_mlb_2026_20260826_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -105933,8 +100048,7 @@ "canonical_id": "game_mlb_2026_20260826_phi_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -105951,8 +100065,7 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -105969,8 +100082,7 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -105987,8 +100099,7 @@ "canonical_id": "game_wnba_2026_20260826_was_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-25", - "time": "10p", + "game_datetime_utc": "2026-08-26T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Washington Mystics", "home_team_abbrev": "PHX", @@ -106005,8 +100116,7 @@ "canonical_id": "game_mlb_2026_20260826_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -106023,8 +100133,7 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "12:40p", + "game_datetime_utc": "2026-08-26T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -106041,8 +100150,7 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "12:45p", + "game_datetime_utc": "2026-08-26T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -106059,8 +100167,7 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:07p", + "game_datetime_utc": "2026-08-26T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -106077,8 +100184,7 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -106095,8 +100201,7 @@ "canonical_id": "game_mlb_2026_20260826_phi_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -106113,8 +100218,7 @@ "canonical_id": "game_mlb_2026_20260826_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -106131,8 +100235,7 @@ "canonical_id": "game_mlb_2026_20260826_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -106149,8 +100252,7 @@ "canonical_id": "game_mlb_2026_20260826_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:05p", + "game_datetime_utc": "2026-08-26T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -106167,8 +100269,7 @@ "canonical_id": "game_mlb_2026_20260826_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:07p", + "game_datetime_utc": "2026-08-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -106185,8 +100286,7 @@ "canonical_id": "game_mlb_2026_20260826_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:10p", + "game_datetime_utc": "2026-08-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -106203,8 +100303,7 @@ "canonical_id": "game_mlb_2026_20260826_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:15p", + "game_datetime_utc": "2026-08-26T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -106221,8 +100320,7 @@ "canonical_id": "game_mlb_2026_20260826_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -106239,8 +100337,7 @@ "canonical_id": "game_mlb_2026_20260826_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -106257,8 +100354,7 @@ "canonical_id": "game_nwsl_2026_20260827_ang_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-26", - "time": "8p", + "game_datetime_utc": "2026-08-27T00:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "NCC", @@ -106275,8 +100371,7 @@ "canonical_id": "game_wnba_2026_20260827_gsv_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-26", - "time": "8p", + "game_datetime_utc": "2026-08-27T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Golden State Valkyries", "home_team_abbrev": "CON", @@ -106293,8 +100388,7 @@ "canonical_id": "game_mlb_2026_20260827_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:05p", + "game_datetime_utc": "2026-08-27T01:05:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -106311,8 +100405,7 @@ "canonical_id": "game_mlb_2026_20260827_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "1:05p", + "game_datetime_utc": "2026-08-27T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -106329,8 +100422,7 @@ "canonical_id": "game_mlb_2026_20260827_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "1:15p", + "game_datetime_utc": "2026-08-27T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -106347,8 +100439,7 @@ "canonical_id": "game_mlb_2026_20260827_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:05p", + "game_datetime_utc": "2026-08-27T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -106365,8 +100456,7 @@ "canonical_id": "game_mlb_2026_20260827_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:07p", + "game_datetime_utc": "2026-08-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -106383,8 +100473,7 @@ "canonical_id": "game_mlb_2026_20260827_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:10p", + "game_datetime_utc": "2026-08-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -106401,8 +100490,7 @@ "canonical_id": "game_mlb_2026_20260827_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:15p", + "game_datetime_utc": "2026-08-27T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -106419,8 +100507,7 @@ "canonical_id": "game_wnba_2026_20260828_gsv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-27", - "time": "8p", + "game_datetime_utc": "2026-08-28T00:00:00Z", "home_team": "New York Liberty", "away_team": "Golden State Valkyries", "home_team_abbrev": "NY", @@ -106437,8 +100524,7 @@ "canonical_id": "game_mlb_2026_20260828_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "6:45p", + "game_datetime_utc": "2026-08-28T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -106455,8 +100541,7 @@ "canonical_id": "game_wnba_2026_20260828_was_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-27", - "time": "10p", + "game_datetime_utc": "2026-08-28T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Washington Mystics", "home_team_abbrev": "PHX", @@ -106473,8 +100558,7 @@ "canonical_id": "game_mlb_2026_20260828_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "1:20p", + "game_datetime_utc": "2026-08-28T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -106491,8 +100575,7 @@ "canonical_id": "game_mlb_2026_20260828_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-28T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -106509,8 +100592,7 @@ "canonical_id": "game_mlb_2026_20260828_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:45p", + "game_datetime_utc": "2026-08-28T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -106527,8 +100609,7 @@ "canonical_id": "game_mlb_2026_20260828_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:05p", + "game_datetime_utc": "2026-08-28T23:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -106545,8 +100626,7 @@ "canonical_id": "game_mlb_2026_20260828_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:07p", + "game_datetime_utc": "2026-08-28T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -106563,8 +100643,7 @@ "canonical_id": "game_mlb_2026_20260828_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -106581,8 +100660,7 @@ "canonical_id": "game_mlb_2026_20260828_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -106599,8 +100677,7 @@ "canonical_id": "game_mlb_2026_20260828_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -106617,8 +100694,7 @@ "canonical_id": "game_mlb_2026_20260828_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -106635,8 +100711,7 @@ "canonical_id": "game_wnba_2026_20260828_con_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-28", - "time": "7:30p", + "game_datetime_utc": "2026-08-28T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Connecticut Sun", "home_team_abbrev": "IND", @@ -106653,8 +100728,7 @@ "canonical_id": "game_mlb_2026_20260828_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-28T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -106671,8 +100745,7 @@ "canonical_id": "game_nwsl_2026_20260829_por_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-28", - "time": "8p", + "game_datetime_utc": "2026-08-29T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "NJY", @@ -106689,8 +100762,7 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_1", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-29T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -106707,8 +100779,7 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -106725,8 +100796,7 @@ "canonical_id": "game_mlb_2026_20260829_phi_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:38p", + "game_datetime_utc": "2026-08-29T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -106743,8 +100813,7 @@ "canonical_id": "game_mlb_2026_20260829_bal_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -106761,8 +100830,7 @@ "canonical_id": "game_nwsl_2026_20260829_rgn_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-28", - "time": "7p", + "game_datetime_utc": "2026-08-29T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "SDW", @@ -106779,8 +100847,7 @@ "canonical_id": "game_wnba_2026_20260829_was_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-28", - "time": "7p", + "game_datetime_utc": "2026-08-29T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Washington Mystics", "home_team_abbrev": "LA", @@ -106797,8 +100864,7 @@ "canonical_id": "game_mlb_2026_20260829_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -106815,8 +100881,7 @@ "canonical_id": "game_wnba_2026_20260829_chi_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-29", - "time": "1p", + "game_datetime_utc": "2026-08-29T17:00:00Z", "home_team": "New York Liberty", "away_team": "Chicago Sky", "home_team_abbrev": "NY", @@ -106833,8 +100898,7 @@ "canonical_id": "game_mlb_2026_20260829_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:10p", + "game_datetime_utc": "2026-08-29T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -106851,8 +100915,7 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_2", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:10p", + "game_datetime_utc": "2026-08-29T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -106869,8 +100932,7 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:15p", + "game_datetime_utc": "2026-08-29T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -106887,8 +100949,7 @@ "canonical_id": "game_mlb_2026_20260829_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:20p", + "game_datetime_utc": "2026-08-29T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -106905,8 +100966,7 @@ "canonical_id": "game_mlb_2026_20260829_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "3:07p", + "game_datetime_utc": "2026-08-29T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -106923,8 +100983,7 @@ "canonical_id": "game_mlb_2026_20260829_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:05p", + "game_datetime_utc": "2026-08-29T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -106941,8 +101000,7 @@ "canonical_id": "game_mlb_2026_20260829_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -106959,8 +101017,7 @@ "canonical_id": "game_mlb_2026_20260829_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -106977,8 +101034,7 @@ "canonical_id": "game_mlb_2026_20260829_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -106995,8 +101051,7 @@ "canonical_id": "game_mlb_2026_20260829_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -107013,8 +101068,7 @@ "canonical_id": "game_mls_2026_20260829_chi_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "1:30p", + "game_datetime_utc": "2026-08-29T20:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "SEA", @@ -107031,8 +101085,7 @@ "canonical_id": "game_nwsl_2026_20260829_ncc_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "5:30p", + "game_datetime_utc": "2026-08-29T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "KCC", @@ -107049,8 +101102,7 @@ "canonical_id": "game_nwsl_2026_20260829_uta_orl", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "7p", + "game_datetime_utc": "2026-08-29T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Utah Utah Royals", "home_team_abbrev": "ORL", @@ -107067,8 +101119,7 @@ "canonical_id": "game_mlb_2026_20260829_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T23:15:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -107085,8 +101136,7 @@ "canonical_id": "game_mlb_2026_20260829_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "6:15p", + "game_datetime_utc": "2026-08-29T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -107103,8 +101153,7 @@ "canonical_id": "game_mls_2026_20260829_phi_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "RB", @@ -107121,8 +101170,7 @@ "canonical_id": "game_mls_2026_20260829_mtl_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Montreal CF Montreal", "home_team_abbrev": "MIA", @@ -107139,8 +101187,7 @@ "canonical_id": "game_mls_2026_20260829_nyc_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "New York New York City FC", "home_team_abbrev": "TOR", @@ -107157,8 +101204,7 @@ "canonical_id": "game_mls_2026_20260829_clt_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "ATL", @@ -107175,8 +101221,7 @@ "canonical_id": "game_mls_2026_20260829_ne_clb", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New England New England Revolution", "home_team_abbrev": "CLB", @@ -107193,8 +101238,7 @@ "canonical_id": "game_mls_2026_20260829_lafc_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "DC", @@ -107211,8 +101255,7 @@ "canonical_id": "game_mls_2026_20260830_sj_hou", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "HOU", @@ -107229,8 +101272,7 @@ "canonical_id": "game_mls_2026_20260830_orl_min", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Orlando Orlando City", "home_team_abbrev": "MIN", @@ -107247,8 +101289,7 @@ "canonical_id": "game_mls_2026_20260830_cin_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NSH", @@ -107265,8 +101306,7 @@ "canonical_id": "game_mls_2026_20260830_van_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SKC", @@ -107283,8 +101323,7 @@ "canonical_id": "game_nwsl_2026_20260830_chi_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "6:45p", + "game_datetime_utc": "2026-08-30T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "DEN", @@ -107301,8 +101340,7 @@ "canonical_id": "game_mls_2026_20260830_slc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "COL", @@ -107319,8 +101357,7 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:05p", + "game_datetime_utc": "2026-08-30T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -107337,8 +101374,7 @@ "canonical_id": "game_mlb_2026_20260830_bal_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:05p", + "game_datetime_utc": "2026-08-30T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -107355,8 +101391,7 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:07p", + "game_datetime_utc": "2026-08-30T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -107373,8 +101408,7 @@ "canonical_id": "game_mls_2026_20260830_aus_por", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Austin Austin FC", "home_team_abbrev": "POR", @@ -107391,8 +101425,7 @@ "canonical_id": "game_mls_2026_20260830_lag_sd", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SD", @@ -107409,8 +101442,7 @@ "canonical_id": "game_mlb_2026_20260830_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "12:10p", + "game_datetime_utc": "2026-08-30T16:10:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -107427,8 +101459,7 @@ "canonical_id": "game_nwsl_2026_20260830_bay_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-30", - "time": "12:30p", + "game_datetime_utc": "2026-08-30T16:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "San Francisco Bay FC", "home_team_abbrev": "WSH", @@ -107445,8 +101476,7 @@ "canonical_id": "game_mlb_2026_20260830_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:35p", + "game_datetime_utc": "2026-08-30T17:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -107463,8 +101493,7 @@ "canonical_id": "game_mlb_2026_20260830_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:35p", + "game_datetime_utc": "2026-08-30T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -107481,8 +101510,7 @@ "canonical_id": "game_mlb_2026_20260830_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:37p", + "game_datetime_utc": "2026-08-30T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -107499,8 +101527,7 @@ "canonical_id": "game_mlb_2026_20260830_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -107517,8 +101544,7 @@ "canonical_id": "game_mlb_2026_20260830_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -107535,8 +101561,7 @@ "canonical_id": "game_mlb_2026_20260830_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -107553,8 +101578,7 @@ "canonical_id": "game_mlb_2026_20260830_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:10p", + "game_datetime_utc": "2026-08-30T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -107571,8 +101595,7 @@ "canonical_id": "game_mlb_2026_20260830_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:10p", + "game_datetime_utc": "2026-08-30T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -107589,8 +101612,7 @@ "canonical_id": "game_mlb_2026_20260830_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:15p", + "game_datetime_utc": "2026-08-30T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -107607,8 +101629,7 @@ "canonical_id": "game_wnba_2026_20260830_min_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "3p", + "game_datetime_utc": "2026-08-30T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Minnesota Lynx", "home_team_abbrev": "ATL", @@ -107625,8 +101646,7 @@ "canonical_id": "game_mlb_2026_20260830_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "2:10p", + "game_datetime_utc": "2026-08-30T19:10:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -107643,8 +101663,7 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:05p", + "game_datetime_utc": "2026-08-30T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -107661,8 +101680,7 @@ "canonical_id": "game_mlb_2026_20260830_bal_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:05p", + "game_datetime_utc": "2026-08-30T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -107679,8 +101697,7 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:07p", + "game_datetime_utc": "2026-08-30T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -107697,8 +101714,7 @@ "canonical_id": "game_wnba_2026_20260830_la_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "2p", + "game_datetime_utc": "2026-08-30T21:00:00Z", "home_team": "Seattle Storm", "away_team": "Los Angeles Sparks", "home_team_abbrev": "SEA", @@ -107715,8 +101731,7 @@ "canonical_id": "game_mls_2026_20260830_dal_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-30", - "time": "6p", + "game_datetime_utc": "2026-08-30T23:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "STL", @@ -107733,8 +101748,7 @@ "canonical_id": "game_nwsl_2026_20260830_hou_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-30", - "time": "4p", + "game_datetime_utc": "2026-08-30T23:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Houston Houston Dash", "home_team_abbrev": "SEA", @@ -107751,8 +101765,7 @@ "canonical_id": "game_mlb_2026_20260830_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "7:20p", + "game_datetime_utc": "2026-08-30T23:20:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -107769,8 +101782,7 @@ "canonical_id": "game_wnba_2026_20260831_con_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "7p", + "game_datetime_utc": "2026-08-31T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Connecticut Sun", "home_team_abbrev": "DAL", @@ -107787,8 +101799,7 @@ "canonical_id": "game_mlb_2026_20260831_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -107805,8 +101816,7 @@ "canonical_id": "game_mlb_2026_20260831_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -107823,8 +101833,7 @@ "canonical_id": "game_mlb_2026_20260831_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:45p", + "game_datetime_utc": "2026-08-31T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -107841,8 +101850,7 @@ "canonical_id": "game_mlb_2026_20260831_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:45p", + "game_datetime_utc": "2026-08-31T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -107859,8 +101867,7 @@ "canonical_id": "game_mlb_2026_20260831_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -107877,8 +101884,7 @@ "canonical_id": "game_mlb_2026_20260831_det_min", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -107895,8 +101901,7 @@ "canonical_id": "game_nwsl_2026_20260901_ang_bos", "sport": "NWSL", "season": "2026", - "date": "2026-08-31", - "time": "8p", + "game_datetime_utc": "2026-09-01T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "BOS", @@ -107913,8 +101918,7 @@ "canonical_id": "game_mlb_2026_20260901_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "7:05p", + "game_datetime_utc": "2026-09-01T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -107931,8 +101935,7 @@ "canonical_id": "game_mlb_2026_20260901_chw_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "7:10p", + "game_datetime_utc": "2026-09-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -107949,8 +101952,7 @@ "canonical_id": "game_mlb_2026_20260901_bal_col", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -107967,8 +101969,7 @@ "canonical_id": "game_mlb_2026_20260901_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:38p", + "game_datetime_utc": "2026-09-01T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -107985,8 +101986,7 @@ "canonical_id": "game_mlb_2026_20260901_phi_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108003,8 +102003,7 @@ "canonical_id": "game_mlb_2026_20260901_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -108021,8 +102020,7 @@ "canonical_id": "game_mlb_2026_20260901_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108039,8 +102037,7 @@ "canonical_id": "game_mlb_2026_20260901_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -108057,8 +102054,7 @@ "canonical_id": "game_mlb_2026_20260901_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108075,8 +102071,7 @@ "canonical_id": "game_mlb_2026_20260901_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:45p", + "game_datetime_utc": "2026-09-01T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -108093,8 +102088,7 @@ "canonical_id": "game_mlb_2026_20260901_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:45p", + "game_datetime_utc": "2026-09-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -108111,8 +102105,7 @@ "canonical_id": "game_mlb_2026_20260901_det_min", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -108129,8 +102122,7 @@ "canonical_id": "game_mlb_2026_20260901_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108147,8 +102139,7 @@ "canonical_id": "game_mlb_2026_20260901_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108165,8 +102156,7 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:05p", + "game_datetime_utc": "2026-09-02T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -108183,8 +102173,7 @@ "canonical_id": "game_mlb_2026_20260902_chw_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:10p", + "game_datetime_utc": "2026-09-02T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108201,8 +102190,7 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -108219,8 +102207,7 @@ "canonical_id": "game_mlb_2026_20260902_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:38p", + "game_datetime_utc": "2026-09-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -108237,8 +102224,7 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108255,8 +102241,7 @@ "canonical_id": "game_mlb_2026_20260902_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:10p", + "game_datetime_utc": "2026-09-02T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108273,8 +102258,7 @@ "canonical_id": "game_mlb_2026_20260902_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "12:40p", + "game_datetime_utc": "2026-09-02T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -108291,8 +102275,7 @@ "canonical_id": "game_mlb_2026_20260902_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:05p", + "game_datetime_utc": "2026-09-02T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -108309,8 +102292,7 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:35p", + "game_datetime_utc": "2026-09-02T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -108327,8 +102309,7 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:10p", + "game_datetime_utc": "2026-09-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -108345,8 +102326,7 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "12:40p", + "game_datetime_utc": "2026-09-02T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108363,8 +102343,7 @@ "canonical_id": "game_mlb_2026_20260902_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "4:10p", + "game_datetime_utc": "2026-09-02T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -108381,8 +102360,7 @@ "canonical_id": "game_mlb_2026_20260902_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108399,8 +102377,7 @@ "canonical_id": "game_mlb_2026_20260902_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108417,8 +102394,7 @@ "canonical_id": "game_mlb_2026_20260902_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -108435,8 +102411,7 @@ "canonical_id": "game_mlb_2026_20260902_det_min", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -108453,8 +102428,7 @@ "canonical_id": "game_mlb_2026_20260902_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108471,8 +102445,7 @@ "canonical_id": "game_mlb_2026_20260902_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108489,8 +102462,7 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "7:10p", + "game_datetime_utc": "2026-09-03T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108507,8 +102479,7 @@ "canonical_id": "game_mlb_2026_20260903_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:38p", + "game_datetime_utc": "2026-09-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -108525,8 +102496,7 @@ "canonical_id": "game_mlb_2026_20260903_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "7:10p", + "game_datetime_utc": "2026-09-03T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108543,8 +102513,7 @@ "canonical_id": "game_mlb_2026_20260903_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "12:35p", + "game_datetime_utc": "2026-09-03T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108561,8 +102530,7 @@ "canonical_id": "game_mlb_2026_20260903_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "1:10p", + "game_datetime_utc": "2026-09-03T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108579,8 +102547,7 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "1:10p", + "game_datetime_utc": "2026-09-03T18:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108597,8 +102564,7 @@ "canonical_id": "game_mlb_2026_20260903_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:35p", + "game_datetime_utc": "2026-09-03T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -108615,8 +102581,7 @@ "canonical_id": "game_mlb_2026_20260903_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-03T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108633,8 +102598,7 @@ "canonical_id": "game_mlb_2026_20260903_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-03T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108651,8 +102615,7 @@ "canonical_id": "game_mlb_2026_20260904_tbr_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "7:05p", + "game_datetime_utc": "2026-09-04T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -108669,8 +102632,7 @@ "canonical_id": "game_mlb_2026_20260904_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -108687,8 +102649,7 @@ "canonical_id": "game_mlb_2026_20260904_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108705,8 +102666,7 @@ "canonical_id": "game_mlb_2026_20260904_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -108723,8 +102683,7 @@ "canonical_id": "game_mlb_2026_20260904_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -108741,8 +102700,7 @@ "canonical_id": "game_mlb_2026_20260904_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -108759,8 +102717,7 @@ "canonical_id": "game_mlb_2026_20260904_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:05p", + "game_datetime_utc": "2026-09-04T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -108777,8 +102734,7 @@ "canonical_id": "game_mlb_2026_20260904_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -108795,8 +102751,7 @@ "canonical_id": "game_mlb_2026_20260904_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -108813,8 +102768,7 @@ "canonical_id": "game_mlb_2026_20260904_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -108831,8 +102785,7 @@ "canonical_id": "game_mls_2026_20260904_nsh_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-04", - "time": "7:30p", + "game_datetime_utc": "2026-09-04T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "NYC", @@ -108849,8 +102802,7 @@ "canonical_id": "game_mlb_2026_20260904_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -108867,8 +102819,7 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:05p", + "game_datetime_utc": "2026-09-05T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -108885,8 +102836,7 @@ "canonical_id": "game_mlb_2026_20260905_tor_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -108903,8 +102853,7 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -108921,8 +102870,7 @@ "canonical_id": "game_mlb_2026_20260905_stl_col", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -108939,8 +102887,7 @@ "canonical_id": "game_nwsl_2026_20260905_bos_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-04", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T01:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "UTA", @@ -108957,8 +102904,7 @@ "canonical_id": "game_mlb_2026_20260905_nyy_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T01:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -108975,8 +102921,7 @@ "canonical_id": "game_nwsl_2026_20260905_kcc_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-04", - "time": "7p", + "game_datetime_utc": "2026-09-05T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "BAY", @@ -108993,8 +102938,7 @@ "canonical_id": "game_mlb_2026_20260905_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109011,8 +102955,7 @@ "canonical_id": "game_mlb_2026_20260905_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109029,8 +102972,7 @@ "canonical_id": "game_mlb_2026_20260905_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "4:10p", + "game_datetime_utc": "2026-09-05T20:10:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -109047,8 +102989,7 @@ "canonical_id": "game_mlb_2026_20260905_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "4:10p", + "game_datetime_utc": "2026-09-05T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -109065,8 +103006,7 @@ "canonical_id": "game_mlb_2026_20260905_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:05p", + "game_datetime_utc": "2026-09-05T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109083,8 +103023,7 @@ "canonical_id": "game_nwsl_2026_20260905_ang_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-05", - "time": "6:30p", + "game_datetime_utc": "2026-09-05T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "RGN", @@ -109101,8 +103040,7 @@ "canonical_id": "game_mlb_2026_20260905_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -109119,8 +103057,7 @@ "canonical_id": "game_mlb_2026_20260905_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -109137,8 +103074,7 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:05p", + "game_datetime_utc": "2026-09-05T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -109155,8 +103091,7 @@ "canonical_id": "game_mlb_2026_20260905_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-05T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -109173,8 +103108,7 @@ "canonical_id": "game_mlb_2026_20260905_tor_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-05T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -109191,8 +103125,7 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -109209,8 +103142,7 @@ "canonical_id": "game_mlb_2026_20260905_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "7:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -109227,8 +103159,7 @@ "canonical_id": "game_mlb_2026_20260905_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "7:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -109245,8 +103176,7 @@ "canonical_id": "game_mls_2026_20260905_hou_clt", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "CLT", @@ -109263,8 +103193,7 @@ "canonical_id": "game_mls_2026_20260905_chi_tor", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "TOR", @@ -109281,8 +103210,7 @@ "canonical_id": "game_mls_2026_20260905_col_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "CLB", @@ -109299,8 +103227,7 @@ "canonical_id": "game_mls_2026_20260905_dc_cin", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Washington D.C. United", "home_team_abbrev": "CIN", @@ -109317,8 +103244,7 @@ "canonical_id": "game_mls_2026_20260905_atl_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MIA", @@ -109335,8 +103261,7 @@ "canonical_id": "game_mls_2026_20260905_mtl_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Montreal CF Montreal", "home_team_abbrev": "PHI", @@ -109353,8 +103278,7 @@ "canonical_id": "game_mls_2026_20260905_sd_orl", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "San Diego San Diego FC", "home_team_abbrev": "ORL", @@ -109371,8 +103295,7 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-06T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -109389,8 +103312,7 @@ "canonical_id": "game_mls_2026_20260906_sj_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "AUS", @@ -109407,8 +103329,7 @@ "canonical_id": "game_mls_2026_20260906_skc_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "DAL", @@ -109425,8 +103346,7 @@ "canonical_id": "game_mls_2026_20260906_ny_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "5:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "New York New York Red Bulls", "home_team_abbrev": "SEA", @@ -109443,8 +103363,7 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "5:40p", + "game_datetime_utc": "2026-09-06T00:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -109461,8 +103380,7 @@ "canonical_id": "game_mlb_2026_20260906_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-06T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109479,8 +103397,7 @@ "canonical_id": "game_mls_2026_20260906_ne_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "6:30p", + "game_datetime_utc": "2026-09-06T01:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "New England New England Revolution", "home_team_abbrev": "LAG", @@ -109497,8 +103414,7 @@ "canonical_id": "game_mls_2026_20260906_lafc_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SLC", @@ -109515,8 +103431,7 @@ "canonical_id": "game_mlb_2026_20260906_oak_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109533,8 +103448,7 @@ "canonical_id": "game_mls_2026_20260906_min_por", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "POR", @@ -109551,8 +103465,7 @@ "canonical_id": "game_mls_2026_20260906_stl_van", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "VAN", @@ -109569,8 +103482,7 @@ "canonical_id": "game_mlb_2026_20260906_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "12:10p", + "game_datetime_utc": "2026-09-06T16:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -109587,8 +103499,7 @@ "canonical_id": "game_mlb_2026_20260906_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -109605,8 +103516,7 @@ "canonical_id": "game_mlb_2026_20260906_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -109623,8 +103533,7 @@ "canonical_id": "game_mlb_2026_20260906_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -109641,8 +103550,7 @@ "canonical_id": "game_mlb_2026_20260906_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -109659,8 +103567,7 @@ "canonical_id": "game_mlb_2026_20260906_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -109677,8 +103584,7 @@ "canonical_id": "game_nwsl_2026_20260906_njy_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "12p", + "game_datetime_utc": "2026-09-06T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "DEN", @@ -109695,8 +103601,7 @@ "canonical_id": "game_mlb_2026_20260906_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -109713,8 +103618,7 @@ "canonical_id": "game_mlb_2026_20260906_ari_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T18:10:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -109731,8 +103635,7 @@ "canonical_id": "game_mlb_2026_20260906_tbr_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -109749,8 +103652,7 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -109767,8 +103669,7 @@ "canonical_id": "game_mlb_2026_20260906_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "3:10p", + "game_datetime_utc": "2026-09-06T19:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109785,8 +103686,7 @@ "canonical_id": "game_nwsl_2026_20260906_wsh_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "1p", + "game_datetime_utc": "2026-09-06T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Washington Washington Spirit", "home_team_abbrev": "POR", @@ -109803,8 +103703,7 @@ "canonical_id": "game_nwsl_2026_20260906_ncc_chi", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "3p", + "game_datetime_utc": "2026-09-06T20:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "CHI", @@ -109821,8 +103720,7 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T20:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -109839,8 +103737,7 @@ "canonical_id": "game_mlb_2026_20260906_oak_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109857,8 +103754,7 @@ "canonical_id": "game_nwsl_2026_20260906_hou_orl", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "7p", + "game_datetime_utc": "2026-09-06T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Houston Houston Dash", "home_team_abbrev": "ORL", @@ -109875,8 +103771,7 @@ "canonical_id": "game_mlb_2026_20260906_tor_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "6:20p", + "game_datetime_utc": "2026-09-06T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -109893,8 +103788,7 @@ "canonical_id": "game_nwsl_2026_20260907_sdw_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "6p", + "game_datetime_utc": "2026-09-07T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "SEA", @@ -109911,8 +103805,7 @@ "canonical_id": "game_mlb_2026_20260907_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "7:10p", + "game_datetime_utc": "2026-09-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109929,8 +103822,7 @@ "canonical_id": "game_mlb_2026_20260907_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:05p", + "game_datetime_utc": "2026-09-07T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109947,8 +103839,7 @@ "canonical_id": "game_mlb_2026_20260907_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -109965,8 +103856,7 @@ "canonical_id": "game_mlb_2026_20260907_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -109983,8 +103873,7 @@ "canonical_id": "game_mlb_2026_20260907_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:35p", + "game_datetime_utc": "2026-09-07T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110001,8 +103890,7 @@ "canonical_id": "game_mlb_2026_20260907_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:35p", + "game_datetime_utc": "2026-09-07T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110019,8 +103907,7 @@ "canonical_id": "game_mlb_2026_20260907_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110037,8 +103924,7 @@ "canonical_id": "game_mlb_2026_20260907_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110055,8 +103941,7 @@ "canonical_id": "game_mlb_2026_20260907_wsn_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "2:10p", + "game_datetime_utc": "2026-09-07T21:10:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110073,8 +103958,7 @@ "canonical_id": "game_mlb_2026_20260908_stl_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "5:10p", + "game_datetime_utc": "2026-09-08T00:10:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110091,8 +103975,7 @@ "canonical_id": "game_mlb_2026_20260908_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "6:10p", + "game_datetime_utc": "2026-09-08T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110109,8 +103992,7 @@ "canonical_id": "game_mlb_2026_20260908_tor_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "7:05p", + "game_datetime_utc": "2026-09-08T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110127,8 +104009,7 @@ "canonical_id": "game_mlb_2026_20260908_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:35p", + "game_datetime_utc": "2026-09-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110145,8 +104026,7 @@ "canonical_id": "game_mlb_2026_20260908_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110163,8 +104043,7 @@ "canonical_id": "game_mlb_2026_20260908_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -110181,8 +104060,7 @@ "canonical_id": "game_mlb_2026_20260908_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -110199,8 +104077,7 @@ "canonical_id": "game_mlb_2026_20260908_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:45p", + "game_datetime_utc": "2026-09-08T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110217,8 +104094,7 @@ "canonical_id": "game_mlb_2026_20260908_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:05p", + "game_datetime_utc": "2026-09-08T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -110235,8 +104111,7 @@ "canonical_id": "game_mlb_2026_20260908_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:15p", + "game_datetime_utc": "2026-09-08T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110253,8 +104128,7 @@ "canonical_id": "game_mlb_2026_20260908_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110271,8 +104145,7 @@ "canonical_id": "game_mlb_2026_20260908_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110289,8 +104162,7 @@ "canonical_id": "game_mlb_2026_20260908_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -110307,8 +104179,7 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110325,8 +104196,7 @@ "canonical_id": "game_mlb_2026_20260909_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110343,8 +104213,7 @@ "canonical_id": "game_mlb_2026_20260909_tor_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110361,8 +104230,7 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:45p", + "game_datetime_utc": "2026-09-09T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110379,8 +104247,7 @@ "canonical_id": "game_mlb_2026_20260909_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:10p", + "game_datetime_utc": "2026-09-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110397,8 +104264,7 @@ "canonical_id": "game_mlb_2026_20260909_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "1:10p", + "game_datetime_utc": "2026-09-09T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -110415,8 +104281,7 @@ "canonical_id": "game_mlb_2026_20260909_tor_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "12:05p", + "game_datetime_utc": "2026-09-09T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110433,8 +104298,7 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "12:45p", + "game_datetime_utc": "2026-09-09T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110451,8 +104315,7 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "1:10p", + "game_datetime_utc": "2026-09-09T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110469,8 +104332,7 @@ "canonical_id": "game_mlb_2026_20260909_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:35p", + "game_datetime_utc": "2026-09-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110487,8 +104349,7 @@ "canonical_id": "game_mlb_2026_20260909_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -110505,8 +104366,7 @@ "canonical_id": "game_mlb_2026_20260909_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110523,8 +104383,7 @@ "canonical_id": "game_mlb_2026_20260909_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:45p", + "game_datetime_utc": "2026-09-09T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110541,8 +104400,7 @@ "canonical_id": "game_mlb_2026_20260909_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:05p", + "game_datetime_utc": "2026-09-09T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -110559,8 +104417,7 @@ "canonical_id": "game_mlb_2026_20260909_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:15p", + "game_datetime_utc": "2026-09-09T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110577,8 +104434,7 @@ "canonical_id": "game_mls_2026_20260909_orl_atl", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Orlando Orlando City", "home_team_abbrev": "ATL", @@ -110595,8 +104451,7 @@ "canonical_id": "game_mls_2026_20260909_nsh_tor", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "TOR", @@ -110613,8 +104468,7 @@ "canonical_id": "game_mls_2026_20260909_clt_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "MTL", @@ -110631,8 +104485,7 @@ "canonical_id": "game_mls_2026_20260909_clb_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "DC", @@ -110649,8 +104502,7 @@ "canonical_id": "game_mls_2026_20260909_ne_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "New York New York City FC", "away_team": "New England New England Revolution", "home_team_abbrev": "NYC", @@ -110667,8 +104519,7 @@ "canonical_id": "game_mls_2026_20260909_cin_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "PHI", @@ -110685,8 +104536,7 @@ "canonical_id": "game_mlb_2026_20260909_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -110703,8 +104553,7 @@ "canonical_id": "game_mlb_2026_20260909_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110721,8 +104570,7 @@ "canonical_id": "game_mlb_2026_20260909_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110739,8 +104587,7 @@ "canonical_id": "game_mls_2026_20260910_dal_min", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Dallas FC Dallas", "home_team_abbrev": "MIN", @@ -110757,8 +104604,7 @@ "canonical_id": "game_mls_2026_20260910_col_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "AUS", @@ -110775,8 +104621,7 @@ "canonical_id": "game_mls_2026_20260910_mia_chi", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Miami Inter Miami", "home_team_abbrev": "CHI", @@ -110793,8 +104638,7 @@ "canonical_id": "game_mls_2026_20260910_slc_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "HOU", @@ -110811,8 +104655,7 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-10T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110829,8 +104672,7 @@ "canonical_id": "game_mlb_2026_20260910_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:10p", + "game_datetime_utc": "2026-09-10T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110847,8 +104689,7 @@ "canonical_id": "game_mls_2026_20260910_ny_lafc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "LAFC", @@ -110865,8 +104706,7 @@ "canonical_id": "game_mls_2026_20260910_stl_por", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "POR", @@ -110883,8 +104723,7 @@ "canonical_id": "game_mls_2026_20260910_sj_sd", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SD", @@ -110901,8 +104740,7 @@ "canonical_id": "game_mls_2026_20260910_skc_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SEA", @@ -110919,8 +104757,7 @@ "canonical_id": "game_mls_2026_20260910_lag_van", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "VAN", @@ -110937,8 +104774,7 @@ "canonical_id": "game_mlb_2026_20260910_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "12:15p", + "game_datetime_utc": "2026-09-10T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110955,8 +104791,7 @@ "canonical_id": "game_mlb_2026_20260910_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "1:05p", + "game_datetime_utc": "2026-09-10T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110973,8 +104808,7 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "1:10p", + "game_datetime_utc": "2026-09-10T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110991,8 +104825,7 @@ "canonical_id": "game_mlb_2026_20260910_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "7:05p", + "game_datetime_utc": "2026-09-10T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -111009,8 +104842,7 @@ "canonical_id": "game_mlb_2026_20260910_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "6:40p", + "game_datetime_utc": "2026-09-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -111027,8 +104859,7 @@ "canonical_id": "game_mlb_2026_20260911_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "1:20p", + "game_datetime_utc": "2026-09-11T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -111045,8 +104876,7 @@ "canonical_id": "game_nwsl_2026_20260911_njy_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "6:30p", + "game_datetime_utc": "2026-09-11T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "RGN", @@ -111063,8 +104893,7 @@ "canonical_id": "game_mlb_2026_20260911_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-11T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -111081,8 +104910,7 @@ "canonical_id": "game_mlb_2026_20260911_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:45p", + "game_datetime_utc": "2026-09-11T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111099,8 +104927,7 @@ "canonical_id": "game_mlb_2026_20260911_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:05p", + "game_datetime_utc": "2026-09-11T23:05:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111117,8 +104944,7 @@ "canonical_id": "game_mlb_2026_20260911_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:07p", + "game_datetime_utc": "2026-09-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111135,8 +104961,7 @@ "canonical_id": "game_mlb_2026_20260911_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -111153,8 +104978,7 @@ "canonical_id": "game_mlb_2026_20260911_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -111171,8 +104995,7 @@ "canonical_id": "game_mlb_2026_20260911_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111189,8 +105012,7 @@ "canonical_id": "game_mlb_2026_20260911_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111207,8 +105029,7 @@ "canonical_id": "game_mlb_2026_20260911_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-11T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -111225,8 +105046,7 @@ "canonical_id": "game_nwsl_2026_20260912_orl_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "7p", + "game_datetime_utc": "2026-09-12T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "KCC", @@ -111243,8 +105063,7 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-12T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -111261,8 +105080,7 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -111279,8 +105097,7 @@ "canonical_id": "game_nwsl_2026_20260912_bay_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "5:30p", + "game_datetime_utc": "2026-09-12T00:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "San Francisco Bay FC", "home_team_abbrev": "SEA", @@ -111297,8 +105114,7 @@ "canonical_id": "game_mlb_2026_20260912_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-12T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -111315,8 +105131,7 @@ "canonical_id": "game_mlb_2026_20260912_tex_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-12T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -111333,8 +105148,7 @@ "canonical_id": "game_nwsl_2026_20260912_den_ang", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "7p", + "game_datetime_utc": "2026-09-12T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "ANG", @@ -111351,8 +105165,7 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -111369,8 +105182,7 @@ "canonical_id": "game_mlb_2026_20260912_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:10p", + "game_datetime_utc": "2026-09-12T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -111387,8 +105199,7 @@ "canonical_id": "game_mlb_2026_20260912_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:35p", + "game_datetime_utc": "2026-09-12T17:35:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111405,8 +105216,7 @@ "canonical_id": "game_mlb_2026_20260912_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:20p", + "game_datetime_utc": "2026-09-12T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -111423,8 +105233,7 @@ "canonical_id": "game_mlb_2026_20260912_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "3:07p", + "game_datetime_utc": "2026-09-12T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111441,8 +105250,7 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:05p", + "game_datetime_utc": "2026-09-12T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -111459,8 +105267,7 @@ "canonical_id": "game_mlb_2026_20260912_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:05p", + "game_datetime_utc": "2026-09-12T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111477,8 +105284,7 @@ "canonical_id": "game_mlb_2026_20260912_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -111495,8 +105301,7 @@ "canonical_id": "game_mlb_2026_20260912_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111513,8 +105318,7 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "3:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -111531,8 +105335,7 @@ "canonical_id": "game_mlb_2026_20260912_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:10p", + "game_datetime_utc": "2026-09-12T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -111549,8 +105352,7 @@ "canonical_id": "game_nwsl_2026_20260912_ncc_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-09-12", - "time": "3:30p", + "game_datetime_utc": "2026-09-12T22:30:00Z", "home_team": "San Diego San Diego Wave", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "SDW", @@ -111567,8 +105369,7 @@ "canonical_id": "game_mlb_2026_20260912_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:10p", + "game_datetime_utc": "2026-09-12T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -111585,8 +105386,7 @@ "canonical_id": "game_mlb_2026_20260912_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111603,8 +105403,7 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:15p", + "game_datetime_utc": "2026-09-12T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -111621,8 +105420,7 @@ "canonical_id": "game_mls_2026_20260912_ny_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CLB", @@ -111639,8 +105437,7 @@ "canonical_id": "game_mls_2026_20260912_atl_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "DC", @@ -111657,8 +105454,7 @@ "canonical_id": "game_mls_2026_20260912_clt_cin", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CIN", @@ -111675,8 +105471,7 @@ "canonical_id": "game_mls_2026_20260912_nsh_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Nashville Nashville SC", "home_team_abbrev": "MIA", @@ -111693,8 +105488,7 @@ "canonical_id": "game_mls_2026_20260912_tor_orl", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Toronto Toronto FC", "home_team_abbrev": "ORL", @@ -111711,8 +105505,7 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "5:10p", + "game_datetime_utc": "2026-09-13T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -111729,8 +105522,7 @@ "canonical_id": "game_mls_2026_20260913_lafc_skc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SKC", @@ -111747,8 +105539,7 @@ "canonical_id": "game_mls_2026_20260913_por_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Portland Portland Timbers", "home_team_abbrev": "DAL", @@ -111765,8 +105556,7 @@ "canonical_id": "game_mls_2026_20260913_min_stl", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "STL", @@ -111783,8 +105573,7 @@ "canonical_id": "game_nwsl_2026_20260913_uta_hou", "sport": "NWSL", "season": "2026", - "date": "2026-09-12", - "time": "7:45p", + "game_datetime_utc": "2026-09-13T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Utah Utah Royals", "home_team_abbrev": "HOU", @@ -111801,8 +105590,7 @@ "canonical_id": "game_mls_2026_20260913_mtl_col", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Montreal CF Montreal", "home_team_abbrev": "COL", @@ -111819,8 +105607,7 @@ "canonical_id": "game_mls_2026_20260913_nyc_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "New York New York City FC", "home_team_abbrev": "SLC", @@ -111837,8 +105624,7 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:40p", + "game_datetime_utc": "2026-09-13T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -111855,8 +105641,7 @@ "canonical_id": "game_mls_2026_20260913_sea_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "LAG", @@ -111873,8 +105658,7 @@ "canonical_id": "game_mls_2026_20260913_hou_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SJ", @@ -111891,8 +105675,7 @@ "canonical_id": "game_nwsl_2026_20260913_bos_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-09-13", - "time": "1p", + "game_datetime_utc": "2026-09-13T17:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "WSH", @@ -111909,8 +105692,7 @@ "canonical_id": "game_mlb_2026_20260913_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111927,8 +105709,7 @@ "canonical_id": "game_mlb_2026_20260913_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111945,8 +105726,7 @@ "canonical_id": "game_mlb_2026_20260913_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111963,8 +105743,7 @@ "canonical_id": "game_mlb_2026_20260913_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111981,8 +105760,7 @@ "canonical_id": "game_mlb_2026_20260913_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:37p", + "game_datetime_utc": "2026-09-13T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111999,8 +105777,7 @@ "canonical_id": "game_mlb_2026_20260913_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -112017,8 +105794,7 @@ "canonical_id": "game_mlb_2026_20260913_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -112035,8 +105811,7 @@ "canonical_id": "game_mlb_2026_20260913_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -112053,8 +105828,7 @@ "canonical_id": "game_mlb_2026_20260913_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -112071,8 +105845,7 @@ "canonical_id": "game_mlb_2026_20260913_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -112089,8 +105862,7 @@ "canonical_id": "game_mlb_2026_20260913_chw_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:15p", + "game_datetime_utc": "2026-09-13T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -112107,8 +105879,7 @@ "canonical_id": "game_mlb_2026_20260913_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:20p", + "game_datetime_utc": "2026-09-13T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -112125,8 +105896,7 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:05p", + "game_datetime_utc": "2026-09-13T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -112143,8 +105913,7 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -112161,8 +105930,7 @@ "canonical_id": "game_mls_2026_20260913_ne_chi", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "5:30p", + "game_datetime_utc": "2026-09-13T22:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New England New England Revolution", "home_team_abbrev": "CHI", @@ -112179,8 +105947,7 @@ "canonical_id": "game_mls_2026_20260913_aus_van", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "3:30p", + "game_datetime_utc": "2026-09-13T22:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Austin Austin FC", "home_team_abbrev": "VAN", @@ -112197,8 +105964,7 @@ "canonical_id": "game_nwsl_2026_20260913_chi_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-13", - "time": "4p", + "game_datetime_utc": "2026-09-13T23:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "POR", @@ -112215,8 +105981,7 @@ "canonical_id": "game_mlb_2026_20260913_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "4:20p", + "game_datetime_utc": "2026-09-13T23:20:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -112233,8 +105998,7 @@ "canonical_id": "game_mls_2026_20260914_phi_sd", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "6p", + "game_datetime_utc": "2026-09-14T01:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "SD", @@ -112251,8 +106015,7 @@ "canonical_id": "game_mlb_2026_20260914_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112269,8 +106032,7 @@ "canonical_id": "game_mlb_2026_20260914_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112287,8 +106049,7 @@ "canonical_id": "game_mlb_2026_20260914_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "7:07p", + "game_datetime_utc": "2026-09-14T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112305,8 +106066,7 @@ "canonical_id": "game_mlb_2026_20260914_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "7:10p", + "game_datetime_utc": "2026-09-14T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112323,8 +106083,7 @@ "canonical_id": "game_mlb_2026_20260914_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112341,8 +106100,7 @@ "canonical_id": "game_mlb_2026_20260914_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112359,8 +106117,7 @@ "canonical_id": "game_mlb_2026_20260914_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:45p", + "game_datetime_utc": "2026-09-14T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112377,8 +106134,7 @@ "canonical_id": "game_mlb_2026_20260915_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112395,8 +106151,7 @@ "canonical_id": "game_mlb_2026_20260915_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:38p", + "game_datetime_utc": "2026-09-15T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112413,8 +106168,7 @@ "canonical_id": "game_mlb_2026_20260915_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112431,8 +106185,7 @@ "canonical_id": "game_mlb_2026_20260915_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -112449,8 +106202,7 @@ "canonical_id": "game_mlb_2026_20260915_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112467,8 +106219,7 @@ "canonical_id": "game_mlb_2026_20260915_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -112485,8 +106236,7 @@ "canonical_id": "game_mlb_2026_20260915_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112503,8 +106253,7 @@ "canonical_id": "game_mlb_2026_20260915_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:45p", + "game_datetime_utc": "2026-09-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -112521,8 +106270,7 @@ "canonical_id": "game_mlb_2026_20260915_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:07p", + "game_datetime_utc": "2026-09-15T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112539,8 +106287,7 @@ "canonical_id": "game_mlb_2026_20260915_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:10p", + "game_datetime_utc": "2026-09-15T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112557,8 +106304,7 @@ "canonical_id": "game_mlb_2026_20260915_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112575,8 +106321,7 @@ "canonical_id": "game_mlb_2026_20260915_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112593,8 +106338,7 @@ "canonical_id": "game_mlb_2026_20260915_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:45p", + "game_datetime_utc": "2026-09-15T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112611,8 +106355,7 @@ "canonical_id": "game_mlb_2026_20260916_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:05p", + "game_datetime_utc": "2026-09-16T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -112629,8 +106372,7 @@ "canonical_id": "game_mlb_2026_20260916_kc_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:10p", + "game_datetime_utc": "2026-09-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -112647,8 +106389,7 @@ "canonical_id": "game_mlb_2026_20260916_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112665,8 +106406,7 @@ "canonical_id": "game_mlb_2026_20260916_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:38p", + "game_datetime_utc": "2026-09-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112683,8 +106423,7 @@ "canonical_id": "game_mlb_2026_20260916_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112701,8 +106440,7 @@ "canonical_id": "game_mlb_2026_20260916_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "1:10p", + "game_datetime_utc": "2026-09-16T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112719,8 +106457,7 @@ "canonical_id": "game_mlb_2026_20260916_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "12:15p", + "game_datetime_utc": "2026-09-16T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112737,8 +106474,7 @@ "canonical_id": "game_mlb_2026_20260916_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "12:40p", + "game_datetime_utc": "2026-09-16T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112755,8 +106491,7 @@ "canonical_id": "game_mlb_2026_20260916_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "3:07p", + "game_datetime_utc": "2026-09-16T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112773,8 +106508,7 @@ "canonical_id": "game_mlb_2026_20260916_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -112791,8 +106525,7 @@ "canonical_id": "game_mlb_2026_20260916_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112809,8 +106542,7 @@ "canonical_id": "game_mlb_2026_20260916_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -112827,8 +106559,7 @@ "canonical_id": "game_mlb_2026_20260916_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:45p", + "game_datetime_utc": "2026-09-16T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -112845,8 +106576,7 @@ "canonical_id": "game_mlb_2026_20260916_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:10p", + "game_datetime_utc": "2026-09-16T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112863,8 +106593,7 @@ "canonical_id": "game_mlb_2026_20260916_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112881,8 +106610,7 @@ "canonical_id": "game_mlb_2026_20260917_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:05p", + "game_datetime_utc": "2026-09-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -112899,8 +106627,7 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:10p", + "game_datetime_utc": "2026-09-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -112917,8 +106644,7 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112935,8 +106661,7 @@ "canonical_id": "game_nwsl_2026_20260917_bay_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-16", - "time": "7:30p", + "game_datetime_utc": "2026-09-17T01:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "DEN", @@ -112953,8 +106678,7 @@ "canonical_id": "game_mlb_2026_20260917_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:38p", + "game_datetime_utc": "2026-09-17T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112971,8 +106695,7 @@ "canonical_id": "game_mlb_2026_20260917_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112989,8 +106712,7 @@ "canonical_id": "game_nwsl_2026_20260917_sea_ang", "sport": "NWSL", "season": "2026", - "date": "2026-09-16", - "time": "7p", + "game_datetime_utc": "2026-09-17T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "ANG", @@ -113007,8 +106729,7 @@ "canonical_id": "game_mlb_2026_20260917_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "12:35p", + "game_datetime_utc": "2026-09-17T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -113025,8 +106746,7 @@ "canonical_id": "game_mlb_2026_20260917_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "12:40p", + "game_datetime_utc": "2026-09-17T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -113043,8 +106763,7 @@ "canonical_id": "game_mlb_2026_20260917_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "1:10p", + "game_datetime_utc": "2026-09-17T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -113061,8 +106780,7 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "1:10p", + "game_datetime_utc": "2026-09-17T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -113079,8 +106797,7 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:15p", + "game_datetime_utc": "2026-09-17T23:15:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -113097,8 +106814,7 @@ "canonical_id": "game_mlb_2026_20260917_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "7:15p", + "game_datetime_utc": "2026-09-17T23:15:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113115,8 +106831,7 @@ "canonical_id": "game_wnba_2026_20260917_con_atl", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7:30p", + "game_datetime_utc": "2026-09-17T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Connecticut Sun", "home_team_abbrev": "ATL", @@ -113133,8 +106848,7 @@ "canonical_id": "game_mlb_2026_20260917_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113151,8 +106865,7 @@ "canonical_id": "game_wnba_2026_20260918_la_dal", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Los Angeles Sparks", "home_team_abbrev": "DAL", @@ -113169,8 +106882,7 @@ "canonical_id": "game_wnba_2026_20260918_was_chi", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Washington Mystics", "home_team_abbrev": "CHI", @@ -113187,8 +106899,7 @@ "canonical_id": "game_mlb_2026_20260918_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "7:05p", + "game_datetime_utc": "2026-09-18T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -113205,8 +106916,7 @@ "canonical_id": "game_mlb_2026_20260918_min_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:38p", + "game_datetime_utc": "2026-09-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -113223,8 +106933,7 @@ "canonical_id": "game_wnba_2026_20260918_lv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Las Vegas Aces", "home_team_abbrev": "SEA", @@ -113241,8 +106950,7 @@ "canonical_id": "game_mlb_2026_20260918_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -113259,8 +106967,7 @@ "canonical_id": "game_mlb_2026_20260918_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -113277,8 +106984,7 @@ "canonical_id": "game_mlb_2026_20260918_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:05p", + "game_datetime_utc": "2026-09-18T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -113295,8 +107001,7 @@ "canonical_id": "game_mlb_2026_20260918_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -113313,8 +107018,7 @@ "canonical_id": "game_mlb_2026_20260918_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -113331,8 +107035,7 @@ "canonical_id": "game_mlb_2026_20260918_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113349,8 +107052,7 @@ "canonical_id": "game_mls_2026_20260918_ny_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-18", - "time": "7:30p", + "game_datetime_utc": "2026-09-18T23:30:00Z", "home_team": "New York New York City FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NYC", @@ -113367,8 +107069,7 @@ "canonical_id": "game_wnba_2026_20260918_ny_min", "sport": "WNBA", "season": "2026", - "date": "2026-09-18", - "time": "6:30p", + "game_datetime_utc": "2026-09-18T23:30:00Z", "home_team": "Minnesota Lynx", "away_team": "New York Liberty", "home_team_abbrev": "MIN", @@ -113385,8 +107086,7 @@ "canonical_id": "game_mlb_2026_20260918_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113403,8 +107103,7 @@ "canonical_id": "game_nwsl_2026_20260919_kcc_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-09-18", - "time": "5p", + "game_datetime_utc": "2026-09-19T00:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "SDW", @@ -113421,8 +107120,7 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:05p", + "game_datetime_utc": "2026-09-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -113439,8 +107137,7 @@ "canonical_id": "game_mlb_2026_20260919_sea_col", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -113457,8 +107154,7 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-19T00:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -113475,8 +107171,7 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:15p", + "game_datetime_utc": "2026-09-19T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -113493,8 +107188,7 @@ "canonical_id": "game_mlb_2026_20260919_min_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:38p", + "game_datetime_utc": "2026-09-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -113511,8 +107205,7 @@ "canonical_id": "game_mlb_2026_20260919_mia_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -113529,8 +107222,7 @@ "canonical_id": "game_mlb_2026_20260919_nyy_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -113547,8 +107239,7 @@ "canonical_id": "game_mlb_2026_20260919_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-19T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -113565,8 +107256,7 @@ "canonical_id": "game_wnba_2026_20260919_phx_dal", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "12p", + "game_datetime_utc": "2026-09-19T17:00:00Z", "home_team": "Dallas Wings", "away_team": "Phoenix Mercury", "home_team_abbrev": "DAL", @@ -113583,8 +107273,7 @@ "canonical_id": "game_nwsl_2026_20260919_por_orl", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "4p", + "game_datetime_utc": "2026-09-19T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Portland Portland Thorns", "home_team_abbrev": "ORL", @@ -113601,8 +107290,7 @@ "canonical_id": "game_mlb_2026_20260919_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:05p", + "game_datetime_utc": "2026-09-19T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -113619,8 +107307,7 @@ "canonical_id": "game_mlb_2026_20260919_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:10p", + "game_datetime_utc": "2026-09-19T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -113637,8 +107324,7 @@ "canonical_id": "game_mlb_2026_20260919_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:10p", + "game_datetime_utc": "2026-09-19T20:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113655,8 +107341,7 @@ "canonical_id": "game_mlb_2026_20260919_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -113673,8 +107358,7 @@ "canonical_id": "game_nwsl_2026_20260919_njy_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "6:30p", + "game_datetime_utc": "2026-09-19T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "NCC", @@ -113691,8 +107375,7 @@ "canonical_id": "game_mlb_2026_20260919_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -113709,8 +107392,7 @@ "canonical_id": "game_mlb_2026_20260919_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -113727,8 +107409,7 @@ "canonical_id": "game_wnba_2026_20260919_chi_atl", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "7p", + "game_datetime_utc": "2026-09-19T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Chicago Sky", "home_team_abbrev": "ATL", @@ -113745,8 +107426,7 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:05p", + "game_datetime_utc": "2026-09-19T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -113763,8 +107443,7 @@ "canonical_id": "game_mlb_2026_20260919_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113781,8 +107460,7 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T23:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -113799,8 +107477,7 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:15p", + "game_datetime_utc": "2026-09-19T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -113817,8 +107494,7 @@ "canonical_id": "game_mls_2026_20260919_orl_ne", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Orlando Orlando City", "home_team_abbrev": "NE", @@ -113835,8 +107511,7 @@ "canonical_id": "game_mls_2026_20260919_lafc_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "11:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SJ", @@ -113853,8 +107528,7 @@ "canonical_id": "game_mls_2026_20260919_clb_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "MTL", @@ -113871,8 +107545,7 @@ "canonical_id": "game_mls_2026_20260919_clt_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "DC", @@ -113889,8 +107562,7 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "5:10p", + "game_datetime_utc": "2026-09-20T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -113907,8 +107579,7 @@ "canonical_id": "game_mlb_2026_20260920_sea_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-20T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -113925,8 +107596,7 @@ "canonical_id": "game_mls_2026_20260920_cin_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "HOU", @@ -113943,8 +107613,7 @@ "canonical_id": "game_mls_2026_20260920_phi_skc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "SKC", @@ -113961,8 +107630,7 @@ "canonical_id": "game_mls_2026_20260920_tor_stl", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "STL", @@ -113979,8 +107647,7 @@ "canonical_id": "game_mls_2026_20260920_lag_min", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "MIN", @@ -113997,8 +107664,7 @@ "canonical_id": "game_mls_2026_20260920_aus_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Austin Austin FC", "home_team_abbrev": "DAL", @@ -114015,8 +107681,7 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "5:40p", + "game_datetime_utc": "2026-09-20T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -114033,8 +107698,7 @@ "canonical_id": "game_nwsl_2026_20260920_sea_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "6:45p", + "game_datetime_utc": "2026-09-20T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "DEN", @@ -114051,8 +107715,7 @@ "canonical_id": "game_wnba_2026_20260920_sea_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "6p", + "game_datetime_utc": "2026-09-20T01:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Seattle Storm", "home_team_abbrev": "GSV", @@ -114069,8 +107732,7 @@ "canonical_id": "game_mlb_2026_20260920_sf_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-20T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -114087,8 +107749,7 @@ "canonical_id": "game_mls_2026_20260920_van_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SLC", @@ -114105,8 +107766,7 @@ "canonical_id": "game_mls_2026_20260920_chi_nsh", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "8:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NSH", @@ -114123,8 +107783,7 @@ "canonical_id": "game_mls_2026_20260920_sea_col", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "COL", @@ -114141,8 +107800,7 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:38p", + "game_datetime_utc": "2026-09-20T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -114159,8 +107817,7 @@ "canonical_id": "game_mls_2026_20260920_atl_por", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "POR", @@ -114177,8 +107834,7 @@ "canonical_id": "game_wnba_2026_20260920_min_con", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "1p", + "game_datetime_utc": "2026-09-20T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "Minnesota Lynx", "home_team_abbrev": "CON", @@ -114195,8 +107851,7 @@ "canonical_id": "game_mlb_2026_20260920_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:35p", + "game_datetime_utc": "2026-09-20T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -114213,8 +107868,7 @@ "canonical_id": "game_mlb_2026_20260920_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -114231,8 +107885,7 @@ "canonical_id": "game_mlb_2026_20260920_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -114249,8 +107902,7 @@ "canonical_id": "game_mlb_2026_20260920_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -114267,8 +107919,7 @@ "canonical_id": "game_mlb_2026_20260920_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -114285,8 +107936,7 @@ "canonical_id": "game_nwsl_2026_20260920_hou_bos", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "2p", + "game_datetime_utc": "2026-09-20T18:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "BOS", @@ -114303,8 +107953,7 @@ "canonical_id": "game_mlb_2026_20260920_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -114321,8 +107970,7 @@ "canonical_id": "game_mlb_2026_20260920_atl_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T18:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -114339,8 +107987,7 @@ "canonical_id": "game_mlb_2026_20260920_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:15p", + "game_datetime_utc": "2026-09-20T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -114357,8 +108004,7 @@ "canonical_id": "game_mlb_2026_20260920_tor_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:35p", + "game_datetime_utc": "2026-09-20T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -114375,8 +108021,7 @@ "canonical_id": "game_mlb_2026_20260920_sea_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -114393,8 +108038,7 @@ "canonical_id": "game_wnba_2026_20260920_was_ind", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T20:00:00Z", "home_team": "Indiana Fever", "away_team": "Washington Mystics", "home_team_abbrev": "IND", @@ -114411,8 +108055,7 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:07p", + "game_datetime_utc": "2026-09-20T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -114429,8 +108072,7 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -114447,8 +108089,7 @@ "canonical_id": "game_mlb_2026_20260920_sf_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -114465,8 +108106,7 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -114483,8 +108123,7 @@ "canonical_id": "game_nwsl_2026_20260920_wsh_chi", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T21:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Washington Washington Spirit", "home_team_abbrev": "CHI", @@ -114501,8 +108140,7 @@ "canonical_id": "game_mls_2026_20260920_sd_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-20", - "time": "7p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "San Diego San Diego FC", "home_team_abbrev": "MIA", @@ -114519,8 +108157,7 @@ "canonical_id": "game_nwsl_2026_20260920_rgn_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "BAY", @@ -114537,8 +108174,7 @@ "canonical_id": "game_nwsl_2026_20260920_ang_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "5p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "UTA", @@ -114555,8 +108191,7 @@ "canonical_id": "game_mlb_2026_20260920_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "7:20p", + "game_datetime_utc": "2026-09-20T23:20:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -114573,8 +108208,7 @@ "canonical_id": "game_wnba_2026_20260921_sea_lv", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "6p", + "game_datetime_utc": "2026-09-21T01:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Seattle Storm", "home_team_abbrev": "LV", @@ -114591,8 +108225,7 @@ "canonical_id": "game_mlb_2026_20260921_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:35p", + "game_datetime_utc": "2026-09-21T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -114609,8 +108242,7 @@ "canonical_id": "game_mlb_2026_20260921_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:40p", + "game_datetime_utc": "2026-09-21T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -114627,8 +108259,7 @@ "canonical_id": "game_wnba_2026_20260922_atl_ny", "sport": "WNBA", "season": "2026", - "date": "2026-09-21", - "time": "8p", + "game_datetime_utc": "2026-09-22T00:00:00Z", "home_team": "New York Liberty", "away_team": "Atlanta Dream", "home_team_abbrev": "NY", @@ -114645,8 +108276,7 @@ "canonical_id": "game_mlb_2026_20260922_min_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:45p", + "game_datetime_utc": "2026-09-22T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -114663,8 +108293,7 @@ "canonical_id": "game_wnba_2026_20260922_dal_phx", "sport": "WNBA", "season": "2026", - "date": "2026-09-21", - "time": "10p", + "game_datetime_utc": "2026-09-22T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Dallas Wings", "home_team_abbrev": "PHX", @@ -114681,8 +108310,7 @@ "canonical_id": "game_mlb_2026_20260922_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:35p", + "game_datetime_utc": "2026-09-22T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -114699,8 +108327,7 @@ "canonical_id": "game_mlb_2026_20260922_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -114717,8 +108344,7 @@ "canonical_id": "game_mlb_2026_20260922_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -114735,8 +108361,7 @@ "canonical_id": "game_mlb_2026_20260922_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -114753,8 +108378,7 @@ "canonical_id": "game_mlb_2026_20260922_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:45p", + "game_datetime_utc": "2026-09-22T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -114771,8 +108395,7 @@ "canonical_id": "game_mlb_2026_20260922_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:05p", + "game_datetime_utc": "2026-09-22T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -114789,8 +108412,7 @@ "canonical_id": "game_mlb_2026_20260922_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:15p", + "game_datetime_utc": "2026-09-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -114807,8 +108429,7 @@ "canonical_id": "game_wnba_2026_20260922_con_was", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "7:30p", + "game_datetime_utc": "2026-09-22T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Connecticut Sun", "home_team_abbrev": "WAS", @@ -114825,8 +108446,7 @@ "canonical_id": "game_mlb_2026_20260922_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -114843,8 +108463,7 @@ "canonical_id": "game_mlb_2026_20260922_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -114861,8 +108480,7 @@ "canonical_id": "game_wnba_2026_20260923_min_ind", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "8p", + "game_datetime_utc": "2026-09-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Minnesota Lynx", "home_team_abbrev": "IND", @@ -114879,8 +108497,7 @@ "canonical_id": "game_mlb_2026_20260923_nym_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:05p", + "game_datetime_utc": "2026-09-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -114897,8 +108514,7 @@ "canonical_id": "game_mlb_2026_20260923_ari_col", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -114915,8 +108531,7 @@ "canonical_id": "game_mlb_2026_20260923_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -114933,8 +108548,7 @@ "canonical_id": "game_mlb_2026_20260923_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -114951,8 +108565,7 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:45p", + "game_datetime_utc": "2026-09-23T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -114969,8 +108582,7 @@ "canonical_id": "game_wnba_2026_20260923_la_lv", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "7p", + "game_datetime_utc": "2026-09-23T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Los Angeles Sparks", "home_team_abbrev": "LV", @@ -114987,8 +108599,7 @@ "canonical_id": "game_mlb_2026_20260923_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:10p", + "game_datetime_utc": "2026-09-23T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115005,8 +108616,7 @@ "canonical_id": "game_mlb_2026_20260923_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "1:10p", + "game_datetime_utc": "2026-09-23T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -115023,8 +108633,7 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "12:45p", + "game_datetime_utc": "2026-09-23T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -115041,8 +108650,7 @@ "canonical_id": "game_mlb_2026_20260923_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:35p", + "game_datetime_utc": "2026-09-23T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -115059,8 +108667,7 @@ "canonical_id": "game_mlb_2026_20260923_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -115077,8 +108684,7 @@ "canonical_id": "game_mlb_2026_20260923_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -115095,8 +108701,7 @@ "canonical_id": "game_mlb_2026_20260923_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:05p", + "game_datetime_utc": "2026-09-23T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -115113,8 +108718,7 @@ "canonical_id": "game_mlb_2026_20260923_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-23T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -115131,8 +108735,7 @@ "canonical_id": "game_mlb_2026_20260923_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:15p", + "game_datetime_utc": "2026-09-23T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -115149,8 +108752,7 @@ "canonical_id": "game_mlb_2026_20260923_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -115167,8 +108769,7 @@ "canonical_id": "game_mlb_2026_20260923_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -115185,8 +108786,7 @@ "canonical_id": "game_wnba_2026_20260924_atl_ny", "sport": "WNBA", "season": "2026", - "date": "2026-09-23", - "time": "8p", + "game_datetime_utc": "2026-09-24T00:00:00Z", "home_team": "New York Liberty", "away_team": "Atlanta Dream", "home_team_abbrev": "NY", @@ -115203,8 +108803,7 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:05p", + "game_datetime_utc": "2026-09-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -115221,8 +108820,7 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-24T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -115239,8 +108837,7 @@ "canonical_id": "game_mlb_2026_20260924_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-24T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -115257,8 +108854,7 @@ "canonical_id": "game_wnba_2026_20260924_dal_sea", "sport": "WNBA", "season": "2026", - "date": "2026-09-23", - "time": "7p", + "game_datetime_utc": "2026-09-24T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Dallas Wings", "home_team_abbrev": "SEA", @@ -115275,8 +108871,7 @@ "canonical_id": "game_mlb_2026_20260924_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-24T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -115293,8 +108888,7 @@ "canonical_id": "game_mlb_2026_20260924_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-24T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115311,8 +108905,7 @@ "canonical_id": "game_mlb_2026_20260924_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "12:35p", + "game_datetime_utc": "2026-09-24T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -115329,8 +108922,7 @@ "canonical_id": "game_mlb_2026_20260924_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:10p", + "game_datetime_utc": "2026-09-24T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -115347,8 +108939,7 @@ "canonical_id": "game_mlb_2026_20260924_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:20p", + "game_datetime_utc": "2026-09-24T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -115365,8 +108956,7 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:35p", + "game_datetime_utc": "2026-09-24T18:35:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -115383,8 +108973,7 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:10p", + "game_datetime_utc": "2026-09-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -115401,8 +108990,7 @@ "canonical_id": "game_mlb_2026_20260924_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:05p", + "game_datetime_utc": "2026-09-24T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -115419,8 +109007,7 @@ "canonical_id": "game_mlb_2026_20260924_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:45p", + "game_datetime_utc": "2026-09-24T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -115437,8 +109024,7 @@ "canonical_id": "game_mlb_2026_20260924_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:05p", + "game_datetime_utc": "2026-09-24T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -115455,8 +109041,7 @@ "canonical_id": "game_mlb_2026_20260924_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:15p", + "game_datetime_utc": "2026-09-24T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -115473,8 +109058,7 @@ "canonical_id": "game_wnba_2026_20260924_chi_was", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7:30p", + "game_datetime_utc": "2026-09-24T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Chicago Sky", "home_team_abbrev": "WAS", @@ -115491,8 +109075,7 @@ "canonical_id": "game_wnba_2026_20260925_ind_min", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7p", + "game_datetime_utc": "2026-09-25T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Indiana Fever", "home_team_abbrev": "MIN", @@ -115509,8 +109092,7 @@ "canonical_id": "game_mlb_2026_20260925_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -115527,8 +109109,7 @@ "canonical_id": "game_mlb_2026_20260925_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -115545,8 +109126,7 @@ "canonical_id": "game_wnba_2026_20260925_lv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "10p", + "game_datetime_utc": "2026-09-25T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Las Vegas Aces", "home_team_abbrev": "PHX", @@ -115563,8 +109143,7 @@ "canonical_id": "game_wnba_2026_20260925_gsv_la", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7p", + "game_datetime_utc": "2026-09-25T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Golden State Valkyries", "home_team_abbrev": "LA", @@ -115581,8 +109160,7 @@ "canonical_id": "game_mlb_2026_20260925_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115599,8 +109177,7 @@ "canonical_id": "game_nwsl_2026_20260925_sdw_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "6:30p", + "game_datetime_utc": "2026-09-25T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "RGN", @@ -115617,8 +109194,7 @@ "canonical_id": "game_mlb_2026_20260925_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -115635,8 +109211,7 @@ "canonical_id": "game_mlb_2026_20260925_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -115653,8 +109228,7 @@ "canonical_id": "game_mlb_2026_20260925_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:45p", + "game_datetime_utc": "2026-09-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -115671,8 +109245,7 @@ "canonical_id": "game_mlb_2026_20260925_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:05p", + "game_datetime_utc": "2026-09-25T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -115689,8 +109262,7 @@ "canonical_id": "game_mlb_2026_20260925_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:07p", + "game_datetime_utc": "2026-09-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -115707,8 +109279,7 @@ "canonical_id": "game_mlb_2026_20260925_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -115725,8 +109296,7 @@ "canonical_id": "game_mlb_2026_20260925_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -115743,8 +109313,7 @@ "canonical_id": "game_mlb_2026_20260925_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -115761,8 +109330,7 @@ "canonical_id": "game_mlb_2026_20260925_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -115779,8 +109347,7 @@ "canonical_id": "game_mlb_2026_20260925_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -115797,8 +109364,7 @@ "canonical_id": "game_nwsl_2026_20260926_chi_njy", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "8p", + "game_datetime_utc": "2026-09-26T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "NJY", @@ -115815,8 +109381,7 @@ "canonical_id": "game_mlb_2026_20260926_tex_min_1", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-26T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -115833,8 +109398,7 @@ "canonical_id": "game_nwsl_2026_20260926_bos_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "5:30p", + "game_datetime_utc": "2026-09-26T00:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "SEA", @@ -115851,8 +109415,7 @@ "canonical_id": "game_mlb_2026_20260926_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-26T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -115869,8 +109432,7 @@ "canonical_id": "game_mlb_2026_20260926_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -115887,8 +109449,7 @@ "canonical_id": "game_mlb_2026_20260926_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-26T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -115905,8 +109466,7 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:15p", + "game_datetime_utc": "2026-09-26T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -115923,8 +109483,7 @@ "canonical_id": "game_nwsl_2026_20260926_den_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "11:30a", + "game_datetime_utc": "2026-09-26T16:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "KCC", @@ -115941,8 +109500,7 @@ "canonical_id": "game_mlb_2026_20260926_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "1:10p", + "game_datetime_utc": "2026-09-26T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -115959,8 +109517,7 @@ "canonical_id": "game_mlb_2026_20260926_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "3:07p", + "game_datetime_utc": "2026-09-26T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -115977,8 +109534,7 @@ "canonical_id": "game_mlb_2026_20260926_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "4:05p", + "game_datetime_utc": "2026-09-26T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -115995,8 +109551,7 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "1:05p", + "game_datetime_utc": "2026-09-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -116013,8 +109568,7 @@ "canonical_id": "game_mlb_2026_20260926_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "4:10p", + "game_datetime_utc": "2026-09-26T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -116031,8 +109585,7 @@ "canonical_id": "game_mlb_2026_20260926_tex_min_2", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "3:10p", + "game_datetime_utc": "2026-09-26T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -116049,8 +109602,7 @@ "canonical_id": "game_mlb_2026_20260926_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:05p", + "game_datetime_utc": "2026-09-26T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -116067,8 +109619,7 @@ "canonical_id": "game_nwsl_2026_20260926_ang_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "6:30p", + "game_datetime_utc": "2026-09-26T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "WSH", @@ -116085,8 +109636,7 @@ "canonical_id": "game_mlb_2026_20260926_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "7:05p", + "game_datetime_utc": "2026-09-26T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -116103,8 +109653,7 @@ "canonical_id": "game_mlb_2026_20260926_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -116121,8 +109670,7 @@ "canonical_id": "game_mlb_2026_20260926_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -116139,8 +109687,7 @@ "canonical_id": "game_mlb_2026_20260926_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -116157,8 +109704,7 @@ "canonical_id": "game_mlb_2026_20260926_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "7:15p", + "game_datetime_utc": "2026-09-26T23:15:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -116175,8 +109721,7 @@ "canonical_id": "game_mls_2026_20260926_stl_ny", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "RB", @@ -116193,8 +109738,7 @@ "canonical_id": "game_mls_2026_20260926_orl_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Orlando Orlando City", "home_team_abbrev": "PHI", @@ -116211,8 +109755,7 @@ "canonical_id": "game_mls_2026_20260926_nyc_atl", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New York New York City FC", "home_team_abbrev": "ATL", @@ -116229,8 +109772,7 @@ "canonical_id": "game_mls_2026_20260926_cin_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MTL", @@ -116247,8 +109789,7 @@ "canonical_id": "game_mls_2026_20260926_chi_clt", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CLT", @@ -116265,8 +109806,7 @@ "canonical_id": "game_mls_2026_20260927_skc_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "HOU", @@ -116283,8 +109823,7 @@ "canonical_id": "game_mls_2026_20260927_lafc_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "DAL", @@ -116301,8 +109840,7 @@ "canonical_id": "game_mls_2026_20260927_sd_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "AUS", @@ -116319,8 +109857,7 @@ "canonical_id": "game_mls_2026_20260927_tor_nsh", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NSH", @@ -116337,8 +109874,7 @@ "canonical_id": "game_mls_2026_20260927_min_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "5:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SEA", @@ -116355,8 +109891,7 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "5:40p", + "game_datetime_utc": "2026-09-27T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -116373,8 +109908,7 @@ "canonical_id": "game_nwsl_2026_20260927_hou_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "5:45p", + "game_datetime_utc": "2026-09-27T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Houston Houston Dash", "home_team_abbrev": "POR", @@ -116391,8 +109925,7 @@ "canonical_id": "game_mls_2026_20260927_ne_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "New England New England Revolution", "home_team_abbrev": "SLC", @@ -116409,8 +109942,7 @@ "canonical_id": "game_mlb_2026_20260927_hou_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:40p", + "game_datetime_utc": "2026-09-27T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -116427,8 +109959,7 @@ "canonical_id": "game_mlb_2026_20260927_laa_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:40p", + "game_datetime_utc": "2026-09-27T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -116445,8 +109976,7 @@ "canonical_id": "game_mls_2026_20260927_col_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "LAG", @@ -116463,8 +109993,7 @@ "canonical_id": "game_mls_2026_20260927_por_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SJ", @@ -116481,8 +110010,7 @@ "canonical_id": "game_mls_2026_20260927_dc_van", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Washington D.C. United", "home_team_abbrev": "VAN", @@ -116499,8 +110027,7 @@ "canonical_id": "game_mlb_2026_20260927_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -116517,8 +110044,7 @@ "canonical_id": "game_mlb_2026_20260927_lad_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -116535,8 +110061,7 @@ "canonical_id": "game_mlb_2026_20260927_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -116553,8 +110078,7 @@ "canonical_id": "game_mlb_2026_20260927_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -116571,8 +110095,7 @@ "canonical_id": "game_mlb_2026_20260927_hou_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -116589,8 +110112,7 @@ "canonical_id": "game_mlb_2026_20260927_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:07p", + "game_datetime_utc": "2026-09-27T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -116607,8 +110129,7 @@ "canonical_id": "game_mlb_2026_20260927_laa_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -116625,8 +110146,7 @@ "canonical_id": "game_mlb_2026_20260927_tex_min", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -116643,8 +110163,7 @@ "canonical_id": "game_mlb_2026_20260927_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -116661,8 +110180,7 @@ "canonical_id": "game_mlb_2026_20260927_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -116679,8 +110197,7 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -116697,8 +110214,7 @@ "canonical_id": "game_mlb_2026_20260927_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -116715,8 +110231,7 @@ "canonical_id": "game_mlb_2026_20260927_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -116733,8 +110248,7 @@ "canonical_id": "game_mlb_2026_20260927_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -116751,8 +110265,7 @@ "canonical_id": "game_mlb_2026_20260927_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:20p", + "game_datetime_utc": "2026-09-27T19:20:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -116769,8 +110282,7 @@ "canonical_id": "game_nwsl_2026_20260927_orl_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-27", - "time": "2p", + "game_datetime_utc": "2026-09-27T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "BAY", @@ -116787,8 +110299,7 @@ "canonical_id": "game_mls_2026_20260927_mia_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-27", - "time": "7p", + "game_datetime_utc": "2026-09-27T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Miami Inter Miami", "home_team_abbrev": "CLB", @@ -116805,8 +110316,7 @@ "canonical_id": "game_nwsl_2026_20260927_ncc_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-27", - "time": "5p", + "game_datetime_utc": "2026-09-27T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "UTA", @@ -116823,8 +110333,7 @@ "canonical_id": "game_nwsl_2026_20261003_sdw_orl", "sport": "NWSL", "season": "2026", - "date": "2026-10-02", - "time": "8p", + "game_datetime_utc": "2026-10-03T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "ORL", @@ -116841,8 +110350,7 @@ "canonical_id": "game_nwsl_2026_20261003_ncc_sea", "sport": "NWSL", "season": "2026", - "date": "2026-10-02", - "time": "7p", + "game_datetime_utc": "2026-10-03T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "SEA", @@ -116859,8 +110367,7 @@ "canonical_id": "game_nwsl_2026_20261003_uta_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "4p", + "game_datetime_utc": "2026-10-03T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Utah Utah Royals", "home_team_abbrev": "RGN", @@ -116877,8 +110384,7 @@ "canonical_id": "game_nwsl_2026_20261003_bay_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "5:30p", + "game_datetime_utc": "2026-10-03T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "San Francisco Bay FC", "home_team_abbrev": "KCC", @@ -116895,8 +110401,7 @@ "canonical_id": "game_nwsl_2026_20261004_bos_por", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "5:45p", + "game_datetime_utc": "2026-10-04T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "POR", @@ -116913,8 +110418,7 @@ "canonical_id": "game_nwsl_2026_20261004_ang_njy", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "12p", + "game_datetime_utc": "2026-10-04T16:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "NJY", @@ -116931,8 +110435,7 @@ "canonical_id": "game_nwsl_2026_20261004_den_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "3p", + "game_datetime_utc": "2026-10-04T20:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "CHI", @@ -116949,8 +110452,7 @@ "canonical_id": "game_nwsl_2026_20261004_wsh_hou", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "6p", + "game_datetime_utc": "2026-10-04T23:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Washington Washington Spirit", "home_team_abbrev": "HOU", @@ -116967,8 +110469,7 @@ "canonical_id": "game_mls_2026_20261010_mtl_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "1p", + "game_datetime_utc": "2026-10-10T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "TOR", @@ -116985,8 +110486,7 @@ "canonical_id": "game_mls_2026_20261010_nyc_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "1:30p", + "game_datetime_utc": "2026-10-10T18:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New York New York City FC", "home_team_abbrev": "CHI", @@ -117003,8 +110503,7 @@ "canonical_id": "game_mls_2026_20261010_sea_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "NE", @@ -117021,8 +110520,7 @@ "canonical_id": "game_mls_2026_20261010_cin_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "ATL", @@ -117039,8 +110537,7 @@ "canonical_id": "game_mls_2026_20261010_dal_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "CLT", @@ -117057,8 +110554,7 @@ "canonical_id": "game_mls_2026_20261010_dc_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Washington D.C. United", "home_team_abbrev": "MIA", @@ -117075,8 +110571,7 @@ "canonical_id": "game_mls_2026_20261010_sd_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "San Diego San Diego FC", "home_team_abbrev": "RB", @@ -117093,8 +110588,7 @@ "canonical_id": "game_mls_2026_20261010_clb_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "ORL", @@ -117111,8 +110605,7 @@ "canonical_id": "game_mls_2026_20261010_slc_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "PHI", @@ -117129,8 +110622,7 @@ "canonical_id": "game_mls_2026_20261011_nsh_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "AUS", @@ -117147,8 +110639,7 @@ "canonical_id": "game_mls_2026_20261011_hou_min", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "MIN", @@ -117165,8 +110656,7 @@ "canonical_id": "game_mls_2026_20261011_por_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SKC", @@ -117183,8 +110673,7 @@ "canonical_id": "game_mls_2026_20261011_sj_col", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "COL", @@ -117201,8 +110690,7 @@ "canonical_id": "game_mls_2026_20261011_van_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "LAFC", @@ -117219,8 +110707,7 @@ "canonical_id": "game_mls_2026_20261011_lag_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-11", - "time": "6p", + "game_datetime_utc": "2026-10-11T23:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "STL", @@ -117237,8 +110724,7 @@ "canonical_id": "game_mls_2026_20261014_orl_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "TOR", @@ -117255,8 +110741,7 @@ "canonical_id": "game_mls_2026_20261014_nyc_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New York New York City FC", "home_team_abbrev": "MIA", @@ -117273,8 +110758,7 @@ "canonical_id": "game_mls_2026_20261014_ne_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New England New England Revolution", "home_team_abbrev": "CIN", @@ -117291,8 +110775,7 @@ "canonical_id": "game_mls_2026_20261014_ny_dc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "New York New York Red Bulls", "home_team_abbrev": "DC", @@ -117309,8 +110792,7 @@ "canonical_id": "game_mls_2026_20261014_clt_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CLB", @@ -117327,8 +110809,7 @@ "canonical_id": "game_mls_2026_20261014_atl_mtl", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MTL", @@ -117345,8 +110826,7 @@ "canonical_id": "game_mls_2026_20261015_skc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "NSH", @@ -117363,8 +110843,7 @@ "canonical_id": "game_mls_2026_20261015_van_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "STL", @@ -117381,8 +110860,7 @@ "canonical_id": "game_mls_2026_20261015_phi_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CHI", @@ -117399,8 +110877,7 @@ "canonical_id": "game_mls_2026_20261015_sea_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "DAL", @@ -117417,8 +110894,7 @@ "canonical_id": "game_mls_2026_20261015_min_col", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "COL", @@ -117435,8 +110911,7 @@ "canonical_id": "game_mls_2026_20261015_sj_slc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SLC", @@ -117453,8 +110928,7 @@ "canonical_id": "game_mls_2026_20261015_hou_sd", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SD", @@ -117471,8 +110945,7 @@ "canonical_id": "game_mls_2026_20261015_aus_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Austin Austin FC", "home_team_abbrev": "LAFC", @@ -117489,8 +110962,7 @@ "canonical_id": "game_mls_2026_20261015_por_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Portland Portland Timbers", "home_team_abbrev": "LAG", @@ -117507,8 +110979,7 @@ "canonical_id": "game_nwsl_2026_20261017_rgn_bos", "sport": "NWSL", "season": "2026", - "date": "2026-10-16", - "time": "8p", + "game_datetime_utc": "2026-10-17T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "BOS", @@ -117525,8 +110996,7 @@ "canonical_id": "game_nwsl_2026_20261017_njy_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "12:30p", + "game_datetime_utc": "2026-10-17T16:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "WSH", @@ -117543,8 +111013,7 @@ "canonical_id": "game_mls_2026_20261017_clt_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "2:30p", + "game_datetime_utc": "2026-10-17T18:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "PHI", @@ -117561,8 +111030,7 @@ "canonical_id": "game_mls_2026_20261017_stl_min", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "3:30p", + "game_datetime_utc": "2026-10-17T20:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "MIN", @@ -117579,8 +111047,7 @@ "canonical_id": "game_nwsl_2026_20261017_kcc_uta", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "4:30p", + "game_datetime_utc": "2026-10-17T22:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "UTA", @@ -117597,8 +111064,7 @@ "canonical_id": "game_nwsl_2026_20261017_sdw_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "7p", + "game_datetime_utc": "2026-10-17T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "NCC", @@ -117615,8 +111081,7 @@ "canonical_id": "game_mls_2026_20261017_dc_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Washington D.C. United", "home_team_abbrev": "ORL", @@ -117633,8 +111098,7 @@ "canonical_id": "game_mls_2026_20261017_mia_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Miami Inter Miami", "home_team_abbrev": "ATL", @@ -117651,8 +111115,7 @@ "canonical_id": "game_mls_2026_20261017_tor_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Toronto Toronto FC", "home_team_abbrev": "RB", @@ -117669,8 +111132,7 @@ "canonical_id": "game_mls_2026_20261017_chi_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NE", @@ -117687,8 +111149,7 @@ "canonical_id": "game_mls_2026_20261018_slc_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SKC", @@ -117705,8 +111166,7 @@ "canonical_id": "game_mls_2026_20261018_dal_hou", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Dallas FC Dallas", "home_team_abbrev": "HOU", @@ -117723,8 +111183,7 @@ "canonical_id": "game_mls_2026_20261018_van_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "AUS", @@ -117741,8 +111200,7 @@ "canonical_id": "game_nwsl_2026_20261018_ang_den", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "6:45p", + "game_datetime_utc": "2026-10-18T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "DEN", @@ -117759,8 +111217,7 @@ "canonical_id": "game_mls_2026_20261018_mtl_sea", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Montreal CF Montreal", "home_team_abbrev": "SEA", @@ -117777,8 +111234,7 @@ "canonical_id": "game_mls_2026_20261018_col_por", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "POR", @@ -117795,8 +111251,7 @@ "canonical_id": "game_mls_2026_20261018_nsh_sj", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Nashville Nashville SC", "home_team_abbrev": "SJ", @@ -117813,8 +111268,7 @@ "canonical_id": "game_mls_2026_20261018_sd_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "San Diego San Diego FC", "home_team_abbrev": "LAG", @@ -117831,8 +111285,7 @@ "canonical_id": "game_nwsl_2026_20261018_orl_hou", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "12p", + "game_datetime_utc": "2026-10-18T17:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "HOU", @@ -117849,8 +111302,7 @@ "canonical_id": "game_nwsl_2026_20261018_por_bay", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "2p", + "game_datetime_utc": "2026-10-18T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "BAY", @@ -117867,8 +111319,7 @@ "canonical_id": "game_mls_2026_20261018_clb_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-18", - "time": "7p", + "game_datetime_utc": "2026-10-18T23:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CIN", @@ -117885,8 +111336,7 @@ "canonical_id": "game_nwsl_2026_20261018_sea_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "6p", + "game_datetime_utc": "2026-10-18T23:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "CHI", @@ -117903,8 +111353,7 @@ "canonical_id": "game_nwsl_2026_20261024_hou_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7p", + "game_datetime_utc": "2026-10-24T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Houston Houston Dash", "home_team_abbrev": "CHI", @@ -117921,8 +111370,7 @@ "canonical_id": "game_nwsl_2026_20261024_sea_uta", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T01:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "UTA", @@ -117939,8 +111387,7 @@ "canonical_id": "game_nwsl_2026_20261024_ncc_por", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7p", + "game_datetime_utc": "2026-10-24T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "POR", @@ -117957,8 +111404,7 @@ "canonical_id": "game_mls_2026_20261024_nsh_mtl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "1:30p", + "game_datetime_utc": "2026-10-24T17:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Nashville Nashville SC", "home_team_abbrev": "MTL", @@ -117975,8 +111421,7 @@ "canonical_id": "game_mls_2026_20261024_tor_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "2:30p", + "game_datetime_utc": "2026-10-24T18:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CLB", @@ -117993,8 +111438,7 @@ "canonical_id": "game_mls_2026_20261024_mia_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "4:30p", + "game_datetime_utc": "2026-10-24T20:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Miami Inter Miami", "home_team_abbrev": "RB", @@ -118011,8 +111455,7 @@ "canonical_id": "game_nwsl_2026_20261024_rgn_den", "sport": "NWSL", "season": "2026", - "date": "2026-10-24", - "time": "4:30p", + "game_datetime_utc": "2026-10-24T22:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "DEN", @@ -118029,8 +111472,7 @@ "canonical_id": "game_mls_2026_20261024_nyc_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "New York New York City FC", "home_team_abbrev": "ORL", @@ -118047,8 +111489,7 @@ "canonical_id": "game_mls_2026_20261024_cin_dc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "DC", @@ -118065,8 +111506,7 @@ "canonical_id": "game_mls_2026_20261024_ne_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New England New England Revolution", "home_team_abbrev": "PHI", @@ -118083,8 +111523,7 @@ "canonical_id": "game_mls_2026_20261024_chi_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "ATL", @@ -118101,8 +111540,7 @@ "canonical_id": "game_mls_2026_20261025_stl_slc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "6:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SLC", @@ -118119,8 +111557,7 @@ "canonical_id": "game_mls_2026_20261025_sj_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "DAL", @@ -118137,8 +111574,7 @@ "canonical_id": "game_mls_2026_20261025_aus_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Austin Austin FC", "home_team_abbrev": "SKC", @@ -118155,8 +111591,7 @@ "canonical_id": "game_mls_2026_20261025_van_col", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "6:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "COL", @@ -118173,8 +111608,7 @@ "canonical_id": "game_mls_2026_20261025_min_hou", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "HOU", @@ -118191,8 +111625,7 @@ "canonical_id": "game_nwsl_2026_20261025_bay_ang", "sport": "NWSL", "season": "2026", - "date": "2026-10-24", - "time": "6:45p", + "game_datetime_utc": "2026-10-25T01:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "ANG", @@ -118209,8 +111642,7 @@ "canonical_id": "game_mls_2026_20261025_clt_por", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "POR", @@ -118227,8 +111659,7 @@ "canonical_id": "game_mls_2026_20261025_sea_sd", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SD", @@ -118245,8 +111676,7 @@ "canonical_id": "game_nwsl_2026_20261025_njy_orl", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "3p", + "game_datetime_utc": "2026-10-25T19:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "ORL", @@ -118263,8 +111693,7 @@ "canonical_id": "game_nwsl_2026_20261025_wsh_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "4p", + "game_datetime_utc": "2026-10-25T21:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Washington Washington Spirit", "home_team_abbrev": "KCC", @@ -118281,8 +111710,7 @@ "canonical_id": "game_nwsl_2026_20261025_bos_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "4p", + "game_datetime_utc": "2026-10-25T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "SDW", @@ -118299,8 +111727,7 @@ "canonical_id": "game_mls_2026_20261026_lag_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-25", - "time": "6p", + "game_datetime_utc": "2026-10-26T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "LAFC", @@ -118317,8 +111744,7 @@ "canonical_id": "game_mls_2026_20261028_dc_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Washington D.C. United", "home_team_abbrev": "TOR", @@ -118335,8 +111761,7 @@ "canonical_id": "game_mls_2026_20261028_atl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "11:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NYC", @@ -118353,8 +111778,7 @@ "canonical_id": "game_mls_2026_20261028_ny_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NE", @@ -118371,8 +111795,7 @@ "canonical_id": "game_mls_2026_20261028_cin_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MIA", @@ -118389,8 +111812,7 @@ "canonical_id": "game_mls_2026_20261028_mtl_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CLT", @@ -118407,8 +111829,7 @@ "canonical_id": "game_mls_2026_20261029_por_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "STL", @@ -118425,8 +111846,7 @@ "canonical_id": "game_mls_2026_20261029_skc_min", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "MIN", @@ -118443,8 +111863,7 @@ "canonical_id": "game_mls_2026_20261029_clb_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "DAL", @@ -118461,8 +111880,7 @@ "canonical_id": "game_mls_2026_20261029_slc_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "AUS", @@ -118479,8 +111897,7 @@ "canonical_id": "game_mls_2026_20261029_orl_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Orlando Orlando City", "home_team_abbrev": "CHI", @@ -118497,8 +111914,7 @@ "canonical_id": "game_mls_2026_20261029_phi_nsh", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NSH", @@ -118515,8 +111931,7 @@ "canonical_id": "game_mls_2026_20261029_hou_sea", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SEA", @@ -118533,8 +111948,7 @@ "canonical_id": "game_mls_2026_20261029_sd_van", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "San Diego San Diego FC", "home_team_abbrev": "VAN", @@ -118551,8 +111965,7 @@ "canonical_id": "game_mls_2026_20261029_col_sj", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SJ", @@ -118569,8 +111982,7 @@ "canonical_id": "game_mls_2026_20261031_orl_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "1p", + "game_datetime_utc": "2026-10-31T17:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "CLT", @@ -118587,8 +111999,7 @@ "canonical_id": "game_mls_2026_20261031_dc_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T18:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Washington D.C. United", "home_team_abbrev": "CLB", @@ -118605,8 +112016,7 @@ "canonical_id": "game_mls_2026_20261031_phi_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T18:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CIN", @@ -118623,8 +112033,7 @@ "canonical_id": "game_mls_2026_20261031_dal_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T19:00:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SKC", @@ -118641,8 +112050,7 @@ "canonical_id": "game_mls_2026_20261031_aus_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T21:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Austin Austin FC", "home_team_abbrev": "LAG", @@ -118659,8 +112067,7 @@ "canonical_id": "game_mls_2026_20261101_chi_col", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "7:30p", + "game_datetime_utc": "2026-11-01T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "COL", @@ -118677,8 +112084,7 @@ "canonical_id": "game_mls_2026_20261101_sd_stl", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "STL", @@ -118695,8 +112101,7 @@ "canonical_id": "game_mls_2026_20261101_slc_sj", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "12p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SJ", @@ -118713,8 +112118,7 @@ "canonical_id": "game_mls_2026_20261101_min_lafc", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "12p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "LAFC", @@ -118731,8 +112135,7 @@ "canonical_id": "game_mls_2026_20261101_mtl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "8p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "New York New York City FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NYC", @@ -118749,8 +112152,7 @@ "canonical_id": "game_mls_2026_20261101_ny_nsh", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "3:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NSH", @@ -118767,8 +112169,7 @@ "canonical_id": "game_mls_2026_20261101_tor_atl", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "4:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Toronto Toronto FC", "home_team_abbrev": "ATL", @@ -118785,8 +112186,7 @@ "canonical_id": "game_mls_2026_20261101_sea_van", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "1:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "VAN", @@ -118803,8 +112203,7 @@ "canonical_id": "game_nwsl_2026_20261101_uta_njy", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "NJY", @@ -118821,8 +112220,7 @@ "canonical_id": "game_nwsl_2026_20261101_por_hou", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "4p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Portland Portland Thorns", "home_team_abbrev": "HOU", @@ -118839,8 +112237,7 @@ "canonical_id": "game_nwsl_2026_20261101_chi_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "WSH", @@ -118857,8 +112254,7 @@ "canonical_id": "game_nwsl_2026_20261101_bos_ang", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "ANG", @@ -118875,8 +112271,7 @@ "canonical_id": "game_nwsl_2026_20261101_sdw_bay", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "BAY", @@ -118893,8 +112288,7 @@ "canonical_id": "game_nwsl_2026_20261101_orl_sea", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "SEA", @@ -118911,8 +112305,7 @@ "canonical_id": "game_nwsl_2026_20261101_den_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "NCC", @@ -118929,8 +112322,7 @@ "canonical_id": "game_nwsl_2026_20261101_kcc_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "RGN", @@ -118947,8 +112339,7 @@ "canonical_id": "game_mls_2026_20261101_mia_ne", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "6p", + "game_datetime_utc": "2026-11-01T23:00:00Z", "home_team": "New England New England Revolution", "away_team": "Miami Inter Miami", "home_team_abbrev": "NE", @@ -118965,8 +112356,7 @@ "canonical_id": "game_mls_2026_20261102_hou_por", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-02T01:00:00Z", "home_team": "Portland Portland Timbers", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "POR", @@ -118983,8 +112373,7 @@ "canonical_id": "game_mls_2026_20261107_atl_ny", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "New York New York Red Bulls", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "RB", @@ -119001,8 +112390,7 @@ "canonical_id": "game_mls_2026_20261107_clt_mia", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "MIA", @@ -119019,8 +112407,7 @@ "canonical_id": "game_mls_2026_20261107_nsh_cin", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CIN", @@ -119037,8 +112424,7 @@ "canonical_id": "game_mls_2026_20261107_nyc_dc", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Washington D.C. United", "away_team": "New York New York City FC", "home_team_abbrev": "DC", @@ -119055,8 +112441,7 @@ "canonical_id": "game_mls_2026_20261107_clb_chi", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "3p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CHI", @@ -119073,8 +112458,7 @@ "canonical_id": "game_mls_2026_20261107_van_mtl", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Montreal CF Montreal", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "MTL", @@ -119091,8 +112475,7 @@ "canonical_id": "game_mls_2026_20261107_ne_orl", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Orlando Orlando City", "away_team": "New England New England Revolution", "home_team_abbrev": "ORL", @@ -119109,8 +112492,7 @@ "canonical_id": "game_mls_2026_20261107_tor_phi", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Toronto Toronto FC", "home_team_abbrev": "PHI", @@ -119127,8 +112509,7 @@ "canonical_id": "game_mls_2026_20261108_lafc_sea", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SEA", @@ -119145,8 +112526,7 @@ "canonical_id": "game_mls_2026_20261108_lag_slc", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "5p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SLC", @@ -119163,8 +112543,7 @@ "canonical_id": "game_mls_2026_20261108_sj_min", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Minnesota Minnesota United", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "MIN", @@ -119181,8 +112560,7 @@ "canonical_id": "game_mls_2026_20261108_stl_hou", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Houston Houston Dynamo", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "HOU", @@ -119199,8 +112577,7 @@ "canonical_id": "game_mls_2026_20261108_col_dal", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Dallas FC Dallas", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "DAL", @@ -119217,8 +112594,7 @@ "canonical_id": "game_mls_2026_20261108_por_aus", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Austin Austin FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "AUS", @@ -119235,8 +112611,7 @@ "canonical_id": "game_mls_2026_20261108_skc_sd", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SD", diff --git a/SportsTimeTests/Export/POISearchServiceTests.swift b/SportsTimeTests/Export/POISearchServiceTests.swift index c7d25b9..329cea5 100644 --- a/SportsTimeTests/Export/POISearchServiceTests.swift +++ b/SportsTimeTests/Export/POISearchServiceTests.swift @@ -24,7 +24,8 @@ struct POITests { category: .restaurant, coordinate: CLLocationCoordinate2D(latitude: 40.0, longitude: -74.0), distanceMeters: distanceMeters, - address: nil + address: nil, + mapItem: nil ) } diff --git a/sportstime_export/games_canonical.json b/sportstime_export/games_canonical.json index e451633..55d75e4 100644 --- a/sportstime_export/games_canonical.json +++ b/sportstime_export/games_canonical.json @@ -3,8 +3,7 @@ "canonical_id": "game_nfl_2026_20250801_lac_det", "sport": "NFL", "season": "2025", - "date": "2025-07-31", - "time": "8p", + "game_datetime_utc": "2025-08-01T00:00:00Z", "home_team": "Detroit Lions", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DET", @@ -21,8 +20,7 @@ "canonical_id": "game_nfl_2026_20250807_ind_bal", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7p", + "game_datetime_utc": "2025-08-07T23:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Indianapolis Colts", "home_team_abbrev": "BAL", @@ -39,8 +37,7 @@ "canonical_id": "game_nfl_2026_20250807_cin_phi", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7:30p", + "game_datetime_utc": "2025-08-07T23:30:00Z", "home_team": "Philadelphia Eagles", "away_team": "Cincinnati Bengals", "home_team_abbrev": "PHI", @@ -57,8 +54,7 @@ "canonical_id": "game_nfl_2026_20250808_lv_sea", "sport": "NFL", "season": "2025", - "date": "2025-08-07", - "time": "7p", + "game_datetime_utc": "2025-08-08T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Las Vegas Raiders", "home_team_abbrev": "SEA", @@ -75,8 +71,7 @@ "canonical_id": "game_nfl_2026_20250808_det_atl", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7p", + "game_datetime_utc": "2025-08-08T23:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Detroit Lions", "home_team_abbrev": "ATL", @@ -93,8 +88,7 @@ "canonical_id": "game_nfl_2026_20250808_cle_car", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7p", + "game_datetime_utc": "2025-08-08T23:00:00Z", "home_team": "Carolina Panthers", "away_team": "Cleveland Browns", "home_team_abbrev": "CAR", @@ -111,8 +105,7 @@ "canonical_id": "game_nfl_2026_20250808_was_ne", "sport": "NFL", "season": "2025", - "date": "2025-08-08", - "time": "7:30p", + "game_datetime_utc": "2025-08-08T23:30:00Z", "home_team": "New England Patriots", "away_team": "Washington Commanders", "home_team_abbrev": "NE", @@ -129,8 +122,7 @@ "canonical_id": "game_nfl_2026_20250809_nyg_buf", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "1p", + "game_datetime_utc": "2025-08-09T17:00:00Z", "home_team": "Buffalo Bills", "away_team": "New York Giants", "home_team_abbrev": "BUF", @@ -147,8 +139,7 @@ "canonical_id": "game_nfl_2026_20250809_hou_min", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "3p", + "game_datetime_utc": "2025-08-09T20:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Houston Texans", "home_team_abbrev": "MIN", @@ -165,8 +156,7 @@ "canonical_id": "game_nfl_2026_20250809_dal_lar", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "4p", + "game_datetime_utc": "2025-08-09T23:00:00Z", "home_team": "Los Angeles Rams", "away_team": "Dallas Cowboys", "home_team_abbrev": "LAR", @@ -183,8 +173,7 @@ "canonical_id": "game_nfl_2026_20250809_pit_jax", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7p", + "game_datetime_utc": "2025-08-09T23:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "JAX", @@ -201,8 +190,7 @@ "canonical_id": "game_nfl_2026_20250809_ten_tb", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7:30p", + "game_datetime_utc": "2025-08-09T23:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Tennessee Titans", "home_team_abbrev": "TB", @@ -219,8 +207,7 @@ "canonical_id": "game_nfl_2026_20250810_kc_ari", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "5p", + "game_datetime_utc": "2025-08-10T00:00:00Z", "home_team": "Arizona Cardinals", "away_team": "Kansas City Chiefs", "home_team_abbrev": "ARI", @@ -237,8 +224,7 @@ "canonical_id": "game_nfl_2026_20250810_nyj_gb", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "7p", + "game_datetime_utc": "2025-08-10T00:00:00Z", "home_team": "Green Bay Packers", "away_team": "New York Jets", "home_team_abbrev": "GB", @@ -255,8 +241,7 @@ "canonical_id": "game_nfl_2026_20250810_den_sf", "sport": "NFL", "season": "2025", - "date": "2025-08-09", - "time": "5:30p", + "game_datetime_utc": "2025-08-10T00:30:00Z", "home_team": "San Francisco 49ers", "away_team": "Denver Broncos", "home_team_abbrev": "SF", @@ -273,8 +258,7 @@ "canonical_id": "game_nfl_2026_20250810_mia_chi", "sport": "NFL", "season": "2025", - "date": "2025-08-10", - "time": "12p", + "game_datetime_utc": "2025-08-10T17:00:00Z", "home_team": "Chicago Bears", "away_team": "Miami Dolphins", "home_team_abbrev": "CHI", @@ -291,8 +275,7 @@ "canonical_id": "game_nfl_2026_20250810_no_lac", "sport": "NFL", "season": "2025", - "date": "2025-08-10", - "time": "1p", + "game_datetime_utc": "2025-08-10T20:00:00Z", "home_team": "Los Angeles Chargers", "away_team": "New Orleans Saints", "home_team_abbrev": "LAC", @@ -309,8 +292,7 @@ "canonical_id": "game_nfl_2026_20250815_ten_atl", "sport": "NFL", "season": "2025", - "date": "2025-08-15", - "time": "7p", + "game_datetime_utc": "2025-08-15T23:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Tennessee Titans", "home_team_abbrev": "ATL", @@ -327,8 +309,7 @@ "canonical_id": "game_nfl_2026_20250816_kc_sea", "sport": "NFL", "season": "2025", - "date": "2025-08-15", - "time": "7p", + "game_datetime_utc": "2025-08-16T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Kansas City Chiefs", "home_team_abbrev": "SEA", @@ -345,8 +326,7 @@ "canonical_id": "game_nfl_2026_20250816_gb_ind", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Green Bay Packers", "home_team_abbrev": "IND", @@ -363,8 +343,7 @@ "canonical_id": "game_nfl_2026_20250816_ne_min", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "12p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "New England Patriots", "home_team_abbrev": "MIN", @@ -381,8 +360,7 @@ "canonical_id": "game_nfl_2026_20250816_cle_phi", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Cleveland Browns", "home_team_abbrev": "PHI", @@ -399,8 +377,7 @@ "canonical_id": "game_nfl_2026_20250816_mia_det", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Miami Dolphins", "home_team_abbrev": "DET", @@ -417,8 +394,7 @@ "canonical_id": "game_nfl_2026_20250816_car_hou", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "12p", + "game_datetime_utc": "2025-08-16T17:00:00Z", "home_team": "Houston Texans", "away_team": "Carolina Panthers", "home_team_abbrev": "HOU", @@ -435,8 +411,7 @@ "canonical_id": "game_nfl_2026_20250816_sf_lv", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "1:05p", + "game_datetime_utc": "2025-08-16T20:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "San Francisco 49ers", "home_team_abbrev": "LV", @@ -453,8 +428,7 @@ "canonical_id": "game_nfl_2026_20250816_tb_pit", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "PIT", @@ -471,8 +445,7 @@ "canonical_id": "game_nfl_2026_20250816_bal_dal", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "6p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Baltimore Ravens", "home_team_abbrev": "DAL", @@ -489,8 +462,7 @@ "canonical_id": "game_nfl_2026_20250816_lac_lar", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "4p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "Los Angeles Rams", "away_team": "Los Angeles Chargers", "home_team_abbrev": "LAR", @@ -507,8 +479,7 @@ "canonical_id": "game_nfl_2026_20250816_nyj_nyg", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7p", + "game_datetime_utc": "2025-08-16T23:00:00Z", "home_team": "New York Giants", "away_team": "New York Jets", "home_team_abbrev": "NYG", @@ -525,8 +496,7 @@ "canonical_id": "game_nfl_2026_20250817_ari_den", "sport": "NFL", "season": "2025", - "date": "2025-08-16", - "time": "7:30p", + "game_datetime_utc": "2025-08-17T01:30:00Z", "home_team": "Denver Broncos", "away_team": "Arizona Cardinals", "home_team_abbrev": "DEN", @@ -543,8 +513,7 @@ "canonical_id": "game_nfl_2026_20250817_jax_no", "sport": "NFL", "season": "2025", - "date": "2025-08-17", - "time": "12p", + "game_datetime_utc": "2025-08-17T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "NO", @@ -561,8 +530,7 @@ "canonical_id": "game_nfl_2026_20250818_buf_chi", "sport": "NFL", "season": "2025", - "date": "2025-08-17", - "time": "7p", + "game_datetime_utc": "2025-08-18T00:00:00Z", "home_team": "Chicago Bears", "away_team": "Buffalo Bills", "home_team_abbrev": "CHI", @@ -579,8 +547,7 @@ "canonical_id": "game_nfl_2026_20250819_cin_was", "sport": "NFL", "season": "2025", - "date": "2025-08-18", - "time": "8p", + "game_datetime_utc": "2025-08-19T00:00:00Z", "home_team": "Washington Commanders", "away_team": "Cincinnati Bengals", "home_team_abbrev": "WAS", @@ -597,8 +564,7 @@ "canonical_id": "game_nfl_2026_20250821_pit_car", "sport": "NFL", "season": "2025", - "date": "2025-08-21", - "time": "7p", + "game_datetime_utc": "2025-08-21T23:00:00Z", "home_team": "Carolina Panthers", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CAR", @@ -615,8 +581,7 @@ "canonical_id": "game_nfl_2026_20250822_ne_nyg", "sport": "NFL", "season": "2025", - "date": "2025-08-21", - "time": "8p", + "game_datetime_utc": "2025-08-22T00:00:00Z", "home_team": "New York Giants", "away_team": "New England Patriots", "home_team_abbrev": "NYG", @@ -633,8 +598,7 @@ "canonical_id": "game_nfl_2026_20250822_phi_nyj", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7:30p", + "game_datetime_utc": "2025-08-22T23:30:00Z", "home_team": "New York Jets", "away_team": "Philadelphia Eagles", "home_team_abbrev": "NYJ", @@ -651,8 +615,7 @@ "canonical_id": "game_nfl_2026_20250823_min_ten", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7p", + "game_datetime_utc": "2025-08-23T00:00:00Z", "home_team": "Tennessee Titans", "away_team": "Minnesota Vikings", "home_team_abbrev": "TEN", @@ -669,8 +632,7 @@ "canonical_id": "game_nfl_2026_20250823_atl_dal", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7p", + "game_datetime_utc": "2025-08-23T00:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Atlanta Falcons", "home_team_abbrev": "DAL", @@ -687,8 +649,7 @@ "canonical_id": "game_nfl_2026_20250823_chi_kc", "sport": "NFL", "season": "2025", - "date": "2025-08-22", - "time": "7:20p", + "game_datetime_utc": "2025-08-23T00:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Chicago Bears", "home_team_abbrev": "KC", @@ -705,8 +666,7 @@ "canonical_id": "game_nfl_2026_20250823_bal_was", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "12p", + "game_datetime_utc": "2025-08-23T16:00:00Z", "home_team": "Washington Commanders", "away_team": "Baltimore Ravens", "home_team_abbrev": "WAS", @@ -723,8 +683,7 @@ "canonical_id": "game_nfl_2026_20250823_hou_det", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Houston Texans", "home_team_abbrev": "DET", @@ -741,8 +700,7 @@ "canonical_id": "game_nfl_2026_20250823_ind_cin", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Indianapolis Colts", "home_team_abbrev": "CIN", @@ -759,8 +717,7 @@ "canonical_id": "game_nfl_2026_20250823_lar_cle", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "1p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Los Angeles Rams", "home_team_abbrev": "CLE", @@ -777,8 +734,7 @@ "canonical_id": "game_nfl_2026_20250823_den_no", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "12p", + "game_datetime_utc": "2025-08-23T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Denver Broncos", "home_team_abbrev": "NO", @@ -795,8 +751,7 @@ "canonical_id": "game_nfl_2026_20250823_sea_gb", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "3p", + "game_datetime_utc": "2025-08-23T20:00:00Z", "home_team": "Green Bay Packers", "away_team": "Seattle Seahawks", "home_team_abbrev": "GB", @@ -813,8 +768,7 @@ "canonical_id": "game_nfl_2026_20250823_jax_mia", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7p", + "game_datetime_utc": "2025-08-23T23:00:00Z", "home_team": "Miami Dolphins", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "MIA", @@ -831,8 +785,7 @@ "canonical_id": "game_nfl_2026_20250823_buf_tb", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7:30p", + "game_datetime_utc": "2025-08-23T23:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Buffalo Bills", "home_team_abbrev": "TB", @@ -849,8 +802,7 @@ "canonical_id": "game_nfl_2026_20250824_lac_sf", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "5:30p", + "game_datetime_utc": "2025-08-24T00:30:00Z", "home_team": "San Francisco 49ers", "away_team": "Los Angeles Chargers", "home_team_abbrev": "SF", @@ -867,8 +819,7 @@ "canonical_id": "game_nfl_2026_20250824_lv_ari", "sport": "NFL", "season": "2025", - "date": "2025-08-23", - "time": "7p", + "game_datetime_utc": "2025-08-24T02:00:00Z", "home_team": "Arizona Cardinals", "away_team": "Las Vegas Raiders", "home_team_abbrev": "ARI", @@ -885,8 +836,7 @@ "canonical_id": "game_nfl_2026_20250905_dal_phi", "sport": "NFL", "season": "2025", - "date": "2025-09-04", - "time": "8:20p", + "game_datetime_utc": "2025-09-05T00:20:00Z", "home_team": "Philadelphia Eagles", "away_team": "Dallas Cowboys", "home_team_abbrev": "PHI", @@ -903,8 +853,7 @@ "canonical_id": "game_nfl_2026_20250906_kc_lac", "sport": "NFL", "season": "2025", - "date": "2025-09-05", - "time": "9p", + "game_datetime_utc": "2025-09-06T00:00:00Z", "home_team": "Los Angeles Chargers", "away_team": "Kansas City Chiefs", "home_team_abbrev": "LAC", @@ -921,8 +870,7 @@ "canonical_id": "game_nfl_2026_20250907_nyg_was", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Washington Commanders", "away_team": "New York Giants", "home_team_abbrev": "WAS", @@ -939,8 +887,7 @@ "canonical_id": "game_nfl_2026_20250907_car_jax", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Carolina Panthers", "home_team_abbrev": "JAX", @@ -957,8 +904,7 @@ "canonical_id": "game_nfl_2026_20250907_tb_atl", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "ATL", @@ -975,8 +921,7 @@ "canonical_id": "game_nfl_2026_20250907_cin_cle", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Cincinnati Bengals", "home_team_abbrev": "CLE", @@ -993,8 +938,7 @@ "canonical_id": "game_nfl_2026_20250907_mia_ind", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Miami Dolphins", "home_team_abbrev": "IND", @@ -1011,8 +955,7 @@ "canonical_id": "game_nfl_2026_20250907_lv_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New England Patriots", "away_team": "Las Vegas Raiders", "home_team_abbrev": "NE", @@ -1029,8 +972,7 @@ "canonical_id": "game_nfl_2026_20250907_ari_no", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "12p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "Arizona Cardinals", "home_team_abbrev": "NO", @@ -1047,8 +989,7 @@ "canonical_id": "game_nfl_2026_20250907_pit_nyj", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1p", + "game_datetime_utc": "2025-09-07T17:00:00Z", "home_team": "New York Jets", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "NYJ", @@ -1065,8 +1006,7 @@ "canonical_id": "game_nfl_2026_20250907_sf_sea", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1:05p", + "game_datetime_utc": "2025-09-07T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "San Francisco 49ers", "home_team_abbrev": "SEA", @@ -1083,8 +1023,7 @@ "canonical_id": "game_nfl_2026_20250907_ten_den", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "2:05p", + "game_datetime_utc": "2025-09-07T20:05:00Z", "home_team": "Denver Broncos", "away_team": "Tennessee Titans", "home_team_abbrev": "DEN", @@ -1101,8 +1040,7 @@ "canonical_id": "game_nfl_2026_20250907_det_gb", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "3:25p", + "game_datetime_utc": "2025-09-07T20:25:00Z", "home_team": "Green Bay Packers", "away_team": "Detroit Lions", "home_team_abbrev": "GB", @@ -1119,8 +1057,7 @@ "canonical_id": "game_nfl_2026_20250907_hou_lar", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "1:25p", + "game_datetime_utc": "2025-09-07T20:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Houston Texans", "home_team_abbrev": "LAR", @@ -1137,8 +1074,7 @@ "canonical_id": "game_nfl_2026_20250908_bal_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-07", - "time": "8:20p", + "game_datetime_utc": "2025-09-08T00:20:00Z", "home_team": "Buffalo Bills", "away_team": "Baltimore Ravens", "home_team_abbrev": "BUF", @@ -1155,8 +1091,7 @@ "canonical_id": "game_nfl_2026_20250909_min_chi", "sport": "NFL", "season": "2025", - "date": "2025-09-08", - "time": "7:15p", + "game_datetime_utc": "2025-09-09T00:15:00Z", "home_team": "Chicago Bears", "away_team": "Minnesota Vikings", "home_team_abbrev": "CHI", @@ -1173,8 +1108,7 @@ "canonical_id": "game_nfl_2026_20250912_was_gb", "sport": "NFL", "season": "2025", - "date": "2025-09-11", - "time": "7:15p", + "game_datetime_utc": "2025-09-12T00:15:00Z", "home_team": "Green Bay Packers", "away_team": "Washington Commanders", "home_team_abbrev": "GB", @@ -1191,8 +1125,7 @@ "canonical_id": "game_nfl_2026_20250914_nyg_dal", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Dallas Cowboys", "away_team": "New York Giants", "home_team_abbrev": "DAL", @@ -1209,8 +1142,7 @@ "canonical_id": "game_nfl_2026_20250914_jax_cin", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "CIN", @@ -1227,8 +1159,7 @@ "canonical_id": "game_nfl_2026_20250914_chi_det", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Chicago Bears", "home_team_abbrev": "DET", @@ -1245,8 +1176,7 @@ "canonical_id": "game_nfl_2026_20250914_lar_ten", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "Los Angeles Rams", "home_team_abbrev": "TEN", @@ -1263,8 +1193,7 @@ "canonical_id": "game_nfl_2026_20250914_ne_mia", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Miami Dolphins", "away_team": "New England Patriots", "home_team_abbrev": "MIA", @@ -1281,8 +1210,7 @@ "canonical_id": "game_nfl_2026_20250914_sf_no", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "12p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "San Francisco 49ers", "home_team_abbrev": "NO", @@ -1299,8 +1227,7 @@ "canonical_id": "game_nfl_2026_20250914_buf_nyj", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "New York Jets", "away_team": "Buffalo Bills", "home_team_abbrev": "NYJ", @@ -1317,8 +1244,7 @@ "canonical_id": "game_nfl_2026_20250914_sea_pit", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Seattle Seahawks", "home_team_abbrev": "PIT", @@ -1335,8 +1261,7 @@ "canonical_id": "game_nfl_2026_20250914_cle_bal", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1p", + "game_datetime_utc": "2025-09-14T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Cleveland Browns", "home_team_abbrev": "BAL", @@ -1353,8 +1278,7 @@ "canonical_id": "game_nfl_2026_20250914_car_ari", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "1:05p", + "game_datetime_utc": "2025-09-14T20:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Carolina Panthers", "home_team_abbrev": "ARI", @@ -1371,8 +1295,7 @@ "canonical_id": "game_nfl_2026_20250914_den_ind", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "4:05p", + "game_datetime_utc": "2025-09-14T20:05:00Z", "home_team": "Indianapolis Colts", "away_team": "Denver Broncos", "home_team_abbrev": "IND", @@ -1389,8 +1312,7 @@ "canonical_id": "game_nfl_2026_20250914_phi_kc", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "3:25p", + "game_datetime_utc": "2025-09-14T20:25:00Z", "home_team": "Kansas City Chiefs", "away_team": "Philadelphia Eagles", "home_team_abbrev": "KC", @@ -1407,8 +1329,7 @@ "canonical_id": "game_nfl_2026_20250915_atl_min", "sport": "NFL", "season": "2025", - "date": "2025-09-14", - "time": "7:20p", + "game_datetime_utc": "2025-09-15T00:20:00Z", "home_team": "Minnesota Vikings", "away_team": "Atlanta Falcons", "home_team_abbrev": "MIN", @@ -1425,8 +1346,7 @@ "canonical_id": "game_nfl_2026_20250915_tb_hou", "sport": "NFL", "season": "2025", - "date": "2025-09-15", - "time": "6p", + "game_datetime_utc": "2025-09-15T23:00:00Z", "home_team": "Houston Texans", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "HOU", @@ -1443,8 +1363,7 @@ "canonical_id": "game_nfl_2026_20250916_lac_lv", "sport": "NFL", "season": "2025", - "date": "2025-09-15", - "time": "7p", + "game_datetime_utc": "2025-09-16T02:00:00Z", "home_team": "Las Vegas Raiders", "away_team": "Los Angeles Chargers", "home_team_abbrev": "LV", @@ -1461,8 +1380,7 @@ "canonical_id": "game_nfl_2026_20250919_mia_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-18", - "time": "8:15p", + "game_datetime_utc": "2025-09-19T00:15:00Z", "home_team": "Buffalo Bills", "away_team": "Miami Dolphins", "home_team_abbrev": "BUF", @@ -1479,8 +1397,7 @@ "canonical_id": "game_nfl_2026_20250921_nyj_tb", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New York Jets", "home_team_abbrev": "TB", @@ -1497,8 +1414,7 @@ "canonical_id": "game_nfl_2026_20250921_cin_min", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "12p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Cincinnati Bengals", "home_team_abbrev": "MIN", @@ -1515,8 +1431,7 @@ "canonical_id": "game_nfl_2026_20250921_ind_ten", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "12p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "Indianapolis Colts", "home_team_abbrev": "TEN", @@ -1533,8 +1448,7 @@ "canonical_id": "game_nfl_2026_20250921_lv_was", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Washington Commanders", "away_team": "Las Vegas Raiders", "home_team_abbrev": "WAS", @@ -1551,8 +1465,7 @@ "canonical_id": "game_nfl_2026_20250921_hou_jax", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Houston Texans", "home_team_abbrev": "JAX", @@ -1569,8 +1482,7 @@ "canonical_id": "game_nfl_2026_20250921_atl_car", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Atlanta Falcons", "home_team_abbrev": "CAR", @@ -1587,8 +1499,7 @@ "canonical_id": "game_nfl_2026_20250921_lar_phi", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Los Angeles Rams", "home_team_abbrev": "PHI", @@ -1605,8 +1516,7 @@ "canonical_id": "game_nfl_2026_20250921_pit_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "New England Patriots", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "NE", @@ -1623,8 +1533,7 @@ "canonical_id": "game_nfl_2026_20250921_gb_cle", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1p", + "game_datetime_utc": "2025-09-21T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Green Bay Packers", "home_team_abbrev": "CLE", @@ -1641,8 +1550,7 @@ "canonical_id": "game_nfl_2026_20250921_den_lac", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:05p", + "game_datetime_utc": "2025-09-21T20:05:00Z", "home_team": "Los Angeles Chargers", "away_team": "Denver Broncos", "home_team_abbrev": "LAC", @@ -1659,8 +1567,7 @@ "canonical_id": "game_nfl_2026_20250921_no_sea", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:05p", + "game_datetime_utc": "2025-09-21T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "New Orleans Saints", "home_team_abbrev": "SEA", @@ -1677,8 +1584,7 @@ "canonical_id": "game_nfl_2026_20250921_dal_chi", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "3:25p", + "game_datetime_utc": "2025-09-21T20:25:00Z", "home_team": "Chicago Bears", "away_team": "Dallas Cowboys", "home_team_abbrev": "CHI", @@ -1695,8 +1601,7 @@ "canonical_id": "game_nfl_2026_20250921_ari_sf", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "1:25p", + "game_datetime_utc": "2025-09-21T20:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Arizona Cardinals", "home_team_abbrev": "SF", @@ -1713,8 +1618,7 @@ "canonical_id": "game_nfl_2026_20250922_kc_nyg", "sport": "NFL", "season": "2025", - "date": "2025-09-21", - "time": "8:20p", + "game_datetime_utc": "2025-09-22T00:20:00Z", "home_team": "New York Giants", "away_team": "Kansas City Chiefs", "home_team_abbrev": "NYG", @@ -1731,8 +1635,7 @@ "canonical_id": "game_nfl_2026_20250923_det_bal", "sport": "NFL", "season": "2025", - "date": "2025-09-22", - "time": "8:15p", + "game_datetime_utc": "2025-09-23T00:15:00Z", "home_team": "Baltimore Ravens", "away_team": "Detroit Lions", "home_team_abbrev": "BAL", @@ -1749,8 +1652,7 @@ "canonical_id": "game_nfl_2026_20250926_sea_ari", "sport": "NFL", "season": "2025", - "date": "2025-09-25", - "time": "5:15p", + "game_datetime_utc": "2025-09-26T00:15:00Z", "home_team": "Arizona Cardinals", "away_team": "Seattle Seahawks", "home_team_abbrev": "ARI", @@ -1767,8 +1669,7 @@ "canonical_id": "game_nfl_2026_20250928_min_pit", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "2:30p", + "game_datetime_utc": "2025-09-28T13:30:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Minnesota Vikings", "home_team_abbrev": "PIT", @@ -1785,8 +1686,7 @@ "canonical_id": "game_nfl_2026_20250928_car_ne", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "New England Patriots", "away_team": "Carolina Panthers", "home_team_abbrev": "NE", @@ -1803,8 +1703,7 @@ "canonical_id": "game_nfl_2026_20250928_was_atl", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Washington Commanders", "home_team_abbrev": "ATL", @@ -1821,8 +1720,7 @@ "canonical_id": "game_nfl_2026_20250928_ten_hou", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "12p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Houston Texans", "away_team": "Tennessee Titans", "home_team_abbrev": "HOU", @@ -1839,8 +1737,7 @@ "canonical_id": "game_nfl_2026_20250928_no_buf", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Buffalo Bills", "away_team": "New Orleans Saints", "home_team_abbrev": "BUF", @@ -1857,8 +1754,7 @@ "canonical_id": "game_nfl_2026_20250928_phi_tb", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "TB", @@ -1875,8 +1771,7 @@ "canonical_id": "game_nfl_2026_20250928_lac_nyg", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "New York Giants", "away_team": "Los Angeles Chargers", "home_team_abbrev": "NYG", @@ -1893,8 +1788,7 @@ "canonical_id": "game_nfl_2026_20250928_cle_det", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1p", + "game_datetime_utc": "2025-09-28T17:00:00Z", "home_team": "Detroit Lions", "away_team": "Cleveland Browns", "home_team_abbrev": "DET", @@ -1911,8 +1805,7 @@ "canonical_id": "game_nfl_2026_20250928_jax_sf", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:05p", + "game_datetime_utc": "2025-09-28T20:05:00Z", "home_team": "San Francisco 49ers", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "SF", @@ -1929,8 +1822,7 @@ "canonical_id": "game_nfl_2026_20250928_ind_lar", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:05p", + "game_datetime_utc": "2025-09-28T20:05:00Z", "home_team": "Los Angeles Rams", "away_team": "Indianapolis Colts", "home_team_abbrev": "LAR", @@ -1947,8 +1839,7 @@ "canonical_id": "game_nfl_2026_20250928_bal_kc", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "3:25p", + "game_datetime_utc": "2025-09-28T20:25:00Z", "home_team": "Kansas City Chiefs", "away_team": "Baltimore Ravens", "home_team_abbrev": "KC", @@ -1965,8 +1856,7 @@ "canonical_id": "game_nfl_2026_20250928_chi_lv", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "1:25p", + "game_datetime_utc": "2025-09-28T20:25:00Z", "home_team": "Las Vegas Raiders", "away_team": "Chicago Bears", "home_team_abbrev": "LV", @@ -1983,8 +1873,7 @@ "canonical_id": "game_nfl_2026_20250929_gb_dal", "sport": "NFL", "season": "2025", - "date": "2025-09-28", - "time": "7:20p", + "game_datetime_utc": "2025-09-29T00:20:00Z", "home_team": "Dallas Cowboys", "away_team": "Green Bay Packers", "home_team_abbrev": "DAL", @@ -2001,8 +1890,7 @@ "canonical_id": "game_nfl_2026_20250929_nyj_mia", "sport": "NFL", "season": "2025", - "date": "2025-09-29", - "time": "7:15p", + "game_datetime_utc": "2025-09-29T23:15:00Z", "home_team": "Miami Dolphins", "away_team": "New York Jets", "home_team_abbrev": "MIA", @@ -2019,8 +1907,7 @@ "canonical_id": "game_nfl_2026_20250930_cin_den", "sport": "NFL", "season": "2025", - "date": "2025-09-29", - "time": "6:15p", + "game_datetime_utc": "2025-09-30T00:15:00Z", "home_team": "Denver Broncos", "away_team": "Cincinnati Bengals", "home_team_abbrev": "DEN", @@ -2037,8 +1924,7 @@ "canonical_id": "game_nfl_2026_20251003_sf_lar", "sport": "NFL", "season": "2025", - "date": "2025-10-02", - "time": "5:15p", + "game_datetime_utc": "2025-10-03T00:15:00Z", "home_team": "Los Angeles Rams", "away_team": "San Francisco 49ers", "home_team_abbrev": "LAR", @@ -2055,8 +1941,7 @@ "canonical_id": "game_nfl_2026_20251005_lv_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Las Vegas Raiders", "home_team_abbrev": "IND", @@ -2073,8 +1958,7 @@ "canonical_id": "game_nfl_2026_20251005_dal_nyj", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "New York Jets", "away_team": "Dallas Cowboys", "home_team_abbrev": "NYJ", @@ -2091,8 +1975,7 @@ "canonical_id": "game_nfl_2026_20251005_nyg_no", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "12p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "New York Giants", "home_team_abbrev": "NO", @@ -2109,8 +1992,7 @@ "canonical_id": "game_nfl_2026_20251005_hou_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Houston Texans", "home_team_abbrev": "BAL", @@ -2127,8 +2009,7 @@ "canonical_id": "game_nfl_2026_20251005_mia_car", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Miami Dolphins", "home_team_abbrev": "CAR", @@ -2145,8 +2026,7 @@ "canonical_id": "game_nfl_2026_20251005_den_phi", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1p", + "game_datetime_utc": "2025-10-05T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Denver Broncos", "home_team_abbrev": "PHI", @@ -2163,8 +2043,7 @@ "canonical_id": "game_nfl_2026_20251005_tb_sea", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:05p", + "game_datetime_utc": "2025-10-05T20:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "SEA", @@ -2181,8 +2060,7 @@ "canonical_id": "game_nfl_2026_20251005_ten_ari", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:05p", + "game_datetime_utc": "2025-10-05T20:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Tennessee Titans", "home_team_abbrev": "ARI", @@ -2199,8 +2077,7 @@ "canonical_id": "game_nfl_2026_20251005_was_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "1:25p", + "game_datetime_utc": "2025-10-05T20:25:00Z", "home_team": "Los Angeles Chargers", "away_team": "Washington Commanders", "home_team_abbrev": "LAC", @@ -2217,8 +2094,7 @@ "canonical_id": "game_nfl_2026_20251005_det_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "4:25p", + "game_datetime_utc": "2025-10-05T20:25:00Z", "home_team": "Cincinnati Bengals", "away_team": "Detroit Lions", "home_team_abbrev": "CIN", @@ -2235,8 +2111,7 @@ "canonical_id": "game_nfl_2026_20251006_ne_buf", "sport": "NFL", "season": "2025", - "date": "2025-10-05", - "time": "8:20p", + "game_datetime_utc": "2025-10-06T00:20:00Z", "home_team": "Buffalo Bills", "away_team": "New England Patriots", "home_team_abbrev": "BUF", @@ -2253,8 +2128,7 @@ "canonical_id": "game_nfl_2026_20251007_kc_jax", "sport": "NFL", "season": "2025", - "date": "2025-10-06", - "time": "8:15p", + "game_datetime_utc": "2025-10-07T00:15:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Kansas City Chiefs", "home_team_abbrev": "JAX", @@ -2271,8 +2145,7 @@ "canonical_id": "game_nhl_2025_20251007_chi_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "5p", + "game_datetime_utc": "2025-10-07T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "FLA", @@ -2289,8 +2162,7 @@ "canonical_id": "game_nhl_2025_20251007_pit_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "8p", + "game_datetime_utc": "2025-10-08T00:00:00Z", "home_team": "New York Rangers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYR", @@ -2307,8 +2179,7 @@ "canonical_id": "game_nhl_2025_20251007_col_la", "sport": "NHL", "season": "2025", - "date": "2025-10-07", - "time": "7:30p", + "game_datetime_utc": "2025-10-08T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Colorado Avalanche", "home_team_abbrev": "LA", @@ -2325,8 +2196,7 @@ "canonical_id": "game_nhl_2025_20251008_mtl_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7p", + "game_datetime_utc": "2025-10-08T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Montreal Canadiens", "home_team_abbrev": "TOR", @@ -2343,8 +2213,7 @@ "canonical_id": "game_nhl_2025_20251008_bos_was", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7:30p", + "game_datetime_utc": "2025-10-08T23:30:00Z", "home_team": "Washington Capitals", "away_team": "Boston Bruins", "home_team_abbrev": "WAS", @@ -2361,8 +2230,7 @@ "canonical_id": "game_nhl_2025_20251008_cgy_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "8p", + "game_datetime_utc": "2025-10-09T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Calgary Flames", "home_team_abbrev": "EDM", @@ -2379,8 +2247,7 @@ "canonical_id": "game_nhl_2025_20251008_la_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-08", - "time": "7p", + "game_datetime_utc": "2025-10-09T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Los Angeles Kings", "home_team_abbrev": "VGK", @@ -2397,8 +2264,7 @@ "canonical_id": "game_nhl_2025_20251009_mtl_det", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Montreal Canadiens", "home_team_abbrev": "DET", @@ -2415,8 +2281,7 @@ "canonical_id": "game_nhl_2025_20251009_nyi_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Islanders", "home_team_abbrev": "PIT", @@ -2433,8 +2298,7 @@ "canonical_id": "game_nhl_2025_20251009_phi_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "FLA", @@ -2451,8 +2315,7 @@ "canonical_id": "game_nhl_2025_20251009_nyr_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Rangers", "home_team_abbrev": "BUF", @@ -2469,8 +2332,7 @@ "canonical_id": "game_nhl_2025_20251009_chi_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Chicago Blackhawks", "home_team_abbrev": "BOS", @@ -2487,8 +2349,7 @@ "canonical_id": "game_nhl_2025_20251009_ott_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-09T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Ottawa Senators", "home_team_abbrev": "TB", @@ -2505,8 +2366,7 @@ "canonical_id": "game_nhl_2025_20251009_njd_car", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7:30p", + "game_datetime_utc": "2025-10-09T23:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "New Jersey Devils", "home_team_abbrev": "CAR", @@ -2523,8 +2383,7 @@ "canonical_id": "game_nhl_2025_20251009_cbj_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NSH", @@ -2541,8 +2400,7 @@ "canonical_id": "game_nhl_2025_20251009_dal_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Dallas Stars", "home_team_abbrev": "WPG", @@ -2559,8 +2417,7 @@ "canonical_id": "game_nhl_2025_20251009_min_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Minnesota Wild", "home_team_abbrev": "STL", @@ -2577,8 +2434,7 @@ "canonical_id": "game_nfl_2026_20251010_phi_nyg", "sport": "NFL", "season": "2025", - "date": "2025-10-09", - "time": "8:15p", + "game_datetime_utc": "2025-10-10T00:15:00Z", "home_team": "New York Giants", "away_team": "Philadelphia Eagles", "home_team_abbrev": "NYG", @@ -2595,8 +2451,7 @@ "canonical_id": "game_nhl_2025_20251009_ari_col", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Utah Club", "home_team_abbrev": "COL", @@ -2613,8 +2468,7 @@ "canonical_id": "game_nhl_2025_20251009_vgk_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SJ", @@ -2631,8 +2485,7 @@ "canonical_id": "game_nhl_2025_20251009_ana_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Anaheim Ducks", "home_team_abbrev": "SEA", @@ -2649,8 +2502,7 @@ "canonical_id": "game_nhl_2025_20251009_cgy_van", "sport": "NHL", "season": "2025", - "date": "2025-10-09", - "time": "7p", + "game_datetime_utc": "2025-10-10T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Calgary Flames", "home_team_abbrev": "VAN", @@ -2667,8 +2519,7 @@ "canonical_id": "game_nhl_2025_20251011_la_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "12:30p", + "game_datetime_utc": "2025-10-11T17:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Los Angeles Kings", "home_team_abbrev": "WPG", @@ -2685,8 +2536,7 @@ "canonical_id": "game_nhl_2025_20251011_stl_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "2p", + "game_datetime_utc": "2025-10-11T20:00:00Z", "home_team": "Calgary Flames", "away_team": "St. Louis Blues", "home_team_abbrev": "CGY", @@ -2703,8 +2553,7 @@ "canonical_id": "game_nhl_2025_20251011_tor_det", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DET", @@ -2721,8 +2570,7 @@ "canonical_id": "game_nhl_2025_20251011_mtl_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "6p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Montreal Canadiens", "home_team_abbrev": "CHI", @@ -2739,8 +2587,7 @@ "canonical_id": "game_nhl_2025_20251011_buf_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Buffalo Sabres", "home_team_abbrev": "BOS", @@ -2757,8 +2604,7 @@ "canonical_id": "game_nhl_2025_20251011_phi_car", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CAR", @@ -2775,8 +2621,7 @@ "canonical_id": "game_nhl_2025_20251011_ott_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Ottawa Senators", "home_team_abbrev": "FLA", @@ -2793,8 +2638,7 @@ "canonical_id": "game_nhl_2025_20251011_nyr_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Rangers", "home_team_abbrev": "PIT", @@ -2811,8 +2655,7 @@ "canonical_id": "game_nhl_2025_20251011_njd_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New Jersey Devils", "home_team_abbrev": "TB", @@ -2829,8 +2672,7 @@ "canonical_id": "game_nhl_2025_20251011_was_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-11T23:00:00Z", "home_team": "New York Islanders", "away_team": "Washington Capitals", "home_team_abbrev": "NYI", @@ -2847,8 +2689,7 @@ "canonical_id": "game_nhl_2025_20251011_ari_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Utah Club", "home_team_abbrev": "NSH", @@ -2865,8 +2706,7 @@ "canonical_id": "game_nhl_2025_20251011_cbj_min", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MIN", @@ -2883,8 +2723,7 @@ "canonical_id": "game_nhl_2025_20251011_dal_col", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Dallas Stars", "home_team_abbrev": "COL", @@ -2901,8 +2740,7 @@ "canonical_id": "game_nhl_2025_20251011_van_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "8p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vancouver Canucks", "home_team_abbrev": "EDM", @@ -2919,8 +2757,7 @@ "canonical_id": "game_nhl_2025_20251011_vgk_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SEA", @@ -2937,8 +2774,7 @@ "canonical_id": "game_nhl_2025_20251011_ana_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-11", - "time": "7p", + "game_datetime_utc": "2025-10-12T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Anaheim Ducks", "home_team_abbrev": "SJ", @@ -2955,8 +2791,7 @@ "canonical_id": "game_nfl_2026_20251012_dal_car", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Dallas Cowboys", "home_team_abbrev": "CAR", @@ -2973,8 +2808,7 @@ "canonical_id": "game_nfl_2026_20251012_lac_mia", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Miami Dolphins", "away_team": "Los Angeles Chargers", "home_team_abbrev": "MIA", @@ -2991,8 +2825,7 @@ "canonical_id": "game_nfl_2026_20251012_ari_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Arizona Cardinals", "home_team_abbrev": "IND", @@ -3009,8 +2842,7 @@ "canonical_id": "game_nfl_2026_20251012_lar_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Los Angeles Rams", "home_team_abbrev": "BAL", @@ -3027,8 +2859,7 @@ "canonical_id": "game_nfl_2026_20251012_sea_jax", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Seattle Seahawks", "home_team_abbrev": "JAX", @@ -3045,8 +2876,7 @@ "canonical_id": "game_nfl_2026_20251012_cle_pit", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Cleveland Browns", "home_team_abbrev": "PIT", @@ -3063,8 +2893,7 @@ "canonical_id": "game_nfl_2026_20251012_ne_no", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "12p", + "game_datetime_utc": "2025-10-12T17:00:00Z", "home_team": "New Orleans Saints", "away_team": "New England Patriots", "home_team_abbrev": "NO", @@ -3081,8 +2910,7 @@ "canonical_id": "game_nfl_2026_20251012_ten_lv", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "1:05p", + "game_datetime_utc": "2025-10-12T20:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Tennessee Titans", "home_team_abbrev": "LV", @@ -3099,8 +2927,7 @@ "canonical_id": "game_nfl_2026_20251012_sf_tb", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "4:25p", + "game_datetime_utc": "2025-10-12T20:25:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "San Francisco 49ers", "home_team_abbrev": "TB", @@ -3117,8 +2944,7 @@ "canonical_id": "game_nfl_2026_20251012_cin_gb", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "3:25p", + "game_datetime_utc": "2025-10-12T20:25:00Z", "home_team": "Green Bay Packers", "away_team": "Cincinnati Bengals", "home_team_abbrev": "GB", @@ -3135,8 +2961,7 @@ "canonical_id": "game_nhl_2025_20251012_was_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-12", - "time": "7p", + "game_datetime_utc": "2025-10-12T23:00:00Z", "home_team": "New York Rangers", "away_team": "Washington Capitals", "home_team_abbrev": "NYR", @@ -3153,8 +2978,7 @@ "canonical_id": "game_nfl_2026_20251013_det_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-12", - "time": "7:20p", + "game_datetime_utc": "2025-10-13T00:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Detroit Lions", "home_team_abbrev": "KC", @@ -3171,8 +2995,7 @@ "canonical_id": "game_nhl_2025_20251013_col_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "12:30p", + "game_datetime_utc": "2025-10-13T16:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Colorado Avalanche", "home_team_abbrev": "BUF", @@ -3189,8 +3012,7 @@ "canonical_id": "game_nhl_2025_20251013_tb_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "Boston Bruins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BOS", @@ -3207,8 +3029,7 @@ "canonical_id": "game_nhl_2025_20251013_nsh_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Nashville Predators", "home_team_abbrev": "OTT", @@ -3225,8 +3046,7 @@ "canonical_id": "game_nhl_2025_20251013_wpg_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "1p", + "game_datetime_utc": "2025-10-13T17:00:00Z", "home_team": "New York Islanders", "away_team": "Winnipeg Jets", "home_team_abbrev": "NYI", @@ -3243,8 +3063,7 @@ "canonical_id": "game_nhl_2025_20251013_det_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "2p", + "game_datetime_utc": "2025-10-13T18:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Detroit Red Wings", "home_team_abbrev": "TOR", @@ -3261,8 +3080,7 @@ "canonical_id": "game_nhl_2025_20251013_njd_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-13T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New Jersey Devils", "home_team_abbrev": "CBJ", @@ -3279,8 +3097,7 @@ "canonical_id": "game_nhl_2025_20251013_fla_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-13T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Florida Panthers", "home_team_abbrev": "PHI", @@ -3297,8 +3114,7 @@ "canonical_id": "game_nfl_2026_20251013_buf_atl", "sport": "NFL", "season": "2025", - "date": "2025-10-13", - "time": "7:15p", + "game_datetime_utc": "2025-10-13T23:15:00Z", "home_team": "Atlanta Falcons", "away_team": "Buffalo Bills", "home_team_abbrev": "ATL", @@ -3315,8 +3131,7 @@ "canonical_id": "game_nhl_2025_20251013_stl_van", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "4:30p", + "game_datetime_utc": "2025-10-13T23:30:00Z", "home_team": "Vancouver Canucks", "away_team": "St. Louis Blues", "home_team_abbrev": "VAN", @@ -3333,8 +3148,7 @@ "canonical_id": "game_nhl_2025_20251013_la_min", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7p", + "game_datetime_utc": "2025-10-14T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Los Angeles Kings", "home_team_abbrev": "MIN", @@ -3351,8 +3165,7 @@ "canonical_id": "game_nfl_2026_20251014_chi_was", "sport": "NFL", "season": "2025", - "date": "2025-10-13", - "time": "8:15p", + "game_datetime_utc": "2025-10-14T00:15:00Z", "home_team": "Washington Commanders", "away_team": "Chicago Bears", "home_team_abbrev": "WAS", @@ -3369,8 +3182,7 @@ "canonical_id": "game_nhl_2025_20251013_ari_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-13", - "time": "7:30p", + "game_datetime_utc": "2025-10-14T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Utah Club", "home_team_abbrev": "CHI", @@ -3387,8 +3199,7 @@ "canonical_id": "game_nhl_2025_20251014_tb_was", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WAS", @@ -3405,8 +3216,7 @@ "canonical_id": "game_nhl_2025_20251014_sea_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Seattle Kraken", "home_team_abbrev": "MTL", @@ -3423,8 +3233,7 @@ "canonical_id": "game_nhl_2025_20251014_edm_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "New York Rangers", "away_team": "Edmonton Oilers", "home_team_abbrev": "NYR", @@ -3441,8 +3250,7 @@ "canonical_id": "game_nhl_2025_20251014_nsh_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-14T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Nashville Predators", "home_team_abbrev": "TOR", @@ -3459,8 +3267,7 @@ "canonical_id": "game_nhl_2025_20251014_vgk_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-15T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CGY", @@ -3477,8 +3284,7 @@ "canonical_id": "game_nhl_2025_20251014_min_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "8:30p", + "game_datetime_utc": "2025-10-15T01:30:00Z", "home_team": "Dallas Stars", "away_team": "Minnesota Wild", "home_team_abbrev": "DAL", @@ -3495,8 +3301,7 @@ "canonical_id": "game_nhl_2025_20251014_car_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7p", + "game_datetime_utc": "2025-10-15T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "SJ", @@ -3513,8 +3318,7 @@ "canonical_id": "game_nhl_2025_20251014_pit_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-14", - "time": "7:30p", + "game_datetime_utc": "2025-10-15T02:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "ANA", @@ -3531,8 +3335,7 @@ "canonical_id": "game_nhl_2025_20251015_ott_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7p", + "game_datetime_utc": "2025-10-15T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Ottawa Senators", "home_team_abbrev": "BUF", @@ -3549,8 +3352,7 @@ "canonical_id": "game_nhl_2025_20251015_fla_det", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7p", + "game_datetime_utc": "2025-10-15T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Florida Panthers", "home_team_abbrev": "DET", @@ -3567,8 +3369,7 @@ "canonical_id": "game_nhl_2025_20251015_chi_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "8:30p", + "game_datetime_utc": "2025-10-16T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Chicago Blackhawks", "home_team_abbrev": "STL", @@ -3585,8 +3386,7 @@ "canonical_id": "game_nhl_2025_20251015_cgy_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-15", - "time": "7:30p", + "game_datetime_utc": "2025-10-16T01:30:00Z", "home_team": "Utah Club", "away_team": "Calgary Flames", "home_team_abbrev": "ARI", @@ -3603,8 +3403,7 @@ "canonical_id": "game_nhl_2025_20251016_nyr_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Rangers", "home_team_abbrev": "TOR", @@ -3621,8 +3420,7 @@ "canonical_id": "game_nhl_2025_20251016_col_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Colorado Avalanche", "home_team_abbrev": "CBJ", @@ -3639,8 +3437,7 @@ "canonical_id": "game_nhl_2025_20251016_nsh_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Nashville Predators", "home_team_abbrev": "MTL", @@ -3657,8 +3454,7 @@ "canonical_id": "game_nhl_2025_20251016_fla_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Florida Panthers", "home_team_abbrev": "NJ", @@ -3675,8 +3471,7 @@ "canonical_id": "game_nhl_2025_20251016_sea_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Seattle Kraken", "home_team_abbrev": "OTT", @@ -3693,8 +3488,7 @@ "canonical_id": "game_nhl_2025_20251016_wpg_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-16T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Winnipeg Jets", "home_team_abbrev": "PHI", @@ -3711,8 +3505,7 @@ "canonical_id": "game_nhl_2025_20251016_edm_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7:30p", + "game_datetime_utc": "2025-10-16T23:30:00Z", "home_team": "New York Islanders", "away_team": "Edmonton Oilers", "home_team_abbrev": "NYI", @@ -3729,8 +3522,7 @@ "canonical_id": "game_nhl_2025_20251016_van_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Vancouver Canucks", "home_team_abbrev": "DAL", @@ -3747,8 +3539,7 @@ "canonical_id": "game_nfl_2026_20251017_pit_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-16", - "time": "8:15p", + "game_datetime_utc": "2025-10-17T00:15:00Z", "home_team": "Cincinnati Bengals", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CIN", @@ -3765,8 +3556,7 @@ "canonical_id": "game_nhl_2025_20251016_pit_la", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "LA", @@ -3783,8 +3573,7 @@ "canonical_id": "game_nhl_2025_20251016_car_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "ANA", @@ -3801,8 +3590,7 @@ "canonical_id": "game_nhl_2025_20251016_bos_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-16", - "time": "7p", + "game_datetime_utc": "2025-10-17T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Boston Bruins", "home_team_abbrev": "VGK", @@ -3819,8 +3607,7 @@ "canonical_id": "game_nhl_2025_20251017_tb_det", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-17T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DET", @@ -3837,8 +3624,7 @@ "canonical_id": "game_nhl_2025_20251017_min_was", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-17T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Minnesota Wild", "home_team_abbrev": "WAS", @@ -3855,8 +3641,7 @@ "canonical_id": "game_nhl_2025_20251017_van_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7:30p", + "game_datetime_utc": "2025-10-18T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vancouver Canucks", "home_team_abbrev": "CHI", @@ -3873,8 +3658,7 @@ "canonical_id": "game_nhl_2025_20251017_sj_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-17", - "time": "7p", + "game_datetime_utc": "2025-10-18T01:00:00Z", "home_team": "Utah Club", "away_team": "San Jose Sharks", "home_team_abbrev": "ARI", @@ -3891,8 +3675,7 @@ "canonical_id": "game_nhl_2025_20251018_fla_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "1p", + "game_datetime_utc": "2025-10-18T17:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Florida Panthers", "home_team_abbrev": "BUF", @@ -3909,8 +3692,7 @@ "canonical_id": "game_nhl_2025_20251018_nyi_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "3p", + "game_datetime_utc": "2025-10-18T19:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Islanders", "home_team_abbrev": "OTT", @@ -3927,8 +3709,7 @@ "canonical_id": "game_nhl_2025_20251018_edm_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "3:30p", + "game_datetime_utc": "2025-10-18T19:30:00Z", "home_team": "New Jersey Devils", "away_team": "Edmonton Oilers", "home_team_abbrev": "NJ", @@ -3945,8 +3726,7 @@ "canonical_id": "game_nhl_2025_20251018_tb_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CBJ", @@ -3963,8 +3743,7 @@ "canonical_id": "game_nhl_2025_20251018_nyr_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Rangers", "home_team_abbrev": "MTL", @@ -3981,8 +3760,7 @@ "canonical_id": "game_nhl_2025_20251018_dal_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "St. Louis Blues", "away_team": "Dallas Stars", "home_team_abbrev": "STL", @@ -3999,8 +3777,7 @@ "canonical_id": "game_nhl_2025_20251018_sea_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Seattle Kraken", "home_team_abbrev": "TOR", @@ -4017,8 +3794,7 @@ "canonical_id": "game_nhl_2025_20251018_min_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Minnesota Wild", "home_team_abbrev": "PHI", @@ -4035,8 +3811,7 @@ "canonical_id": "game_nhl_2025_20251018_nsh_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-18T23:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Nashville Predators", "home_team_abbrev": "WPG", @@ -4053,8 +3828,7 @@ "canonical_id": "game_nhl_2025_20251018_car_la", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "6p", + "game_datetime_utc": "2025-10-19T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Carolina Hurricanes", "home_team_abbrev": "LA", @@ -4071,8 +3845,7 @@ "canonical_id": "game_nhl_2025_20251018_bos_col", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Boston Bruins", "home_team_abbrev": "COL", @@ -4089,8 +3862,7 @@ "canonical_id": "game_nhl_2025_20251018_cgy_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Calgary Flames", "home_team_abbrev": "VGK", @@ -4107,8 +3879,7 @@ "canonical_id": "game_nhl_2025_20251018_pit_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-18", - "time": "7p", + "game_datetime_utc": "2025-10-19T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "SJ", @@ -4125,8 +3896,7 @@ "canonical_id": "game_nhl_2025_20251019_van_was", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "12:30p", + "game_datetime_utc": "2025-10-19T16:30:00Z", "home_team": "Washington Capitals", "away_team": "Vancouver Canucks", "home_team_abbrev": "WAS", @@ -4143,8 +3913,7 @@ "canonical_id": "game_nfl_2026_20251019_car_nyj", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "New York Jets", "away_team": "Carolina Panthers", "home_team_abbrev": "NYJ", @@ -4161,8 +3930,7 @@ "canonical_id": "game_nfl_2026_20251019_lv_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Las Vegas Raiders", "home_team_abbrev": "KC", @@ -4179,8 +3947,7 @@ "canonical_id": "game_nfl_2026_20251019_phi_min", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Philadelphia Eagles", "home_team_abbrev": "MIN", @@ -4197,8 +3964,7 @@ "canonical_id": "game_nfl_2026_20251019_no_chi", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Chicago Bears", "away_team": "New Orleans Saints", "home_team_abbrev": "CHI", @@ -4215,8 +3981,7 @@ "canonical_id": "game_nfl_2026_20251019_mia_cle", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Cleveland Browns", "away_team": "Miami Dolphins", "home_team_abbrev": "CLE", @@ -4233,8 +3998,7 @@ "canonical_id": "game_nfl_2026_20251019_ne_ten", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "12p", + "game_datetime_utc": "2025-10-19T17:00:00Z", "home_team": "Tennessee Titans", "away_team": "New England Patriots", "home_team_abbrev": "TEN", @@ -4251,8 +4015,7 @@ "canonical_id": "game_nhl_2025_20251019_edm_det", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "3p", + "game_datetime_utc": "2025-10-19T19:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Edmonton Oilers", "home_team_abbrev": "DET", @@ -4269,8 +4032,7 @@ "canonical_id": "game_nfl_2026_20251019_ind_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1:05p", + "game_datetime_utc": "2025-10-19T20:05:00Z", "home_team": "Los Angeles Chargers", "away_team": "Indianapolis Colts", "home_team_abbrev": "LAC", @@ -4287,8 +4049,7 @@ "canonical_id": "game_nfl_2026_20251019_nyg_den", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "2:05p", + "game_datetime_utc": "2025-10-19T20:05:00Z", "home_team": "Denver Broncos", "away_team": "New York Giants", "home_team_abbrev": "DEN", @@ -4305,8 +4066,7 @@ "canonical_id": "game_nfl_2026_20251019_was_dal", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "3:25p", + "game_datetime_utc": "2025-10-19T20:25:00Z", "home_team": "Dallas Cowboys", "away_team": "Washington Commanders", "home_team_abbrev": "DAL", @@ -4323,8 +4083,7 @@ "canonical_id": "game_nfl_2026_20251019_gb_ari", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "1:25p", + "game_datetime_utc": "2025-10-19T20:25:00Z", "home_team": "Arizona Cardinals", "away_team": "Green Bay Packers", "home_team_abbrev": "ARI", @@ -4341,8 +4100,7 @@ "canonical_id": "game_nhl_2025_20251019_ana_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "6p", + "game_datetime_utc": "2025-10-19T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Anaheim Ducks", "home_team_abbrev": "CHI", @@ -4359,8 +4117,7 @@ "canonical_id": "game_nhl_2025_20251019_bos_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-19", - "time": "5p", + "game_datetime_utc": "2025-10-19T23:00:00Z", "home_team": "Utah Club", "away_team": "Boston Bruins", "home_team_abbrev": "ARI", @@ -4377,8 +4134,7 @@ "canonical_id": "game_nfl_2026_20251020_atl_sf", "sport": "NFL", "season": "2025", - "date": "2025-10-19", - "time": "5:20p", + "game_datetime_utc": "2025-10-20T00:20:00Z", "home_team": "San Francisco 49ers", "away_team": "Atlanta Falcons", "home_team_abbrev": "SF", @@ -4395,8 +4151,7 @@ "canonical_id": "game_nfl_2026_20251020_tb_det", "sport": "NFL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "Detroit Lions", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "DET", @@ -4413,8 +4168,7 @@ "canonical_id": "game_nhl_2025_20251020_sea_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Seattle Kraken", "home_team_abbrev": "PHI", @@ -4431,8 +4185,7 @@ "canonical_id": "game_nhl_2025_20251020_min_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-20T23:00:00Z", "home_team": "New York Rangers", "away_team": "Minnesota Wild", "home_team_abbrev": "NYR", @@ -4449,8 +4202,7 @@ "canonical_id": "game_nhl_2025_20251020_buf_mtl", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7:30p", + "game_datetime_utc": "2025-10-20T23:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Buffalo Sabres", "home_team_abbrev": "MTL", @@ -4467,8 +4219,7 @@ "canonical_id": "game_nhl_2025_20251020_wpg_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7:30p", + "game_datetime_utc": "2025-10-21T01:30:00Z", "home_team": "Calgary Flames", "away_team": "Winnipeg Jets", "home_team_abbrev": "CGY", @@ -4485,8 +4236,7 @@ "canonical_id": "game_nfl_2026_20251021_hou_sea", "sport": "NFL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-21T02:00:00Z", "home_team": "Seattle Seahawks", "away_team": "Houston Texans", "home_team_abbrev": "SEA", @@ -4503,8 +4253,7 @@ "canonical_id": "game_nhl_2025_20251020_car_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-20", - "time": "7p", + "game_datetime_utc": "2025-10-21T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Carolina Hurricanes", "home_team_abbrev": "VGK", @@ -4521,8 +4270,7 @@ "canonical_id": "game_nhl_2025_20251021_sj_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "New York Islanders", "away_team": "San Jose Sharks", "home_team_abbrev": "NYI", @@ -4539,8 +4287,7 @@ "canonical_id": "game_nhl_2025_20251021_sea_was", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Seattle Kraken", "home_team_abbrev": "WAS", @@ -4557,8 +4304,7 @@ "canonical_id": "game_nhl_2025_20251021_njd_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New Jersey Devils", "home_team_abbrev": "TOR", @@ -4575,8 +4321,7 @@ "canonical_id": "game_nhl_2025_20251021_van_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Vancouver Canucks", "home_team_abbrev": "PIT", @@ -4593,8 +4338,7 @@ "canonical_id": "game_nhl_2025_20251021_edm_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-21T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Edmonton Oilers", "home_team_abbrev": "OTT", @@ -4611,8 +4355,7 @@ "canonical_id": "game_nba_2025_20251021_hou_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-21", - "time": "6:30p", + "game_datetime_utc": "2025-10-21T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Houston Rockets", "home_team_abbrev": "OKC", @@ -4629,8 +4372,7 @@ "canonical_id": "game_nhl_2025_20251021_fla_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7:30p", + "game_datetime_utc": "2025-10-21T23:30:00Z", "home_team": "Boston Bruins", "away_team": "Florida Panthers", "home_team_abbrev": "BOS", @@ -4647,8 +4389,7 @@ "canonical_id": "game_nhl_2025_20251021_ana_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Anaheim Ducks", "home_team_abbrev": "NSH", @@ -4665,8 +4406,7 @@ "canonical_id": "game_nhl_2025_20251021_la_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Los Angeles Kings", "home_team_abbrev": "STL", @@ -4683,8 +4423,7 @@ "canonical_id": "game_nhl_2025_20251021_cbj_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DAL", @@ -4701,8 +4440,7 @@ "canonical_id": "game_nba_2025_20251021_gsw_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-21", - "time": "7p", + "game_datetime_utc": "2025-10-22T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAL", @@ -4719,8 +4457,7 @@ "canonical_id": "game_nhl_2025_20251021_col_ari", "sport": "NHL", "season": "2025", - "date": "2025-10-21", - "time": "8p", + "game_datetime_utc": "2025-10-22T02:00:00Z", "home_team": "Utah Club", "away_team": "Colorado Avalanche", "home_team_abbrev": "ARI", @@ -4737,8 +4474,7 @@ "canonical_id": "game_nba_2025_20251022_cle_nyk", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "New York Knicks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NYK", @@ -4755,8 +4491,7 @@ "canonical_id": "game_nba_2025_20251022_brk_cho", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHA", @@ -4773,8 +4508,7 @@ "canonical_id": "game_nba_2025_20251022_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -4791,8 +4525,7 @@ "canonical_id": "game_nhl_2025_20251022_min_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-22T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Minnesota Wild", "home_team_abbrev": "NJ", @@ -4809,8 +4542,7 @@ "canonical_id": "game_nba_2025_20251022_tor_atl", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Toronto Raptors", "home_team_abbrev": "ATL", @@ -4827,8 +4559,7 @@ "canonical_id": "game_nba_2025_20251022_phi_bos", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BOS", @@ -4845,8 +4576,7 @@ "canonical_id": "game_nhl_2025_20251022_det_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "7:30p", + "game_datetime_utc": "2025-10-22T23:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Detroit Red Wings", "home_team_abbrev": "BUF", @@ -4863,8 +4593,7 @@ "canonical_id": "game_nba_2025_20251022_nop_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MEM", @@ -4881,8 +4610,7 @@ "canonical_id": "game_nba_2025_20251022_det_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Detroit Pistons", "home_team_abbrev": "CHI", @@ -4899,8 +4627,7 @@ "canonical_id": "game_nba_2025_20251022_was_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Washington Wizards", "home_team_abbrev": "MIL", @@ -4917,8 +4644,7 @@ "canonical_id": "game_nhl_2025_20251022_mtl_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-22", - "time": "6:30p", + "game_datetime_utc": "2025-10-23T00:30:00Z", "home_team": "Calgary Flames", "away_team": "Montreal Canadiens", "home_team_abbrev": "CGY", @@ -4935,8 +4661,7 @@ "canonical_id": "game_nba_2025_20251022_lac_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Clippers", "home_team_abbrev": "UTA", @@ -4953,8 +4678,7 @@ "canonical_id": "game_nba_2025_20251022_sas_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "8:30p", + "game_datetime_utc": "2025-10-23T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "San Antonio Spurs", "home_team_abbrev": "DAL", @@ -4971,8 +4695,7 @@ "canonical_id": "game_nba_2025_20251022_min_por", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "7p", + "game_datetime_utc": "2025-10-23T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "POR", @@ -4989,8 +4712,7 @@ "canonical_id": "game_nba_2025_20251022_sac_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-22", - "time": "10p", + "game_datetime_utc": "2025-10-23T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Sacramento Kings", "home_team_abbrev": "PHX", @@ -5007,8 +4729,7 @@ "canonical_id": "game_nhl_2025_20251023_chi_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "6:45p", + "game_datetime_utc": "2025-10-23T22:45:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Chicago Blackhawks", "home_team_abbrev": "TB", @@ -5025,8 +4746,7 @@ "canonical_id": "game_nhl_2025_20251023_sj_nyr", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "New York Rangers", "away_team": "San Jose Sharks", "home_team_abbrev": "NYR", @@ -5043,8 +4763,7 @@ "canonical_id": "game_nhl_2025_20251023_pit_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "FLA", @@ -5061,8 +4780,7 @@ "canonical_id": "game_nhl_2025_20251023_ana_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Anaheim Ducks", "home_team_abbrev": "BOS", @@ -5079,8 +4797,7 @@ "canonical_id": "game_nhl_2025_20251023_det_nyi", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "New York Islanders", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYI", @@ -5097,8 +4814,7 @@ "canonical_id": "game_nhl_2025_20251023_phi_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-23T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Philadelphia Flyers", "home_team_abbrev": "OTT", @@ -5115,8 +4831,7 @@ "canonical_id": "game_nba_2025_20251023_okc_ind", "sport": "NBA", "season": "2025", - "date": "2025-10-23", - "time": "7:30p", + "game_datetime_utc": "2025-10-23T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "IND", @@ -5133,8 +4848,7 @@ "canonical_id": "game_nhl_2025_20251023_van_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Vancouver Canucks", "home_team_abbrev": "NSH", @@ -5151,8 +4865,7 @@ "canonical_id": "game_nhl_2025_20251023_ari_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Utah Club", "home_team_abbrev": "STL", @@ -5169,8 +4882,7 @@ "canonical_id": "game_nhl_2025_20251023_sea_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Seattle Kraken", "home_team_abbrev": "WPG", @@ -5187,8 +4899,7 @@ "canonical_id": "game_nfl_2026_20251024_min_lac", "sport": "NFL", "season": "2025", - "date": "2025-10-23", - "time": "5:15p", + "game_datetime_utc": "2025-10-24T00:15:00Z", "home_team": "Los Angeles Chargers", "away_team": "Minnesota Vikings", "home_team_abbrev": "LAC", @@ -5205,8 +4916,7 @@ "canonical_id": "game_nhl_2025_20251023_mtl_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Montreal Canadiens", "home_team_abbrev": "EDM", @@ -5223,8 +4933,7 @@ "canonical_id": "game_nhl_2025_20251023_car_col", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Carolina Hurricanes", "home_team_abbrev": "COL", @@ -5241,8 +4950,7 @@ "canonical_id": "game_nhl_2025_20251023_la_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-23", - "time": "8p", + "game_datetime_utc": "2025-10-24T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Los Angeles Kings", "home_team_abbrev": "DAL", @@ -5259,8 +4967,7 @@ "canonical_id": "game_nba_2025_20251023_den_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-23", - "time": "7p", + "game_datetime_utc": "2025-10-24T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Denver Nuggets", "home_team_abbrev": "GSW", @@ -5277,8 +4984,7 @@ "canonical_id": "game_nba_2025_20251024_mil_tor", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "6:30p", + "game_datetime_utc": "2025-10-24T22:30:00Z", "home_team": "Toronto Raptors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "TOR", @@ -5295,8 +5001,7 @@ "canonical_id": "game_nba_2025_20251024_atl_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Atlanta Hawks", "home_team_abbrev": "ORL", @@ -5313,8 +5018,7 @@ "canonical_id": "game_nhl_2025_20251024_sj_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "San Jose Sharks", "home_team_abbrev": "NJ", @@ -5331,8 +5035,7 @@ "canonical_id": "game_nhl_2025_20251024_was_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Washington Capitals", "home_team_abbrev": "CBJ", @@ -5349,8 +5052,7 @@ "canonical_id": "game_nhl_2025_20251024_tor_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-24T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BUF", @@ -5367,8 +5069,7 @@ "canonical_id": "game_nba_2025_20251024_cle_brk", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-24T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BKN", @@ -5385,8 +5086,7 @@ "canonical_id": "game_nba_2025_20251024_bos_nyk", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-24T23:30:00Z", "home_team": "New York Knicks", "away_team": "Boston Celtics", "home_team_abbrev": "NYK", @@ -5403,8 +5103,7 @@ "canonical_id": "game_nba_2025_20251024_det_hou", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Detroit Pistons", "home_team_abbrev": "HOU", @@ -5421,8 +5120,7 @@ "canonical_id": "game_nba_2025_20251024_mia_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Miami Heat", "home_team_abbrev": "MEM", @@ -5439,8 +5137,7 @@ "canonical_id": "game_nba_2025_20251024_sas_nop", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "San Antonio Spurs", "home_team_abbrev": "NOP", @@ -5457,8 +5154,7 @@ "canonical_id": "game_nhl_2025_20251024_cgy_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Calgary Flames", "home_team_abbrev": "WPG", @@ -5475,8 +5171,7 @@ "canonical_id": "game_nba_2025_20251024_was_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Washington Wizards", "home_team_abbrev": "DAL", @@ -5493,8 +5188,7 @@ "canonical_id": "game_nba_2025_20251024_gsw_por", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Golden State Warriors", "home_team_abbrev": "POR", @@ -5511,8 +5205,7 @@ "canonical_id": "game_nba_2025_20251024_uta_sac", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Utah Jazz", "home_team_abbrev": "SAC", @@ -5529,8 +5222,7 @@ "canonical_id": "game_nba_2025_20251024_min_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7p", + "game_datetime_utc": "2025-10-25T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAL", @@ -5547,8 +5239,7 @@ "canonical_id": "game_nba_2025_20251024_phx_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-24", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAC", @@ -5565,8 +5256,7 @@ "canonical_id": "game_nhl_2025_20251025_nyi_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "12:30p", + "game_datetime_utc": "2025-10-25T16:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Islanders", "home_team_abbrev": "PHI", @@ -5583,8 +5273,7 @@ "canonical_id": "game_nhl_2025_20251025_col_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "3p", + "game_datetime_utc": "2025-10-25T19:00:00Z", "home_team": "Boston Bruins", "away_team": "Colorado Avalanche", "home_team_abbrev": "BOS", @@ -5601,8 +5290,7 @@ "canonical_id": "game_nhl_2025_20251025_ana_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Anaheim Ducks", "home_team_abbrev": "TB", @@ -5619,8 +5307,7 @@ "canonical_id": "game_nhl_2025_20251025_buf_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T21:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Buffalo Sabres", "home_team_abbrev": "TOR", @@ -5637,8 +5324,7 @@ "canonical_id": "game_nhl_2025_20251025_ari_min", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "5p", + "game_datetime_utc": "2025-10-25T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "Utah Club", "home_team_abbrev": "MIN", @@ -5655,8 +5341,7 @@ "canonical_id": "game_nhl_2025_20251025_vgk_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "6p", + "game_datetime_utc": "2025-10-25T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "FLA", @@ -5673,8 +5358,7 @@ "canonical_id": "game_nba_2025_20251025_chi_orl", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Chicago Bulls", "home_team_abbrev": "ORL", @@ -5691,8 +5375,7 @@ "canonical_id": "game_nhl_2025_20251025_ott_was", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Ottawa Senators", "home_team_abbrev": "WAS", @@ -5709,8 +5392,7 @@ "canonical_id": "game_nhl_2025_20251025_stl_det", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "St. Louis Blues", "home_team_abbrev": "DET", @@ -5727,8 +5409,7 @@ "canonical_id": "game_nhl_2025_20251025_cbj_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PIT", @@ -5745,8 +5426,7 @@ "canonical_id": "game_nhl_2025_20251025_mtl_van", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "4p", + "game_datetime_utc": "2025-10-25T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Montreal Canadiens", "home_team_abbrev": "VAN", @@ -5763,8 +5443,7 @@ "canonical_id": "game_nba_2025_20251025_cho_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "4:30p", + "game_datetime_utc": "2025-10-25T23:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Charlotte Hornets", "home_team_abbrev": "PHI", @@ -5781,8 +5460,7 @@ "canonical_id": "game_nba_2025_20251025_okc_atl", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7:30p", + "game_datetime_utc": "2025-10-25T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "ATL", @@ -5799,8 +5477,7 @@ "canonical_id": "game_nba_2025_20251025_ind_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Indiana Pacers", "home_team_abbrev": "MEM", @@ -5817,8 +5494,7 @@ "canonical_id": "game_nhl_2025_20251025_la_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Los Angeles Kings", "home_team_abbrev": "NSH", @@ -5835,8 +5511,7 @@ "canonical_id": "game_nhl_2025_20251025_car_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Carolina Hurricanes", "home_team_abbrev": "DAL", @@ -5853,8 +5528,7 @@ "canonical_id": "game_nba_2025_20251025_phx_den", "sport": "NBA", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Phoenix Suns", "home_team_abbrev": "DEN", @@ -5871,8 +5545,7 @@ "canonical_id": "game_nhl_2025_20251025_edm_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-25", - "time": "7p", + "game_datetime_utc": "2025-10-26T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Edmonton Oilers", "home_team_abbrev": "SEA", @@ -5889,8 +5562,7 @@ "canonical_id": "game_nfl_2026_20251026_cle_ne", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "New England Patriots", "away_team": "Cleveland Browns", "home_team_abbrev": "NE", @@ -5907,8 +5579,7 @@ "canonical_id": "game_nfl_2026_20251026_sf_hou", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "12p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Houston Texans", "away_team": "San Francisco 49ers", "home_team_abbrev": "HOU", @@ -5925,8 +5596,7 @@ "canonical_id": "game_nfl_2026_20251026_buf_car", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Carolina Panthers", "away_team": "Buffalo Bills", "home_team_abbrev": "CAR", @@ -5943,8 +5613,7 @@ "canonical_id": "game_nfl_2026_20251026_nyg_phi", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "New York Giants", "home_team_abbrev": "PHI", @@ -5961,8 +5630,7 @@ "canonical_id": "game_nfl_2026_20251026_mia_atl", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Miami Dolphins", "home_team_abbrev": "ATL", @@ -5979,8 +5647,7 @@ "canonical_id": "game_nfl_2026_20251026_nyj_cin", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "New York Jets", "home_team_abbrev": "CIN", @@ -5997,8 +5664,7 @@ "canonical_id": "game_nfl_2026_20251026_chi_bal", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Chicago Bears", "home_team_abbrev": "BAL", @@ -6015,8 +5681,7 @@ "canonical_id": "game_nhl_2025_20251026_col_njd", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T17:00:00Z", "home_team": "New Jersey Devils", "away_team": "Colorado Avalanche", "home_team_abbrev": "NJ", @@ -6033,8 +5698,7 @@ "canonical_id": "game_nba_2025_20251026_brk_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "1p", + "game_datetime_utc": "2025-10-26T18:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Brooklyn Nets", "home_team_abbrev": "SAS", @@ -6051,8 +5715,7 @@ "canonical_id": "game_nba_2025_20251026_bos_det", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "3:30p", + "game_datetime_utc": "2025-10-26T19:30:00Z", "home_team": "Detroit Pistons", "away_team": "Boston Celtics", "home_team_abbrev": "DET", @@ -6069,8 +5732,7 @@ "canonical_id": "game_nfl_2026_20251026_tb_no", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "3:05p", + "game_datetime_utc": "2025-10-26T20:05:00Z", "home_team": "New Orleans Saints", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "NO", @@ -6087,8 +5749,7 @@ "canonical_id": "game_nfl_2026_20251026_dal_den", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "2:25p", + "game_datetime_utc": "2025-10-26T20:25:00Z", "home_team": "Denver Broncos", "away_team": "Dallas Cowboys", "home_team_abbrev": "DEN", @@ -6105,8 +5766,7 @@ "canonical_id": "game_nfl_2026_20251026_ten_ind", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "4:25p", + "game_datetime_utc": "2025-10-26T20:25:00Z", "home_team": "Indianapolis Colts", "away_team": "Tennessee Titans", "home_team_abbrev": "IND", @@ -6123,8 +5783,7 @@ "canonical_id": "game_nhl_2025_20251026_vgk_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Vegas Golden Knights", "home_team_abbrev": "TB", @@ -6141,8 +5800,7 @@ "canonical_id": "game_nba_2025_20251026_cho_was", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Washington Wizards", "away_team": "Charlotte Hornets", "home_team_abbrev": "WAS", @@ -6159,8 +5817,7 @@ "canonical_id": "game_nba_2025_20251026_mil_cle", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CLE", @@ -6177,8 +5834,7 @@ "canonical_id": "game_nba_2025_20251026_nyk_mia", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Miami Heat", "away_team": "New York Knicks", "home_team_abbrev": "MIA", @@ -6195,8 +5851,7 @@ "canonical_id": "game_nhl_2025_20251026_ari_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Utah Club", "home_team_abbrev": "WPG", @@ -6213,8 +5868,7 @@ "canonical_id": "game_nhl_2025_20251026_sj_min", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "5p", + "game_datetime_utc": "2025-10-26T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "San Jose Sharks", "home_team_abbrev": "MIN", @@ -6231,8 +5885,7 @@ "canonical_id": "game_nba_2025_20251026_ind_min", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Indiana Pacers", "home_team_abbrev": "MIN", @@ -6249,8 +5902,7 @@ "canonical_id": "game_nhl_2025_20251026_dal_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Nashville Predators", "away_team": "Dallas Stars", "home_team_abbrev": "NSH", @@ -6267,8 +5919,7 @@ "canonical_id": "game_nhl_2025_20251026_la_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-26T23:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Los Angeles Kings", "home_team_abbrev": "CHI", @@ -6285,8 +5936,7 @@ "canonical_id": "game_nba_2025_20251026_tor_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6:30p", + "game_datetime_utc": "2025-10-26T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Toronto Raptors", "home_team_abbrev": "DAL", @@ -6303,8 +5953,7 @@ "canonical_id": "game_nhl_2025_20251026_nyr_cgy", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T00:00:00Z", "home_team": "Calgary Flames", "away_team": "New York Rangers", "home_team_abbrev": "CGY", @@ -6321,8 +5970,7 @@ "canonical_id": "game_nfl_2026_20251027_gb_pit", "sport": "NFL", "season": "2025", - "date": "2025-10-26", - "time": "8:20p", + "game_datetime_utc": "2025-10-27T00:20:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Green Bay Packers", "home_team_abbrev": "PIT", @@ -6339,8 +5987,7 @@ "canonical_id": "game_nba_2025_20251026_por_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T01:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Portland Blazers", "home_team_abbrev": "LAC", @@ -6357,8 +6004,7 @@ "canonical_id": "game_nba_2025_20251026_lal_sac", "sport": "NBA", "season": "2025", - "date": "2025-10-26", - "time": "6p", + "game_datetime_utc": "2025-10-27T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAC", @@ -6375,8 +6021,7 @@ "canonical_id": "game_nhl_2025_20251026_edm_van", "sport": "NHL", "season": "2025", - "date": "2025-10-26", - "time": "7p", + "game_datetime_utc": "2025-10-27T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Edmonton Oilers", "home_team_abbrev": "VAN", @@ -6393,8 +6038,7 @@ "canonical_id": "game_nba_2025_20251027_cle_det", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DET", @@ -6411,8 +6055,7 @@ "canonical_id": "game_nba_2025_20251027_orl_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "4p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Orlando Magic", "home_team_abbrev": "PHI", @@ -6429,8 +6072,7 @@ "canonical_id": "game_nhl_2025_20251027_stl_pit", "sport": "NHL", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-27T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "St. Louis Blues", "home_team_abbrev": "PIT", @@ -6447,8 +6089,7 @@ "canonical_id": "game_nhl_2025_20251027_bos_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-27T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Boston Bruins", "home_team_abbrev": "OTT", @@ -6465,8 +6106,7 @@ "canonical_id": "game_nba_2025_20251027_tor_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Toronto Raptors", "home_team_abbrev": "SAS", @@ -6483,8 +6123,7 @@ "canonical_id": "game_nba_2025_20251027_atl_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHI", @@ -6501,8 +6140,7 @@ "canonical_id": "game_nba_2025_20251027_brk_hou", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Brooklyn Nets", "home_team_abbrev": "HOU", @@ -6519,8 +6157,7 @@ "canonical_id": "game_nba_2025_20251027_bos_nop", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Boston Celtics", "home_team_abbrev": "NOP", @@ -6537,8 +6174,7 @@ "canonical_id": "game_nfl_2026_20251028_was_kc", "sport": "NFL", "season": "2025", - "date": "2025-10-27", - "time": "7:15p", + "game_datetime_utc": "2025-10-28T00:15:00Z", "home_team": "Kansas City Chiefs", "away_team": "Washington Commanders", "home_team_abbrev": "KC", @@ -6555,8 +6191,7 @@ "canonical_id": "game_nba_2025_20251027_okc_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DAL", @@ -6573,8 +6208,7 @@ "canonical_id": "game_nba_2025_20251027_phx_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Phoenix Suns", "home_team_abbrev": "UTA", @@ -6591,8 +6225,7 @@ "canonical_id": "game_nba_2025_20251027_den_min", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "8:30p", + "game_datetime_utc": "2025-10-28T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Denver Nuggets", "home_team_abbrev": "MIN", @@ -6609,8 +6242,7 @@ "canonical_id": "game_nba_2025_20251027_mem_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7p", + "game_datetime_utc": "2025-10-28T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "GSW", @@ -6627,8 +6259,7 @@ "canonical_id": "game_nba_2025_20251027_por_lal", "sport": "NBA", "season": "2025", - "date": "2025-10-27", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Portland Blazers", "home_team_abbrev": "LAL", @@ -6645,8 +6276,7 @@ "canonical_id": "game_nhl_2025_20251028_pit_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6p", + "game_datetime_utc": "2025-10-28T22:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "PHI", @@ -6663,8 +6293,7 @@ "canonical_id": "game_nhl_2025_20251028_cgy_tor", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6p", + "game_datetime_utc": "2025-10-28T22:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Calgary Flames", "home_team_abbrev": "TOR", @@ -6681,8 +6310,7 @@ "canonical_id": "game_nhl_2025_20251028_vgk_car", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:30p", + "game_datetime_utc": "2025-10-28T22:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CAR", @@ -6699,8 +6327,7 @@ "canonical_id": "game_nhl_2025_20251028_cbj_buf", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:45p", + "game_datetime_utc": "2025-10-28T22:45:00Z", "home_team": "Buffalo Sabres", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BUF", @@ -6717,8 +6344,7 @@ "canonical_id": "game_nba_2025_20251028_phi_was", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-28T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Philadelphia 76ers", "home_team_abbrev": "WAS", @@ -6735,8 +6361,7 @@ "canonical_id": "game_nhl_2025_20251028_ana_fla", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-28T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Anaheim Ducks", "home_team_abbrev": "FLA", @@ -6753,8 +6378,7 @@ "canonical_id": "game_nhl_2025_20251028_nyi_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:15p", + "game_datetime_utc": "2025-10-28T23:15:00Z", "home_team": "Boston Bruins", "away_team": "New York Islanders", "home_team_abbrev": "BOS", @@ -6771,8 +6395,7 @@ "canonical_id": "game_nba_2025_20251028_cho_mia", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-28T23:30:00Z", "home_team": "Miami Heat", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIA", @@ -6789,8 +6412,7 @@ "canonical_id": "game_nhl_2025_20251028_tb_nsh", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "6:45p", + "game_datetime_utc": "2025-10-28T23:45:00Z", "home_team": "Nashville Predators", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NSH", @@ -6807,8 +6429,7 @@ "canonical_id": "game_nba_2025_20251028_sac_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Sacramento Kings", "home_team_abbrev": "OKC", @@ -6825,8 +6446,7 @@ "canonical_id": "game_nba_2025_20251028_nyk_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New York Knicks", "home_team_abbrev": "MIL", @@ -6843,8 +6463,7 @@ "canonical_id": "game_nhl_2025_20251028_wpg_min", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Winnipeg Jets", "home_team_abbrev": "MIN", @@ -6861,8 +6480,7 @@ "canonical_id": "game_nhl_2025_20251028_det_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:15p", + "game_datetime_utc": "2025-10-29T00:15:00Z", "home_team": "St. Louis Blues", "away_team": "Detroit Red Wings", "home_team_abbrev": "STL", @@ -6879,8 +6497,7 @@ "canonical_id": "game_nhl_2025_20251028_was_dal", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T00:30:00Z", "home_team": "Dallas Stars", "away_team": "Washington Capitals", "home_team_abbrev": "DAL", @@ -6897,8 +6514,7 @@ "canonical_id": "game_nhl_2025_20251028_ott_chi", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:45p", + "game_datetime_utc": "2025-10-29T00:45:00Z", "home_team": "Chicago Blackhawks", "away_team": "Ottawa Senators", "home_team_abbrev": "CHI", @@ -6915,8 +6531,7 @@ "canonical_id": "game_nhl_2025_20251028_njd_col", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New Jersey Devils", "home_team_abbrev": "COL", @@ -6933,8 +6548,7 @@ "canonical_id": "game_nhl_2025_20251028_ari_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Utah Club", "home_team_abbrev": "EDM", @@ -6951,8 +6565,7 @@ "canonical_id": "game_nhl_2025_20251028_nyr_van", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7p", + "game_datetime_utc": "2025-10-29T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New York Rangers", "home_team_abbrev": "VAN", @@ -6969,8 +6582,7 @@ "canonical_id": "game_nhl_2025_20251028_mtl_sea", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T02:30:00Z", "home_team": "Seattle Kraken", "away_team": "Montreal Canadiens", "home_team_abbrev": "SEA", @@ -6987,8 +6599,7 @@ "canonical_id": "game_nba_2025_20251028_lac_gsw", "sport": "NBA", "season": "2025", - "date": "2025-10-28", - "time": "8p", + "game_datetime_utc": "2025-10-29T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "GSW", @@ -7005,8 +6616,7 @@ "canonical_id": "game_nhl_2025_20251028_la_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-28", - "time": "8p", + "game_datetime_utc": "2025-10-29T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Los Angeles Kings", "home_team_abbrev": "SJ", @@ -7023,8 +6633,7 @@ "canonical_id": "game_nba_2025_20251029_hou_tor", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "6:30p", + "game_datetime_utc": "2025-10-29T22:30:00Z", "home_team": "Toronto Raptors", "away_team": "Houston Rockets", "home_team_abbrev": "TOR", @@ -7041,8 +6650,7 @@ "canonical_id": "game_nba_2025_20251029_cle_bos", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-29T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BOS", @@ -7059,8 +6667,7 @@ "canonical_id": "game_nba_2025_20251029_orl_det", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-29T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Orlando Magic", "home_team_abbrev": "DET", @@ -7077,8 +6684,7 @@ "canonical_id": "game_nba_2025_20251029_atl_brk", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Atlanta Hawks", "home_team_abbrev": "BKN", @@ -7095,8 +6701,7 @@ "canonical_id": "game_nhl_2025_20251029_tor_cbj", "sport": "NHL", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-29T23:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CBJ", @@ -7113,8 +6718,7 @@ "canonical_id": "game_nba_2025_20251029_sac_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Sacramento Kings", "home_team_abbrev": "CHI", @@ -7131,8 +6735,7 @@ "canonical_id": "game_nba_2025_20251029_ind_dal", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7:30p", + "game_datetime_utc": "2025-10-30T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Indiana Pacers", "home_team_abbrev": "DAL", @@ -7149,8 +6752,7 @@ "canonical_id": "game_nba_2025_20251029_nop_den", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DEN", @@ -7167,8 +6769,7 @@ "canonical_id": "game_nba_2025_20251029_por_uta", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "7p", + "game_datetime_utc": "2025-10-30T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Portland Blazers", "home_team_abbrev": "UTA", @@ -7185,8 +6786,7 @@ "canonical_id": "game_nba_2025_20251029_lal_min", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "8:30p", + "game_datetime_utc": "2025-10-30T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIN", @@ -7203,8 +6803,7 @@ "canonical_id": "game_nba_2025_20251029_mem_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-29", - "time": "10p", + "game_datetime_utc": "2025-10-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Memphis Grizzlies", "home_team_abbrev": "PHX", @@ -7221,8 +6820,7 @@ "canonical_id": "game_nba_2025_20251030_orl_cho", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Orlando Magic", "home_team_abbrev": "CHA", @@ -7239,8 +6837,7 @@ "canonical_id": "game_nhl_2025_20251030_dal_tb", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Dallas Stars", "home_team_abbrev": "TB", @@ -7257,8 +6854,7 @@ "canonical_id": "game_nhl_2025_20251030_nsh_phi", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Nashville Predators", "home_team_abbrev": "PHI", @@ -7275,8 +6871,7 @@ "canonical_id": "game_nhl_2025_20251030_cgy_ott", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Calgary Flames", "home_team_abbrev": "OTT", @@ -7293,8 +6888,7 @@ "canonical_id": "game_nhl_2025_20251030_buf_bos", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-30T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Buffalo Sabres", "home_team_abbrev": "BOS", @@ -7311,8 +6905,7 @@ "canonical_id": "game_nhl_2025_20251030_nyi_car", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-30T23:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Islanders", "home_team_abbrev": "CAR", @@ -7329,8 +6922,7 @@ "canonical_id": "game_nba_2025_20251030_was_okc", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Washington Wizards", "home_team_abbrev": "OKC", @@ -7347,8 +6939,7 @@ "canonical_id": "game_nba_2025_20251030_gsw_mil", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Golden State Warriors", "home_team_abbrev": "MIL", @@ -7365,8 +6956,7 @@ "canonical_id": "game_nhl_2025_20251030_chi_wpg", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WPG", @@ -7383,8 +6973,7 @@ "canonical_id": "game_nhl_2025_20251030_pit_min", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "MIN", @@ -7401,8 +6990,7 @@ "canonical_id": "game_nhl_2025_20251030_van_stl", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vancouver Canucks", "home_team_abbrev": "STL", @@ -7419,8 +7007,7 @@ "canonical_id": "game_nfl_2026_20251031_bal_mia", "sport": "NFL", "season": "2025", - "date": "2025-10-30", - "time": "8:15p", + "game_datetime_utc": "2025-10-31T00:15:00Z", "home_team": "Miami Dolphins", "away_team": "Baltimore Ravens", "home_team_abbrev": "MIA", @@ -7437,8 +7024,7 @@ "canonical_id": "game_nba_2025_20251030_mia_sas", "sport": "NBA", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-31T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Miami Heat", "home_team_abbrev": "SAS", @@ -7455,8 +7041,7 @@ "canonical_id": "game_nhl_2025_20251030_nyr_edm", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New York Rangers", "home_team_abbrev": "EDM", @@ -7473,8 +7058,7 @@ "canonical_id": "game_nhl_2025_20251030_njd_sj", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7p", + "game_datetime_utc": "2025-10-31T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "New Jersey Devils", "home_team_abbrev": "SJ", @@ -7491,8 +7075,7 @@ "canonical_id": "game_nhl_2025_20251030_det_la", "sport": "NHL", "season": "2025", - "date": "2025-10-30", - "time": "7:30p", + "game_datetime_utc": "2025-10-31T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Detroit Red Wings", "home_team_abbrev": "LA", @@ -7509,8 +7092,7 @@ "canonical_id": "game_nhl_2025_20251031_col_vgk", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "1p", + "game_datetime_utc": "2025-10-31T20:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Colorado Avalanche", "home_team_abbrev": "VGK", @@ -7527,8 +7109,7 @@ "canonical_id": "game_nba_2025_20251031_atl_ind", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Atlanta Hawks", "home_team_abbrev": "IND", @@ -7545,8 +7126,7 @@ "canonical_id": "game_nba_2025_20251031_bos_phi", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "4p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Boston Celtics", "home_team_abbrev": "PHI", @@ -7563,8 +7143,7 @@ "canonical_id": "game_nhl_2025_20251031_nyi_was", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-10-31T23:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Islanders", "home_team_abbrev": "WAS", @@ -7581,8 +7160,7 @@ "canonical_id": "game_nba_2025_20251031_tor_cle", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "6:30p", + "game_datetime_utc": "2025-10-31T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Toronto Raptors", "home_team_abbrev": "CLE", @@ -7599,8 +7177,7 @@ "canonical_id": "game_nba_2025_20251031_nyk_chi", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New York Knicks", "home_team_abbrev": "CHI", @@ -7617,8 +7194,7 @@ "canonical_id": "game_nba_2025_20251031_lal_mem", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "8:30p", + "game_datetime_utc": "2025-11-01T01:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MEM", @@ -7635,8 +7211,7 @@ "canonical_id": "game_nba_2025_20251031_uta_phx", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "10p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Utah Jazz", "home_team_abbrev": "PHX", @@ -7653,8 +7228,7 @@ "canonical_id": "game_nba_2025_20251031_den_por", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Denver Nuggets", "home_team_abbrev": "POR", @@ -7671,8 +7245,7 @@ "canonical_id": "game_nhl_2025_20251031_det_ana", "sport": "NHL", "season": "2025", - "date": "2025-10-31", - "time": "7p", + "game_datetime_utc": "2025-11-01T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Detroit Red Wings", "home_team_abbrev": "ANA", @@ -7689,8 +7262,7 @@ "canonical_id": "game_nba_2025_20251031_nop_lac", "sport": "NBA", "season": "2025", - "date": "2025-10-31", - "time": "7:30p", + "game_datetime_utc": "2025-11-01T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAC", @@ -7707,8 +7279,7 @@ "canonical_id": "game_nhl_2025_20251101_car_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "1p", + "game_datetime_utc": "2025-11-01T17:00:00Z", "home_team": "Boston Bruins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BOS", @@ -7725,8 +7296,7 @@ "canonical_id": "game_nhl_2025_20251101_pit_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "2p", + "game_datetime_utc": "2025-11-01T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "WPG", @@ -7743,8 +7313,7 @@ "canonical_id": "game_nhl_2025_20251101_cgy_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "2:30p", + "game_datetime_utc": "2025-11-01T19:30:00Z", "home_team": "Nashville Predators", "away_team": "Calgary Flames", "home_team_abbrev": "NSH", @@ -7761,8 +7330,7 @@ "canonical_id": "game_nhl_2025_20251101_col_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "1p", + "game_datetime_utc": "2025-11-01T20:00:00Z", "home_team": "San Jose Sharks", "away_team": "Colorado Avalanche", "home_team_abbrev": "SJ", @@ -7779,8 +7347,7 @@ "canonical_id": "game_nba_2025_20251101_sac_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "4p", + "game_datetime_utc": "2025-11-01T21:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Sacramento Kings", "home_team_abbrev": "MIL", @@ -7797,8 +7364,7 @@ "canonical_id": "game_nba_2025_20251101_min_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CHA", @@ -7815,8 +7381,7 @@ "canonical_id": "game_nhl_2025_20251101_dal_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Dallas Stars", "home_team_abbrev": "FLA", @@ -7833,8 +7398,7 @@ "canonical_id": "game_nba_2025_20251101_gsw_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Golden State Warriors", "home_team_abbrev": "IND", @@ -7851,8 +7415,7 @@ "canonical_id": "game_nba_2025_20251101_orl_was", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Orlando Magic", "home_team_abbrev": "WAS", @@ -7869,8 +7432,7 @@ "canonical_id": "game_nhl_2025_20251101_was_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Washington Capitals", "home_team_abbrev": "BUF", @@ -7887,8 +7449,7 @@ "canonical_id": "game_nhl_2025_20251101_tor_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PHI", @@ -7905,8 +7466,7 @@ "canonical_id": "game_nhl_2025_20251101_ott_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Ottawa Senators", "home_team_abbrev": "MTL", @@ -7923,8 +7483,7 @@ "canonical_id": "game_nhl_2025_20251101_van_min", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vancouver Canucks", "home_team_abbrev": "MIN", @@ -7941,8 +7500,7 @@ "canonical_id": "game_nhl_2025_20251101_stl_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-01T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "St. Louis Blues", "home_team_abbrev": "CBJ", @@ -7959,8 +7517,7 @@ "canonical_id": "game_nba_2025_20251101_hou_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Houston Rockets", "home_team_abbrev": "BOS", @@ -7977,8 +7534,7 @@ "canonical_id": "game_nhl_2025_20251101_njd_la", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "6p", + "game_datetime_utc": "2025-11-02T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "New Jersey Devils", "home_team_abbrev": "LA", @@ -7995,8 +7551,7 @@ "canonical_id": "game_nba_2025_20251101_dal_det", "sport": "NBA", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Detroit Pistons", "away_team": "Dallas Mavericks", "home_team_abbrev": "DET", @@ -8013,8 +7568,7 @@ "canonical_id": "game_nhl_2025_20251101_nyr_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "7p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "New York Rangers", "home_team_abbrev": "SEA", @@ -8031,8 +7585,7 @@ "canonical_id": "game_nhl_2025_20251101_chi_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-01", - "time": "8p", + "game_datetime_utc": "2025-11-02T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "EDM", @@ -8049,8 +7602,7 @@ "canonical_id": "game_nfl_2026_20251102_min_det", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Detroit Lions", "away_team": "Minnesota Vikings", "home_team_abbrev": "DET", @@ -8067,8 +7619,7 @@ "canonical_id": "game_nfl_2026_20251102_ind_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Indianapolis Colts", "home_team_abbrev": "PIT", @@ -8085,8 +7636,7 @@ "canonical_id": "game_nfl_2026_20251102_chi_cin", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Chicago Bears", "home_team_abbrev": "CIN", @@ -8103,8 +7653,7 @@ "canonical_id": "game_nfl_2026_20251102_car_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Green Bay Packers", "away_team": "Carolina Panthers", "home_team_abbrev": "GB", @@ -8121,8 +7670,7 @@ "canonical_id": "game_nfl_2026_20251102_lac_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Los Angeles Chargers", "home_team_abbrev": "TEN", @@ -8139,8 +7687,7 @@ "canonical_id": "game_nfl_2026_20251102_atl_ne", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "New England Patriots", "away_team": "Atlanta Falcons", "home_team_abbrev": "NE", @@ -8157,8 +7704,7 @@ "canonical_id": "game_nfl_2026_20251102_sf_nyg", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "New York Giants", "away_team": "San Francisco 49ers", "home_team_abbrev": "NYG", @@ -8175,8 +7721,7 @@ "canonical_id": "game_nfl_2026_20251102_den_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "12p", + "game_datetime_utc": "2025-11-02T18:00:00Z", "home_team": "Houston Texans", "away_team": "Denver Broncos", "home_team_abbrev": "HOU", @@ -8193,8 +7738,7 @@ "canonical_id": "game_nba_2025_20251102_nop_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "2:30p", + "game_datetime_utc": "2025-11-02T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New Orleans Pelicans", "home_team_abbrev": "OKC", @@ -8211,8 +7755,7 @@ "canonical_id": "game_nhl_2025_20251102_tb_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "1:30p", + "game_datetime_utc": "2025-11-02T20:30:00Z", "home_team": "Utah Club", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "ARI", @@ -8229,8 +7772,7 @@ "canonical_id": "game_nfl_2026_20251102_no_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1:05p", + "game_datetime_utc": "2025-11-02T21:05:00Z", "home_team": "Los Angeles Rams", "away_team": "New Orleans Saints", "home_team_abbrev": "LAR", @@ -8247,8 +7789,7 @@ "canonical_id": "game_nfl_2026_20251102_jax_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "1:05p", + "game_datetime_utc": "2025-11-02T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "LV", @@ -8265,8 +7806,7 @@ "canonical_id": "game_nfl_2026_20251102_kc_buf", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "4:25p", + "game_datetime_utc": "2025-11-02T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "Kansas City Chiefs", "home_team_abbrev": "BUF", @@ -8283,8 +7823,7 @@ "canonical_id": "game_nhl_2025_20251102_cbj_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-02T22:00:00Z", "home_team": "New York Islanders", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYI", @@ -8301,8 +7840,7 @@ "canonical_id": "game_nba_2025_20251102_uta_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Utah Jazz", "home_team_abbrev": "CHA", @@ -8319,8 +7857,7 @@ "canonical_id": "game_nba_2025_20251102_mem_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "TOR", @@ -8337,8 +7874,7 @@ "canonical_id": "game_nba_2025_20251102_phi_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BKN", @@ -8355,8 +7891,7 @@ "canonical_id": "game_nba_2025_20251102_atl_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-02T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Atlanta Hawks", "home_team_abbrev": "CLE", @@ -8373,8 +7908,7 @@ "canonical_id": "game_nba_2025_20251102_chi_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "7p", + "game_datetime_utc": "2025-11-03T00:00:00Z", "home_team": "New York Knicks", "away_team": "Chicago Bulls", "home_team_abbrev": "NYK", @@ -8391,8 +7925,7 @@ "canonical_id": "game_nhl_2025_20251102_cgy_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "7p", + "game_datetime_utc": "2025-11-03T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Calgary Flames", "home_team_abbrev": "PHI", @@ -8409,8 +7942,7 @@ "canonical_id": "game_nba_2025_20251102_sas_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "8p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHX", @@ -8427,8 +7959,7 @@ "canonical_id": "game_nhl_2025_20251102_njd_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New Jersey Devils", "home_team_abbrev": "ANA", @@ -8445,8 +7976,7 @@ "canonical_id": "game_nhl_2025_20251102_det_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-02", - "time": "5p", + "game_datetime_utc": "2025-11-03T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Detroit Red Wings", "home_team_abbrev": "SJ", @@ -8463,8 +7993,7 @@ "canonical_id": "game_nfl_2026_20251103_sea_was", "sport": "NFL", "season": "2025", - "date": "2025-11-02", - "time": "8:20p", + "game_datetime_utc": "2025-11-03T01:20:00Z", "home_team": "Washington Commanders", "away_team": "Seattle Seahawks", "home_team_abbrev": "WAS", @@ -8481,8 +8010,7 @@ "canonical_id": "game_nba_2025_20251102_mia_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-02", - "time": "6:30p", + "game_datetime_utc": "2025-11-03T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Miami Heat", "home_team_abbrev": "LAL", @@ -8499,8 +8027,7 @@ "canonical_id": "game_nba_2025_20251103_min_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T00:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "BKN", @@ -8517,8 +8044,7 @@ "canonical_id": "game_nba_2025_20251103_mil_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "IND", @@ -8535,8 +8061,7 @@ "canonical_id": "game_nba_2025_20251103_uta_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Utah Jazz", "home_team_abbrev": "BOS", @@ -8553,8 +8078,7 @@ "canonical_id": "game_nba_2025_20251103_was_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Washington Wizards", "home_team_abbrev": "NYK", @@ -8571,8 +8095,7 @@ "canonical_id": "game_nhl_2025_20251103_pit_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TOR", @@ -8589,8 +8112,7 @@ "canonical_id": "game_nba_2025_20251103_dal_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Dallas Mavericks", "home_team_abbrev": "HOU", @@ -8607,8 +8129,7 @@ "canonical_id": "game_nba_2025_20251103_det_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Detroit Pistons", "home_team_abbrev": "MEM", @@ -8625,8 +8146,7 @@ "canonical_id": "game_nfl_2026_20251104_ari_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-03", - "time": "7:15p", + "game_datetime_utc": "2025-11-04T01:15:00Z", "home_team": "Dallas Cowboys", "away_team": "Arizona Cardinals", "home_team_abbrev": "DAL", @@ -8643,8 +8163,7 @@ "canonical_id": "game_nhl_2025_20251103_edm_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Edmonton Oilers", "home_team_abbrev": "STL", @@ -8661,8 +8180,7 @@ "canonical_id": "game_nhl_2025_20251103_van_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T01:30:00Z", "home_team": "Nashville Predators", "away_team": "Vancouver Canucks", "home_team_abbrev": "NSH", @@ -8679,8 +8197,7 @@ "canonical_id": "game_nba_2025_20251103_sac_den", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Sacramento Kings", "home_team_abbrev": "DEN", @@ -8697,8 +8214,7 @@ "canonical_id": "game_nba_2025_20251103_lal_por", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "POR", @@ -8715,8 +8231,7 @@ "canonical_id": "game_nhl_2025_20251103_chi_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-03", - "time": "7p", + "game_datetime_utc": "2025-11-04T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SEA", @@ -8733,8 +8248,7 @@ "canonical_id": "game_nba_2025_20251103_mia_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-03", - "time": "7:30p", + "game_datetime_utc": "2025-11-04T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Miami Heat", "home_team_abbrev": "LAC", @@ -8751,8 +8265,7 @@ "canonical_id": "game_nhl_2025_20251104_car_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "New York Rangers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYR", @@ -8769,8 +8282,7 @@ "canonical_id": "game_nhl_2025_20251104_ari_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Utah Club", "home_team_abbrev": "BUF", @@ -8787,8 +8299,7 @@ "canonical_id": "game_nhl_2025_20251104_phi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MTL", @@ -8805,8 +8316,7 @@ "canonical_id": "game_nhl_2025_20251104_bos_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T00:00:00Z", "home_team": "New York Islanders", "away_team": "Boston Bruins", "home_team_abbrev": "NYI", @@ -8823,8 +8333,7 @@ "canonical_id": "game_nba_2025_20251104_mil_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "TOR", @@ -8841,8 +8350,7 @@ "canonical_id": "game_nba_2025_20251104_orl_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "8p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Orlando Magic", "home_team_abbrev": "ATL", @@ -8859,8 +8367,7 @@ "canonical_id": "game_nba_2025_20251104_phi_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHI", @@ -8877,8 +8384,7 @@ "canonical_id": "game_nba_2025_20251104_cho_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Charlotte Hornets", "home_team_abbrev": "NOP", @@ -8895,8 +8401,7 @@ "canonical_id": "game_nhl_2025_20251104_edm_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Edmonton Oilers", "home_team_abbrev": "DAL", @@ -8913,8 +8418,7 @@ "canonical_id": "game_nhl_2025_20251104_nsh_min", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Nashville Predators", "home_team_abbrev": "MIN", @@ -8931,8 +8435,7 @@ "canonical_id": "game_nhl_2025_20251104_tb_col", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "COL", @@ -8949,8 +8452,7 @@ "canonical_id": "game_nba_2025_20251104_phx_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Phoenix Suns", "home_team_abbrev": "GSW", @@ -8967,8 +8469,7 @@ "canonical_id": "game_nhl_2025_20251104_fla_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Florida Panthers", "home_team_abbrev": "ANA", @@ -8985,8 +8486,7 @@ "canonical_id": "game_nhl_2025_20251104_det_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7p", + "game_datetime_utc": "2025-11-05T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Detroit Red Wings", "home_team_abbrev": "VGK", @@ -9003,8 +8503,7 @@ "canonical_id": "game_nhl_2025_20251104_wpg_la", "sport": "NHL", "season": "2025", - "date": "2025-11-04", - "time": "7:30p", + "game_datetime_utc": "2025-11-05T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Winnipeg Jets", "home_team_abbrev": "LA", @@ -9021,8 +8520,7 @@ "canonical_id": "game_nba_2025_20251104_okc_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-04", - "time": "8p", + "game_datetime_utc": "2025-11-05T04:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAC", @@ -9039,8 +8537,7 @@ "canonical_id": "game_nba_2025_20251105_brk_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Brooklyn Nets", "home_team_abbrev": "IND", @@ -9057,8 +8554,7 @@ "canonical_id": "game_nba_2025_20251105_uta_det", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Utah Jazz", "home_team_abbrev": "DET", @@ -9075,8 +8571,7 @@ "canonical_id": "game_nba_2025_20251105_phi_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "6p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CLE", @@ -9093,8 +8588,7 @@ "canonical_id": "game_nhl_2025_20251105_ari_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Utah Club", "home_team_abbrev": "TOR", @@ -9111,8 +8605,7 @@ "canonical_id": "game_nba_2025_20251105_was_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Washington Wizards", "home_team_abbrev": "BOS", @@ -9129,8 +8622,7 @@ "canonical_id": "game_nba_2025_20251105_min_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "New York Knicks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NYK", @@ -9147,8 +8639,7 @@ "canonical_id": "game_nhl_2025_20251105_stl_was", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T00:30:00Z", "home_team": "Washington Capitals", "away_team": "St. Louis Blues", "home_team_abbrev": "WAS", @@ -9165,8 +8656,7 @@ "canonical_id": "game_nba_2025_20251105_hou_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Houston Rockets", "home_team_abbrev": "MEM", @@ -9183,8 +8673,7 @@ "canonical_id": "game_nba_2025_20251105_nop_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DAL", @@ -9201,8 +8690,7 @@ "canonical_id": "game_nba_2025_20251105_mia_den", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Miami Heat", "home_team_abbrev": "DEN", @@ -9219,8 +8707,7 @@ "canonical_id": "game_nhl_2025_20251105_cbj_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7:30p", + "game_datetime_utc": "2025-11-06T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CGY", @@ -9237,8 +8724,7 @@ "canonical_id": "game_nba_2025_20251105_okc_por", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "POR", @@ -9255,8 +8741,7 @@ "canonical_id": "game_nba_2025_20251105_sas_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -9273,8 +8758,7 @@ "canonical_id": "game_nba_2025_20251105_gsw_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Golden State Warriors", "home_team_abbrev": "SAC", @@ -9291,8 +8775,7 @@ "canonical_id": "game_nhl_2025_20251105_chi_van", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VAN", @@ -9309,8 +8792,7 @@ "canonical_id": "game_nhl_2025_20251105_sj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-05", - "time": "7p", + "game_datetime_utc": "2025-11-06T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "San Jose Sharks", "home_team_abbrev": "SEA", @@ -9327,8 +8809,7 @@ "canonical_id": "game_nhl_2025_20251106_ott_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Ottawa Senators", "home_team_abbrev": "BOS", @@ -9345,8 +8826,7 @@ "canonical_id": "game_nhl_2025_20251106_stl_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "St. Louis Blues", "home_team_abbrev": "BUF", @@ -9363,8 +8843,7 @@ "canonical_id": "game_nhl_2025_20251106_mtl_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Montreal Canadiens", "home_team_abbrev": "NJ", @@ -9381,8 +8860,7 @@ "canonical_id": "game_nhl_2025_20251106_min_car", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Minnesota Wild", "home_team_abbrev": "CAR", @@ -9399,8 +8877,7 @@ "canonical_id": "game_nhl_2025_20251106_was_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7:30p", + "game_datetime_utc": "2025-11-07T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Washington Capitals", "home_team_abbrev": "PIT", @@ -9417,8 +8894,7 @@ "canonical_id": "game_nhl_2025_20251106_ana_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Anaheim Ducks", "home_team_abbrev": "DAL", @@ -9435,8 +8911,7 @@ "canonical_id": "game_nhl_2025_20251106_phi_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NSH", @@ -9453,8 +8928,7 @@ "canonical_id": "game_nfl_2026_20251107_lv_den", "sport": "NFL", "season": "2025", - "date": "2025-11-06", - "time": "6:15p", + "game_datetime_utc": "2025-11-07T01:15:00Z", "home_team": "Denver Broncos", "away_team": "Las Vegas Raiders", "home_team_abbrev": "DEN", @@ -9471,8 +8945,7 @@ "canonical_id": "game_nba_2025_20251106_lac_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-06", - "time": "9p", + "game_datetime_utc": "2025-11-07T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHX", @@ -9489,8 +8962,7 @@ "canonical_id": "game_nhl_2025_20251106_fla_la", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Florida Panthers", "home_team_abbrev": "LA", @@ -9507,8 +8979,7 @@ "canonical_id": "game_nhl_2025_20251106_tb_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-06", - "time": "7p", + "game_datetime_utc": "2025-11-07T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "VGK", @@ -9525,8 +8996,7 @@ "canonical_id": "game_nba_2025_20251107_bos_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Boston Celtics", "home_team_abbrev": "ORL", @@ -9543,8 +9013,7 @@ "canonical_id": "game_nba_2025_20251107_cle_was", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "WAS", @@ -9561,8 +9030,7 @@ "canonical_id": "game_nhl_2025_20251107_min_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "New York Islanders", "away_team": "Minnesota Wild", "home_team_abbrev": "NYI", @@ -9579,8 +9047,7 @@ "canonical_id": "game_nhl_2025_20251107_nyr_det", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Rangers", "home_team_abbrev": "DET", @@ -9597,8 +9064,7 @@ "canonical_id": "game_nba_2025_20251107_hou_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "6:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Houston Rockets", "home_team_abbrev": "SAS", @@ -9615,8 +9081,7 @@ "canonical_id": "game_nba_2025_20251107_tor_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Toronto Raptors", "home_team_abbrev": "ATL", @@ -9633,8 +9098,7 @@ "canonical_id": "game_nba_2025_20251107_det_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7:30p", + "game_datetime_utc": "2025-11-08T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Detroit Pistons", "home_team_abbrev": "BKN", @@ -9651,8 +9115,7 @@ "canonical_id": "game_nba_2025_20251107_chi_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Chicago Bulls", "home_team_abbrev": "MIL", @@ -9669,8 +9132,7 @@ "canonical_id": "game_nba_2025_20251107_dal_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -9687,8 +9149,7 @@ "canonical_id": "game_nba_2025_20251107_cho_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "8p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Miami Heat", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIA", @@ -9705,8 +9166,7 @@ "canonical_id": "game_nba_2025_20251107_uta_min", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Utah Jazz", "home_team_abbrev": "MIN", @@ -9723,8 +9183,7 @@ "canonical_id": "game_nhl_2025_20251107_chi_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CGY", @@ -9741,8 +9200,7 @@ "canonical_id": "game_nba_2025_20251107_gsw_den", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "8p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Golden State Warriors", "home_team_abbrev": "DEN", @@ -9759,8 +9217,7 @@ "canonical_id": "game_nba_2025_20251107_okc_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAC", @@ -9777,8 +9234,7 @@ "canonical_id": "game_nhl_2025_20251107_wpg_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-07", - "time": "7p", + "game_datetime_utc": "2025-11-08T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Winnipeg Jets", "home_team_abbrev": "SJ", @@ -9795,8 +9251,7 @@ "canonical_id": "game_nhl_2025_20251108_pit_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "12:30p", + "game_datetime_utc": "2025-11-08T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NJ", @@ -9813,8 +9268,7 @@ "canonical_id": "game_nhl_2025_20251108_ott_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "1p", + "game_datetime_utc": "2025-11-08T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Ottawa Senators", "home_team_abbrev": "PHI", @@ -9831,8 +9285,7 @@ "canonical_id": "game_nhl_2025_20251108_dal_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "2:30p", + "game_datetime_utc": "2025-11-08T20:30:00Z", "home_team": "Nashville Predators", "away_team": "Dallas Stars", "home_team_abbrev": "NSH", @@ -9849,8 +9302,7 @@ "canonical_id": "game_nba_2025_20251108_dal_was", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Dallas Mavericks", "home_team_abbrev": "WAS", @@ -9867,8 +9319,7 @@ "canonical_id": "game_nhl_2025_20251108_ari_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Utah Club", "home_team_abbrev": "MTL", @@ -9885,8 +9336,7 @@ "canonical_id": "game_nhl_2025_20251108_buf_car", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Buffalo Sabres", "home_team_abbrev": "CAR", @@ -9903,8 +9353,7 @@ "canonical_id": "game_nhl_2025_20251108_nyi_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "New York Rangers", "away_team": "New York Islanders", "home_team_abbrev": "NYR", @@ -9921,8 +9370,7 @@ "canonical_id": "game_nhl_2025_20251108_sea_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "6p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Seattle Kraken", "home_team_abbrev": "STL", @@ -9939,8 +9387,7 @@ "canonical_id": "game_nhl_2025_20251108_was_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Washington Capitals", "home_team_abbrev": "TB", @@ -9957,8 +9404,7 @@ "canonical_id": "game_nhl_2025_20251108_bos_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Boston Bruins", "home_team_abbrev": "TOR", @@ -9975,8 +9421,7 @@ "canonical_id": "game_nba_2025_20251108_tor_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "4:30p", + "game_datetime_utc": "2025-11-09T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Toronto Raptors", "home_team_abbrev": "PHI", @@ -9993,8 +9438,7 @@ "canonical_id": "game_nba_2025_20251108_nop_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAS", @@ -10011,8 +9455,7 @@ "canonical_id": "game_nba_2025_20251108_por_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Miami Heat", "away_team": "Portland Blazers", "home_team_abbrev": "MIA", @@ -10029,8 +9472,7 @@ "canonical_id": "game_nba_2025_20251108_chi_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Chicago Bulls", "home_team_abbrev": "CLE", @@ -10047,8 +9489,7 @@ "canonical_id": "game_nba_2025_20251108_lal_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "ATL", @@ -10065,8 +9506,7 @@ "canonical_id": "game_nba_2025_20251108_ind_den", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Indiana Pacers", "home_team_abbrev": "DEN", @@ -10083,8 +9523,7 @@ "canonical_id": "game_nhl_2025_20251108_fla_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Florida Panthers", "home_team_abbrev": "SJ", @@ -10101,8 +9540,7 @@ "canonical_id": "game_nhl_2025_20251108_ana_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Anaheim Ducks", "home_team_abbrev": "VGK", @@ -10119,8 +9557,7 @@ "canonical_id": "game_nhl_2025_20251108_cbj_van", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "7p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "VAN", @@ -10137,8 +9574,7 @@ "canonical_id": "game_nhl_2025_20251108_col_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-08", - "time": "8p", + "game_datetime_utc": "2025-11-09T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Colorado Avalanche", "home_team_abbrev": "EDM", @@ -10155,8 +9591,7 @@ "canonical_id": "game_nba_2025_20251108_phx_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-08", - "time": "7:30p", + "game_datetime_utc": "2025-11-09T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAC", @@ -10173,8 +9608,7 @@ "canonical_id": "game_nfl_2026_20251109_atl_ind", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "3:30p", + "game_datetime_utc": "2025-11-09T14:30:00Z", "home_team": "Indianapolis Colts", "away_team": "Atlanta Falcons", "home_team_abbrev": "IND", @@ -10191,8 +9625,7 @@ "canonical_id": "game_nfl_2026_20251109_jax_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Houston Texans", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "HOU", @@ -10209,8 +9642,7 @@ "canonical_id": "game_nfl_2026_20251109_nyg_chi", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Chicago Bears", "away_team": "New York Giants", "home_team_abbrev": "CHI", @@ -10227,8 +9659,7 @@ "canonical_id": "game_nfl_2026_20251109_buf_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Buffalo Bills", "home_team_abbrev": "MIA", @@ -10245,8 +9676,7 @@ "canonical_id": "game_nfl_2026_20251109_bal_min", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "12p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Baltimore Ravens", "home_team_abbrev": "MIN", @@ -10263,8 +9693,7 @@ "canonical_id": "game_nfl_2026_20251109_cle_nyj", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "New York Jets", "away_team": "Cleveland Browns", "home_team_abbrev": "NYJ", @@ -10281,8 +9710,7 @@ "canonical_id": "game_nfl_2026_20251109_ne_tb", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New England Patriots", "home_team_abbrev": "TB", @@ -10299,8 +9727,7 @@ "canonical_id": "game_nfl_2026_20251109_no_car", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "New Orleans Saints", "home_team_abbrev": "CAR", @@ -10317,8 +9744,7 @@ "canonical_id": "game_nhl_2025_20251109_chi_det", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "1p", + "game_datetime_utc": "2025-11-09T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DET", @@ -10335,8 +9761,7 @@ "canonical_id": "game_nhl_2025_20251109_la_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "2p", + "game_datetime_utc": "2025-11-09T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Los Angeles Kings", "home_team_abbrev": "PIT", @@ -10353,8 +9778,7 @@ "canonical_id": "game_nba_2025_20251109_hou_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "2:30p", + "game_datetime_utc": "2025-11-09T20:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Houston Rockets", "home_team_abbrev": "MIL", @@ -10371,8 +9795,7 @@ "canonical_id": "game_nfl_2026_20251109_ari_sea", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1:05p", + "game_datetime_utc": "2025-11-09T21:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Arizona Cardinals", "home_team_abbrev": "SEA", @@ -10389,8 +9812,7 @@ "canonical_id": "game_nfl_2026_20251109_det_was", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "4:25p", + "game_datetime_utc": "2025-11-09T21:25:00Z", "home_team": "Washington Commanders", "away_team": "Detroit Lions", "home_team_abbrev": "WAS", @@ -10407,8 +9829,7 @@ "canonical_id": "game_nfl_2026_20251109_lar_sf", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "1:25p", + "game_datetime_utc": "2025-11-09T21:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Los Angeles Rams", "home_team_abbrev": "SF", @@ -10425,8 +9846,7 @@ "canonical_id": "game_nba_2025_20251109_brk_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "New York Knicks", "away_team": "Brooklyn Nets", "home_team_abbrev": "NYK", @@ -10443,8 +9863,7 @@ "canonical_id": "game_nba_2025_20251109_bos_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Boston Celtics", "home_team_abbrev": "ORL", @@ -10461,8 +9880,7 @@ "canonical_id": "game_nba_2025_20251109_okc_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "5p", + "game_datetime_utc": "2025-11-09T23:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MEM", @@ -10479,8 +9897,7 @@ "canonical_id": "game_nhl_2025_20251109_car_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TOR", @@ -10497,8 +9914,7 @@ "canonical_id": "game_nhl_2025_20251109_sea_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Seattle Kraken", "home_team_abbrev": "DAL", @@ -10515,8 +9931,7 @@ "canonical_id": "game_nhl_2025_20251109_ari_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Utah Club", "home_team_abbrev": "OTT", @@ -10533,8 +9948,7 @@ "canonical_id": "game_nba_2025_20251109_det_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "4:30p", + "game_datetime_utc": "2025-11-10T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Detroit Pistons", "home_team_abbrev": "PHI", @@ -10551,8 +9965,7 @@ "canonical_id": "game_nhl_2025_20251109_cgy_min", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Calgary Flames", "home_team_abbrev": "MIN", @@ -10569,8 +9982,7 @@ "canonical_id": "game_nfl_2026_20251110_pit_lac", "sport": "NFL", "season": "2025", - "date": "2025-11-09", - "time": "5:20p", + "game_datetime_utc": "2025-11-10T01:20:00Z", "home_team": "Los Angeles Chargers", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "LAC", @@ -10587,8 +9999,7 @@ "canonical_id": "game_nba_2025_20251109_ind_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "5:30p", + "game_datetime_utc": "2025-11-10T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Indiana Pacers", "home_team_abbrev": "GSW", @@ -10605,8 +10016,7 @@ "canonical_id": "game_nba_2025_20251109_min_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-09", - "time": "6p", + "game_datetime_utc": "2025-11-10T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAC", @@ -10623,8 +10033,7 @@ "canonical_id": "game_nhl_2025_20251109_col_van", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Colorado Avalanche", "home_team_abbrev": "VAN", @@ -10641,8 +10050,7 @@ "canonical_id": "game_nhl_2025_20251109_wpg_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-09", - "time": "7p", + "game_datetime_utc": "2025-11-10T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Winnipeg Jets", "home_team_abbrev": "ANA", @@ -10659,8 +10067,7 @@ "canonical_id": "game_nba_2025_20251110_por_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Portland Blazers", "home_team_abbrev": "ORL", @@ -10677,8 +10084,7 @@ "canonical_id": "game_nba_2025_20251110_was_det", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Washington Wizards", "home_team_abbrev": "DET", @@ -10695,8 +10101,7 @@ "canonical_id": "game_nba_2025_20251110_lal_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CHA", @@ -10713,8 +10118,7 @@ "canonical_id": "game_nhl_2025_20251110_nsh_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "New York Rangers", "away_team": "Nashville Predators", "home_team_abbrev": "NYR", @@ -10731,8 +10135,7 @@ "canonical_id": "game_nhl_2025_20251110_nyi_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Islanders", "home_team_abbrev": "NJ", @@ -10749,8 +10152,7 @@ "canonical_id": "game_nba_2025_20251110_cle_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T00:30:00Z", "home_team": "Miami Heat", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIA", @@ -10767,8 +10169,7 @@ "canonical_id": "game_nba_2025_20251110_sas_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "San Antonio Spurs", "home_team_abbrev": "CHI", @@ -10785,8 +10186,7 @@ "canonical_id": "game_nfl_2026_20251111_phi_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-10", - "time": "7:15p", + "game_datetime_utc": "2025-11-11T01:15:00Z", "home_team": "Green Bay Packers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "GB", @@ -10803,8 +10203,7 @@ "canonical_id": "game_nba_2025_20251110_mil_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DAL", @@ -10821,8 +10220,7 @@ "canonical_id": "game_nhl_2025_20251110_cbj_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "6:30p", + "game_datetime_utc": "2025-11-11T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "EDM", @@ -10839,8 +10237,7 @@ "canonical_id": "game_nba_2025_20251110_nop_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "9p", + "game_datetime_utc": "2025-11-11T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHX", @@ -10857,8 +10254,7 @@ "canonical_id": "game_nba_2025_20251110_min_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "UTA", @@ -10875,8 +10271,7 @@ "canonical_id": "game_nhl_2025_20251110_fla_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-10", - "time": "7p", + "game_datetime_utc": "2025-11-11T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Florida Panthers", "home_team_abbrev": "VGK", @@ -10893,8 +10288,7 @@ "canonical_id": "game_nba_2025_20251110_atl_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-10", - "time": "7:30p", + "game_datetime_utc": "2025-11-11T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Atlanta Hawks", "home_team_abbrev": "LAC", @@ -10911,8 +10305,7 @@ "canonical_id": "game_nhl_2025_20251111_was_car", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Washington Capitals", "home_team_abbrev": "CAR", @@ -10929,8 +10322,7 @@ "canonical_id": "game_nhl_2025_20251111_tor_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BOS", @@ -10947,8 +10339,7 @@ "canonical_id": "game_nhl_2025_20251111_dal_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Dallas Stars", "home_team_abbrev": "OTT", @@ -10965,8 +10356,7 @@ "canonical_id": "game_nhl_2025_20251111_la_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Los Angeles Kings", "home_team_abbrev": "MTL", @@ -10983,8 +10373,7 @@ "canonical_id": "game_nba_2025_20251111_tor_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Toronto Raptors", "home_team_abbrev": "BKN", @@ -11001,8 +10390,7 @@ "canonical_id": "game_nba_2025_20251111_mem_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T00:30:00Z", "home_team": "New York Knicks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NYK", @@ -11019,8 +10407,7 @@ "canonical_id": "game_nba_2025_20251111_bos_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "5p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Boston Celtics", "home_team_abbrev": "PHI", @@ -11037,8 +10424,7 @@ "canonical_id": "game_nba_2025_20251111_gsw_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Golden State Warriors", "home_team_abbrev": "OKC", @@ -11055,8 +10441,7 @@ "canonical_id": "game_nhl_2025_20251111_cgy_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Calgary Flames", "home_team_abbrev": "STL", @@ -11073,8 +10458,7 @@ "canonical_id": "game_nhl_2025_20251111_sj_min", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "San Jose Sharks", "home_team_abbrev": "MIN", @@ -11091,8 +10475,7 @@ "canonical_id": "game_nba_2025_20251111_ind_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Indiana Pacers", "home_team_abbrev": "UTA", @@ -11109,8 +10492,7 @@ "canonical_id": "game_nhl_2025_20251111_ana_col", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7:30p", + "game_datetime_utc": "2025-11-12T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Anaheim Ducks", "home_team_abbrev": "COL", @@ -11127,8 +10509,7 @@ "canonical_id": "game_nhl_2025_20251111_cbj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "SEA", @@ -11145,8 +10526,7 @@ "canonical_id": "game_nhl_2025_20251111_wpg_van", "sport": "NHL", "season": "2025", - "date": "2025-11-11", - "time": "7p", + "game_datetime_utc": "2025-11-12T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Winnipeg Jets", "home_team_abbrev": "VAN", @@ -11163,8 +10543,7 @@ "canonical_id": "game_nba_2025_20251111_den_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-11", - "time": "8p", + "game_datetime_utc": "2025-11-12T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Denver Nuggets", "home_team_abbrev": "SAC", @@ -11181,8 +10560,7 @@ "canonical_id": "game_nba_2025_20251112_mil_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHA", @@ -11199,8 +10577,7 @@ "canonical_id": "game_nba_2025_20251112_chi_det", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Chicago Bulls", "home_team_abbrev": "DET", @@ -11217,8 +10594,7 @@ "canonical_id": "game_nba_2025_20251112_orl_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "New York Knicks", "away_team": "Orlando Magic", "home_team_abbrev": "NYK", @@ -11235,8 +10611,7 @@ "canonical_id": "game_nhl_2025_20251112_nyr_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Rangers", "home_team_abbrev": "TB", @@ -11253,8 +10628,7 @@ "canonical_id": "game_nba_2025_20251112_cle_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Miami Heat", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIA", @@ -11271,8 +10645,7 @@ "canonical_id": "game_nba_2025_20251112_mem_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Memphis Grizzlies", "home_team_abbrev": "BOS", @@ -11289,8 +10662,7 @@ "canonical_id": "game_nhl_2025_20251112_edm_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Edmonton Oilers", "home_team_abbrev": "PHI", @@ -11307,8 +10679,7 @@ "canonical_id": "game_nba_2025_20251112_was_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Washington Wizards", "home_team_abbrev": "HOU", @@ -11325,8 +10696,7 @@ "canonical_id": "game_nba_2025_20251112_gsw_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Golden State Warriors", "home_team_abbrev": "SAS", @@ -11343,8 +10713,7 @@ "canonical_id": "game_nba_2025_20251112_por_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -11361,8 +10730,7 @@ "canonical_id": "game_nba_2025_20251112_phx_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Phoenix Suns", "home_team_abbrev": "DAL", @@ -11379,8 +10747,7 @@ "canonical_id": "game_nhl_2025_20251112_buf_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T02:00:00Z", "home_team": "Utah Club", "away_team": "Buffalo Sabres", "home_team_abbrev": "ARI", @@ -11397,8 +10764,7 @@ "canonical_id": "game_nba_2025_20251112_lal_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "8:30p", + "game_datetime_utc": "2025-11-13T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Lakers", "home_team_abbrev": "OKC", @@ -11415,8 +10781,7 @@ "canonical_id": "game_nhl_2025_20251112_njd_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-12", - "time": "8:30p", + "game_datetime_utc": "2025-11-13T02:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New Jersey Devils", "home_team_abbrev": "CHI", @@ -11433,8 +10798,7 @@ "canonical_id": "game_nba_2025_20251112_atl_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7p", + "game_datetime_utc": "2025-11-13T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Atlanta Hawks", "home_team_abbrev": "SAC", @@ -11451,8 +10815,7 @@ "canonical_id": "game_nba_2025_20251112_den_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-12", - "time": "7:30p", + "game_datetime_utc": "2025-11-13T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAC", @@ -11469,8 +10832,7 @@ "canonical_id": "game_nba_2025_20251113_tor_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "6p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Toronto Raptors", "home_team_abbrev": "CLE", @@ -11487,8 +10849,7 @@ "canonical_id": "game_nhl_2025_20251113_was_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Washington Capitals", "home_team_abbrev": "FLA", @@ -11505,8 +10866,7 @@ "canonical_id": "game_nhl_2025_20251113_ana_det", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Anaheim Ducks", "home_team_abbrev": "DET", @@ -11523,8 +10883,7 @@ "canonical_id": "game_nhl_2025_20251113_bos_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Boston Bruins", "home_team_abbrev": "OTT", @@ -11541,8 +10900,7 @@ "canonical_id": "game_nhl_2025_20251113_dal_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Dallas Stars", "home_team_abbrev": "MTL", @@ -11559,8 +10917,7 @@ "canonical_id": "game_nhl_2025_20251113_la_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Los Angeles Kings", "home_team_abbrev": "TOR", @@ -11577,8 +10934,7 @@ "canonical_id": "game_nhl_2025_20251113_edm_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7:30p", + "game_datetime_utc": "2025-11-14T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Edmonton Oilers", "home_team_abbrev": "CBJ", @@ -11595,8 +10951,7 @@ "canonical_id": "game_nfl_2026_20251114_nyj_ne", "sport": "NFL", "season": "2025", - "date": "2025-11-13", - "time": "8:15p", + "game_datetime_utc": "2025-11-14T01:15:00Z", "home_team": "New England Patriots", "away_team": "New York Jets", "home_team_abbrev": "NE", @@ -11613,8 +10968,7 @@ "canonical_id": "game_nba_2025_20251113_atl_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Atlanta Hawks", "home_team_abbrev": "UTA", @@ -11631,8 +10985,7 @@ "canonical_id": "game_nba_2025_20251113_ind_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-13", - "time": "9p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Indiana Pacers", "home_team_abbrev": "PHX", @@ -11649,8 +11002,7 @@ "canonical_id": "game_nhl_2025_20251113_sj_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Calgary Flames", "away_team": "San Jose Sharks", "home_team_abbrev": "CGY", @@ -11667,8 +11019,7 @@ "canonical_id": "game_nhl_2025_20251113_buf_col", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Buffalo Sabres", "home_team_abbrev": "COL", @@ -11685,8 +11036,7 @@ "canonical_id": "game_nhl_2025_20251113_nyi_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New York Islanders", "home_team_abbrev": "VGK", @@ -11703,8 +11053,7 @@ "canonical_id": "game_nhl_2025_20251113_wpg_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-13", - "time": "7p", + "game_datetime_utc": "2025-11-14T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Winnipeg Jets", "home_team_abbrev": "SEA", @@ -11721,8 +11070,7 @@ "canonical_id": "game_nhl_2025_20251114_pit_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "1p", + "game_datetime_utc": "2025-11-14T19:00:00Z", "home_team": "Nashville Predators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NSH", @@ -11739,8 +11087,7 @@ "canonical_id": "game_nba_2025_20251114_mia_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "New York Knicks", "away_team": "Miami Heat", "home_team_abbrev": "NYK", @@ -11757,8 +11104,7 @@ "canonical_id": "game_nba_2025_20251114_brk_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Brooklyn Nets", "home_team_abbrev": "ORL", @@ -11775,8 +11121,7 @@ "canonical_id": "game_nhl_2025_20251114_van_car", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Vancouver Canucks", "home_team_abbrev": "CAR", @@ -11793,8 +11138,7 @@ "canonical_id": "game_nba_2025_20251114_phi_det", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7:30p", + "game_datetime_utc": "2025-11-15T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DET", @@ -11811,8 +11155,7 @@ "canonical_id": "game_nba_2025_20251114_por_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Portland Blazers", "home_team_abbrev": "HOU", @@ -11829,8 +11172,7 @@ "canonical_id": "game_nba_2025_20251114_cho_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIL", @@ -11847,8 +11189,7 @@ "canonical_id": "game_nba_2025_20251114_sac_min", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Sacramento Kings", "home_team_abbrev": "MIN", @@ -11865,8 +11206,7 @@ "canonical_id": "game_nba_2025_20251114_lal_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NOP", @@ -11883,8 +11223,7 @@ "canonical_id": "game_nhl_2025_20251114_phi_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Philadelphia Flyers", "home_team_abbrev": "STL", @@ -11901,8 +11240,7 @@ "canonical_id": "game_nba_2025_20251114_lac_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "7:30p", + "game_datetime_utc": "2025-11-15T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DAL", @@ -11919,8 +11257,7 @@ "canonical_id": "game_nhl_2025_20251114_nyi_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-14", - "time": "7p", + "game_datetime_utc": "2025-11-15T02:00:00Z", "home_team": "Utah Club", "away_team": "New York Islanders", "home_team_abbrev": "ARI", @@ -11937,8 +11274,7 @@ "canonical_id": "game_nba_2025_20251114_gsw_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-14", - "time": "8:30p", + "game_datetime_utc": "2025-11-15T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Golden State Warriors", "home_team_abbrev": "SAS", @@ -11955,8 +11291,7 @@ "canonical_id": "game_nba_2025_20251115_mem_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "4p", + "game_datetime_utc": "2025-11-15T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CLE", @@ -11973,8 +11308,7 @@ "canonical_id": "game_nhl_2025_20251115_tb_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "5p", + "game_datetime_utc": "2025-11-15T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "FLA", @@ -11991,8 +11325,7 @@ "canonical_id": "game_nhl_2025_20251115_ana_min", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "5p", + "game_datetime_utc": "2025-11-15T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Anaheim Ducks", "home_team_abbrev": "MIN", @@ -12009,8 +11342,7 @@ "canonical_id": "game_nba_2025_20251115_tor_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Toronto Raptors", "home_team_abbrev": "IND", @@ -12027,8 +11359,7 @@ "canonical_id": "game_nba_2025_20251115_okc_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CHA", @@ -12045,8 +11376,7 @@ "canonical_id": "game_nhl_2025_20251115_nyr_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Rangers", "home_team_abbrev": "CBJ", @@ -12063,8 +11393,7 @@ "canonical_id": "game_nhl_2025_20251115_njd_was", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New Jersey Devils", "home_team_abbrev": "WAS", @@ -12081,8 +11410,7 @@ "canonical_id": "game_nhl_2025_20251115_la_ott", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Los Angeles Kings", "home_team_abbrev": "OTT", @@ -12099,8 +11427,7 @@ "canonical_id": "game_nhl_2025_20251115_bos_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Boston Bruins", "home_team_abbrev": "MTL", @@ -12117,8 +11444,7 @@ "canonical_id": "game_nhl_2025_20251115_buf_det", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Buffalo Sabres", "home_team_abbrev": "DET", @@ -12135,8 +11461,7 @@ "canonical_id": "game_nhl_2025_20251115_tor_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "6p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CHI", @@ -12153,8 +11478,7 @@ "canonical_id": "game_nhl_2025_20251115_edm_car", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Edmonton Oilers", "home_team_abbrev": "CAR", @@ -12171,8 +11495,7 @@ "canonical_id": "game_nba_2025_20251115_lal_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIL", @@ -12189,8 +11512,7 @@ "canonical_id": "game_nba_2025_20251115_den_min", "sport": "NBA", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Denver Nuggets", "home_team_abbrev": "MIN", @@ -12207,8 +11529,7 @@ "canonical_id": "game_nhl_2025_20251115_phi_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DAL", @@ -12225,8 +11546,7 @@ "canonical_id": "game_nhl_2025_20251115_vgk_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vegas Golden Knights", "home_team_abbrev": "STL", @@ -12243,8 +11563,7 @@ "canonical_id": "game_nhl_2025_20251115_sj_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "7p", + "game_datetime_utc": "2025-11-16T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "San Jose Sharks", "home_team_abbrev": "SEA", @@ -12261,8 +11580,7 @@ "canonical_id": "game_nhl_2025_20251115_wpg_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-15", - "time": "8p", + "game_datetime_utc": "2025-11-16T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Winnipeg Jets", "home_team_abbrev": "CGY", @@ -12279,8 +11597,7 @@ "canonical_id": "game_nhl_2025_20251116_nsh_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "9a", + "game_datetime_utc": "2025-11-16T14:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Nashville Predators", "home_team_abbrev": "PIT", @@ -12297,8 +11614,7 @@ "canonical_id": "game_nfl_2026_20251116_was_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "3:30p", + "game_datetime_utc": "2025-11-16T14:30:00Z", "home_team": "Miami Dolphins", "away_team": "Washington Commanders", "home_team_abbrev": "MIA", @@ -12315,8 +11631,7 @@ "canonical_id": "game_nfl_2026_20251116_cin_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Cincinnati Bengals", "home_team_abbrev": "PIT", @@ -12333,8 +11648,7 @@ "canonical_id": "game_nfl_2026_20251116_car_atl", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Carolina Panthers", "home_team_abbrev": "ATL", @@ -12351,8 +11665,7 @@ "canonical_id": "game_nfl_2026_20251116_chi_min", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "12p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Chicago Bears", "home_team_abbrev": "MIN", @@ -12369,8 +11682,7 @@ "canonical_id": "game_nfl_2026_20251116_hou_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "12p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Houston Texans", "home_team_abbrev": "TEN", @@ -12387,8 +11699,7 @@ "canonical_id": "game_nfl_2026_20251116_tb_buf", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Buffalo Bills", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "BUF", @@ -12405,8 +11716,7 @@ "canonical_id": "game_nfl_2026_20251116_lac_jax", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Los Angeles Chargers", "home_team_abbrev": "JAX", @@ -12423,8 +11733,7 @@ "canonical_id": "game_nfl_2026_20251116_gb_nyg", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1p", + "game_datetime_utc": "2025-11-16T18:00:00Z", "home_team": "New York Giants", "away_team": "Green Bay Packers", "home_team_abbrev": "NYG", @@ -12441,8 +11750,7 @@ "canonical_id": "game_nba_2025_20251116_lac_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "3:30p", + "game_datetime_utc": "2025-11-16T20:30:00Z", "home_team": "Boston Celtics", "away_team": "Los Angeles Clippers", "home_team_abbrev": "BOS", @@ -12459,8 +11767,7 @@ "canonical_id": "game_nba_2025_20251116_sac_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "3p", + "game_datetime_utc": "2025-11-16T21:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Sacramento Kings", "home_team_abbrev": "SAS", @@ -12477,8 +11784,7 @@ "canonical_id": "game_nfl_2026_20251116_sea_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "1:05p", + "game_datetime_utc": "2025-11-16T21:05:00Z", "home_team": "Los Angeles Rams", "away_team": "Seattle Seahawks", "home_team_abbrev": "LAR", @@ -12495,8 +11801,7 @@ "canonical_id": "game_nfl_2026_20251116_sf_ari", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "2:05p", + "game_datetime_utc": "2025-11-16T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "San Francisco 49ers", "home_team_abbrev": "ARI", @@ -12513,8 +11818,7 @@ "canonical_id": "game_nfl_2026_20251116_kc_den", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "2:25p", + "game_datetime_utc": "2025-11-16T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Kansas City Chiefs", "home_team_abbrev": "DEN", @@ -12531,8 +11835,7 @@ "canonical_id": "game_nfl_2026_20251116_bal_cle", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "4:25p", + "game_datetime_utc": "2025-11-16T21:25:00Z", "home_team": "Cleveland Browns", "away_team": "Baltimore Ravens", "home_team_abbrev": "CLE", @@ -12549,8 +11852,7 @@ "canonical_id": "game_nhl_2025_20251116_van_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "5p", + "game_datetime_utc": "2025-11-16T22:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Vancouver Canucks", "home_team_abbrev": "TB", @@ -12567,8 +11869,7 @@ "canonical_id": "game_nba_2025_20251116_brk_was", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-16T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Brooklyn Nets", "home_team_abbrev": "WAS", @@ -12585,8 +11886,7 @@ "canonical_id": "game_nhl_2025_20251116_vgk_min", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "5p", + "game_datetime_utc": "2025-11-16T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vegas Golden Knights", "home_team_abbrev": "MIN", @@ -12603,8 +11903,7 @@ "canonical_id": "game_nba_2025_20251116_orl_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Orlando Magic", "home_team_abbrev": "HOU", @@ -12621,8 +11920,7 @@ "canonical_id": "game_nba_2025_20251116_gsw_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Golden State Warriors", "home_team_abbrev": "NOP", @@ -12639,8 +11937,7 @@ "canonical_id": "game_nhl_2025_20251116_det_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "7p", + "game_datetime_utc": "2025-11-17T00:00:00Z", "home_team": "New York Rangers", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYR", @@ -12657,8 +11954,7 @@ "canonical_id": "game_nba_2025_20251116_por_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6:30p", + "game_datetime_utc": "2025-11-17T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Portland Blazers", "home_team_abbrev": "DAL", @@ -12675,8 +11971,7 @@ "canonical_id": "game_nba_2025_20251116_chi_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "6p", + "game_datetime_utc": "2025-11-17T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Chicago Bulls", "home_team_abbrev": "UTA", @@ -12693,8 +11988,7 @@ "canonical_id": "game_nba_2025_20251116_atl_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-16", - "time": "8p", + "game_datetime_utc": "2025-11-17T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHX", @@ -12711,8 +12005,7 @@ "canonical_id": "game_nfl_2026_20251117_det_phi", "sport": "NFL", "season": "2025", - "date": "2025-11-16", - "time": "8:20p", + "game_datetime_utc": "2025-11-17T01:20:00Z", "home_team": "Philadelphia Eagles", "away_team": "Detroit Lions", "home_team_abbrev": "PHI", @@ -12729,8 +12022,7 @@ "canonical_id": "game_nhl_2025_20251116_nyi_col", "sport": "NHL", "season": "2025", - "date": "2025-11-16", - "time": "7p", + "game_datetime_utc": "2025-11-17T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New York Islanders", "home_team_abbrev": "COL", @@ -12747,8 +12039,7 @@ "canonical_id": "game_nba_2025_20251117_mil_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "6p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CLE", @@ -12765,8 +12056,7 @@ "canonical_id": "game_nba_2025_20251117_lac_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "4p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHI", @@ -12783,8 +12073,7 @@ "canonical_id": "game_nba_2025_20251117_ind_det", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Indiana Pacers", "home_team_abbrev": "DET", @@ -12801,8 +12090,7 @@ "canonical_id": "game_nhl_2025_20251117_car_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BOS", @@ -12819,8 +12107,7 @@ "canonical_id": "game_nhl_2025_20251117_van_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Vancouver Canucks", "home_team_abbrev": "FLA", @@ -12837,8 +12124,7 @@ "canonical_id": "game_nhl_2025_20251117_la_was", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Los Angeles Kings", "home_team_abbrev": "WAS", @@ -12855,8 +12141,7 @@ "canonical_id": "game_nhl_2025_20251117_edm_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Edmonton Oilers", "home_team_abbrev": "BUF", @@ -12873,8 +12158,7 @@ "canonical_id": "game_nba_2025_20251117_cho_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Charlotte Hornets", "home_team_abbrev": "TOR", @@ -12891,8 +12175,7 @@ "canonical_id": "game_nba_2025_20251117_nyk_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Miami Heat", "away_team": "New York Knicks", "home_team_abbrev": "MIA", @@ -12909,8 +12192,7 @@ "canonical_id": "game_nhl_2025_20251117_mtl_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7:30p", + "game_datetime_utc": "2025-11-18T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Montreal Canadiens", "home_team_abbrev": "CBJ", @@ -12927,8 +12209,7 @@ "canonical_id": "game_nba_2025_20251117_dal_min", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIN", @@ -12945,8 +12226,7 @@ "canonical_id": "game_nba_2025_20251117_okc_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "NOP", @@ -12963,8 +12243,7 @@ "canonical_id": "game_nfl_2026_20251118_dal_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-17", - "time": "5:15p", + "game_datetime_utc": "2025-11-18T01:15:00Z", "home_team": "Las Vegas Raiders", "away_team": "Dallas Cowboys", "home_team_abbrev": "LV", @@ -12981,8 +12260,7 @@ "canonical_id": "game_nba_2025_20251117_chi_den", "sport": "NBA", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Chicago Bulls", "home_team_abbrev": "DEN", @@ -12999,8 +12277,7 @@ "canonical_id": "game_nhl_2025_20251117_ari_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-17", - "time": "7p", + "game_datetime_utc": "2025-11-18T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Utah Club", "home_team_abbrev": "ANA", @@ -13017,8 +12294,7 @@ "canonical_id": "game_nba_2025_20251118_gsw_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Golden State Warriors", "home_team_abbrev": "ORL", @@ -13035,8 +12311,7 @@ "canonical_id": "game_nhl_2025_20251118_sea_det", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Seattle Kraken", "home_team_abbrev": "DET", @@ -13053,8 +12328,7 @@ "canonical_id": "game_nhl_2025_20251118_njd_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New Jersey Devils", "home_team_abbrev": "TB", @@ -13071,8 +12345,7 @@ "canonical_id": "game_nhl_2025_20251118_stl_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "St. Louis Blues", "home_team_abbrev": "TOR", @@ -13089,8 +12362,7 @@ "canonical_id": "game_nba_2025_20251118_bos_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Boston Celtics", "home_team_abbrev": "BKN", @@ -13107,8 +12379,7 @@ "canonical_id": "game_nba_2025_20251118_det_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Detroit Pistons", "home_team_abbrev": "ATL", @@ -13125,8 +12396,7 @@ "canonical_id": "game_nba_2025_20251118_mem_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAS", @@ -13143,8 +12413,7 @@ "canonical_id": "game_nhl_2025_20251118_nyi_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "Dallas Stars", "away_team": "New York Islanders", "home_team_abbrev": "DAL", @@ -13161,8 +12430,7 @@ "canonical_id": "game_nhl_2025_20251118_cbj_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WPG", @@ -13179,8 +12447,7 @@ "canonical_id": "game_nhl_2025_20251118_cgy_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Calgary Flames", "home_team_abbrev": "CHI", @@ -13197,8 +12464,7 @@ "canonical_id": "game_nhl_2025_20251118_nyr_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New York Rangers", "home_team_abbrev": "VGK", @@ -13215,8 +12481,7 @@ "canonical_id": "game_nhl_2025_20251118_ari_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-18", - "time": "7p", + "game_datetime_utc": "2025-11-19T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Utah Club", "home_team_abbrev": "SJ", @@ -13233,8 +12498,7 @@ "canonical_id": "game_nba_2025_20251118_uta_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "7:30p", + "game_datetime_utc": "2025-11-19T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Utah Jazz", "home_team_abbrev": "LAL", @@ -13251,8 +12515,7 @@ "canonical_id": "game_nba_2025_20251118_phx_por", "sport": "NBA", "season": "2025", - "date": "2025-11-18", - "time": "8p", + "game_datetime_utc": "2025-11-19T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Phoenix Suns", "home_team_abbrev": "POR", @@ -13269,8 +12532,7 @@ "canonical_id": "game_nba_2025_20251119_cho_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Charlotte Hornets", "home_team_abbrev": "IND", @@ -13287,8 +12549,7 @@ "canonical_id": "game_nba_2025_20251119_hou_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "6p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Houston Rockets", "home_team_abbrev": "CLE", @@ -13305,8 +12566,7 @@ "canonical_id": "game_nba_2025_20251119_tor_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "4p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Toronto Raptors", "home_team_abbrev": "PHI", @@ -13323,8 +12583,7 @@ "canonical_id": "game_nhl_2025_20251119_edm_was", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Edmonton Oilers", "home_team_abbrev": "WAS", @@ -13341,8 +12600,7 @@ "canonical_id": "game_nba_2025_20251119_gsw_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7:30p", + "game_datetime_utc": "2025-11-20T00:30:00Z", "home_team": "Miami Heat", "away_team": "Golden State Warriors", "home_team_abbrev": "MIA", @@ -13359,8 +12617,7 @@ "canonical_id": "game_nhl_2025_20251119_cgy_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7:30p", + "game_datetime_utc": "2025-11-20T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Calgary Flames", "home_team_abbrev": "BUF", @@ -13377,8 +12634,7 @@ "canonical_id": "game_nba_2025_20251119_den_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Denver Nuggets", "home_team_abbrev": "NOP", @@ -13395,8 +12651,7 @@ "canonical_id": "game_nba_2025_20251119_sac_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Sacramento Kings", "home_team_abbrev": "OKC", @@ -13413,8 +12668,7 @@ "canonical_id": "game_nba_2025_20251119_was_min", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Washington Wizards", "home_team_abbrev": "MIN", @@ -13431,8 +12685,7 @@ "canonical_id": "game_nba_2025_20251119_nyk_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "8:30p", + "game_datetime_utc": "2025-11-20T02:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New York Knicks", "home_team_abbrev": "DAL", @@ -13449,8 +12702,7 @@ "canonical_id": "game_nhl_2025_20251119_car_min", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "8:30p", + "game_datetime_utc": "2025-11-20T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Carolina Hurricanes", "home_team_abbrev": "MIN", @@ -13467,8 +12719,7 @@ "canonical_id": "game_nba_2025_20251119_chi_por", "sport": "NBA", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Chicago Bulls", "home_team_abbrev": "POR", @@ -13485,8 +12736,7 @@ "canonical_id": "game_nhl_2025_20251119_bos_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-19", - "time": "7p", + "game_datetime_utc": "2025-11-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Boston Bruins", "home_team_abbrev": "ANA", @@ -13503,8 +12753,7 @@ "canonical_id": "game_nba_2025_20251120_lac_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Los Angeles Clippers", "home_team_abbrev": "ORL", @@ -13521,8 +12770,7 @@ "canonical_id": "game_nhl_2025_20251120_cbj_tor", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "TOR", @@ -13539,8 +12787,7 @@ "canonical_id": "game_nhl_2025_20251120_stl_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "St. Louis Blues", "home_team_abbrev": "PHI", @@ -13557,8 +12804,7 @@ "canonical_id": "game_nhl_2025_20251120_was_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Washington Capitals", "home_team_abbrev": "MTL", @@ -13575,8 +12821,7 @@ "canonical_id": "game_nhl_2025_20251120_njd_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Florida Panthers", "away_team": "New Jersey Devils", "home_team_abbrev": "FLA", @@ -13593,8 +12838,7 @@ "canonical_id": "game_nhl_2025_20251120_nyi_det", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Islanders", "home_team_abbrev": "DET", @@ -13611,8 +12855,7 @@ "canonical_id": "game_nhl_2025_20251120_edm_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7:30p", + "game_datetime_utc": "2025-11-21T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Edmonton Oilers", "home_team_abbrev": "TB", @@ -13629,8 +12872,7 @@ "canonical_id": "game_nba_2025_20251120_sac_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Sacramento Kings", "home_team_abbrev": "MEM", @@ -13647,8 +12889,7 @@ "canonical_id": "game_nba_2025_20251120_phi_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIL", @@ -13665,8 +12906,7 @@ "canonical_id": "game_nba_2025_20251120_atl_sas", "sport": "NBA", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Atlanta Hawks", "home_team_abbrev": "SAS", @@ -13683,8 +12923,7 @@ "canonical_id": "game_nhl_2025_20251120_sea_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Seattle Kraken", "home_team_abbrev": "CHI", @@ -13701,8 +12940,7 @@ "canonical_id": "game_nfl_2026_20251121_buf_hou", "sport": "NFL", "season": "2025", - "date": "2025-11-20", - "time": "7:15p", + "game_datetime_utc": "2025-11-21T01:15:00Z", "home_team": "Houston Texans", "away_team": "Buffalo Bills", "home_team_abbrev": "HOU", @@ -13719,8 +12957,7 @@ "canonical_id": "game_nhl_2025_20251120_nyr_col", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "New York Rangers", "home_team_abbrev": "COL", @@ -13737,8 +12974,7 @@ "canonical_id": "game_nhl_2025_20251120_vgk_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T02:00:00Z", "home_team": "Utah Club", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ARI", @@ -13755,8 +12991,7 @@ "canonical_id": "game_nhl_2025_20251120_la_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Los Angeles Kings", "home_team_abbrev": "SJ", @@ -13773,8 +13008,7 @@ "canonical_id": "game_nhl_2025_20251120_dal_van", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Dallas Stars", "home_team_abbrev": "VAN", @@ -13791,8 +13025,7 @@ "canonical_id": "game_nhl_2025_20251120_ott_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-20", - "time": "7p", + "game_datetime_utc": "2025-11-21T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Ottawa Senators", "home_team_abbrev": "ANA", @@ -13809,8 +13042,7 @@ "canonical_id": "game_nba_2025_20251121_ind_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "6p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Indiana Pacers", "home_team_abbrev": "CLE", @@ -13827,8 +13059,7 @@ "canonical_id": "game_nhl_2025_20251121_chi_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Chicago Blackhawks", "home_team_abbrev": "BUF", @@ -13845,8 +13076,7 @@ "canonical_id": "game_nhl_2025_20251121_min_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Minnesota Wild", "home_team_abbrev": "PIT", @@ -13863,8 +13093,7 @@ "canonical_id": "game_nba_2025_20251121_brk_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Brooklyn Nets", "home_team_abbrev": "BOS", @@ -13881,8 +13110,7 @@ "canonical_id": "game_nba_2025_20251121_was_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Washington Wizards", "home_team_abbrev": "TOR", @@ -13899,8 +13127,7 @@ "canonical_id": "game_nba_2025_20251121_mia_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Miami Heat", "home_team_abbrev": "CHI", @@ -13917,8 +13144,7 @@ "canonical_id": "game_nhl_2025_20251121_car_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WPG", @@ -13935,8 +13161,7 @@ "canonical_id": "game_nba_2025_20251121_nop_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DAL", @@ -13953,8 +13178,7 @@ "canonical_id": "game_nba_2025_20251121_min_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "9p", + "game_datetime_utc": "2025-11-22T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "PHX", @@ -13971,8 +13195,7 @@ "canonical_id": "game_nba_2025_20251121_den_hou", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "8:30p", + "game_datetime_utc": "2025-11-22T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Denver Nuggets", "home_team_abbrev": "HOU", @@ -13989,8 +13212,7 @@ "canonical_id": "game_nba_2025_20251121_okc_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "8p", + "game_datetime_utc": "2025-11-22T03:00:00Z", "home_team": "Utah Jazz", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "UTA", @@ -14007,8 +13229,7 @@ "canonical_id": "game_nba_2025_20251121_por_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-21", - "time": "7p", + "game_datetime_utc": "2025-11-22T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Portland Blazers", "home_team_abbrev": "GSW", @@ -14025,8 +13246,7 @@ "canonical_id": "game_nhl_2025_20251121_bos_la", "sport": "NHL", "season": "2025", - "date": "2025-11-21", - "time": "7:30p", + "game_datetime_utc": "2025-11-22T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Boston Bruins", "home_team_abbrev": "LA", @@ -14043,8 +13263,7 @@ "canonical_id": "game_nba_2025_20251122_lac_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "1p", + "game_datetime_utc": "2025-11-22T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CHA", @@ -14061,8 +13280,7 @@ "canonical_id": "game_nhl_2025_20251122_cbj_det", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "1p", + "game_datetime_utc": "2025-11-22T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DET", @@ -14079,8 +13297,7 @@ "canonical_id": "game_nhl_2025_20251122_stl_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "3:30p", + "game_datetime_utc": "2025-11-22T20:30:00Z", "home_team": "New York Islanders", "away_team": "St. Louis Blues", "home_team_abbrev": "NYI", @@ -14097,8 +13314,7 @@ "canonical_id": "game_nba_2025_20251122_nyk_orl", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "5p", + "game_datetime_utc": "2025-11-22T22:00:00Z", "home_team": "Orlando Magic", "away_team": "New York Knicks", "home_team_abbrev": "ORL", @@ -14115,8 +13331,7 @@ "canonical_id": "game_nba_2025_20251122_atl_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "6p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Atlanta Hawks", "home_team_abbrev": "NOP", @@ -14133,8 +13348,7 @@ "canonical_id": "game_nhl_2025_20251122_tor_mtl", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MTL", @@ -14151,8 +13365,7 @@ "canonical_id": "game_nhl_2025_20251122_tb_was", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WAS", @@ -14169,8 +13382,7 @@ "canonical_id": "game_nhl_2025_20251122_ott_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "4p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "San Jose Sharks", "away_team": "Ottawa Senators", "home_team_abbrev": "SJ", @@ -14187,8 +13399,7 @@ "canonical_id": "game_nhl_2025_20251122_sea_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Seattle Kraken", "home_team_abbrev": "PIT", @@ -14205,8 +13416,7 @@ "canonical_id": "game_nhl_2025_20251122_njd_phi", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New Jersey Devils", "home_team_abbrev": "PHI", @@ -14223,8 +13433,7 @@ "canonical_id": "game_nhl_2025_20251122_edm_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Edmonton Oilers", "home_team_abbrev": "FLA", @@ -14241,8 +13450,7 @@ "canonical_id": "game_nba_2025_20251122_det_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Detroit Pistons", "home_team_abbrev": "MIL", @@ -14259,8 +13467,7 @@ "canonical_id": "game_nba_2025_20251122_was_chi", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Washington Wizards", "home_team_abbrev": "CHI", @@ -14277,8 +13484,7 @@ "canonical_id": "game_nhl_2025_20251122_col_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Colorado Avalanche", "home_team_abbrev": "NSH", @@ -14295,8 +13501,7 @@ "canonical_id": "game_nba_2025_20251122_mem_dal", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "7:30p", + "game_datetime_utc": "2025-11-23T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DAL", @@ -14313,8 +13518,7 @@ "canonical_id": "game_nhl_2025_20251122_nyr_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T02:00:00Z", "home_team": "Utah Club", "away_team": "New York Rangers", "home_team_abbrev": "ARI", @@ -14331,8 +13535,7 @@ "canonical_id": "game_nba_2025_20251122_sac_den", "sport": "NBA", "season": "2025", - "date": "2025-11-22", - "time": "8p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Sacramento Kings", "home_team_abbrev": "DEN", @@ -14349,8 +13552,7 @@ "canonical_id": "game_nhl_2025_20251122_dal_cgy", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "8p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Dallas Stars", "home_team_abbrev": "CGY", @@ -14367,8 +13569,7 @@ "canonical_id": "game_nhl_2025_20251122_vgk_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-22", - "time": "7p", + "game_datetime_utc": "2025-11-23T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ANA", @@ -14385,8 +13586,7 @@ "canonical_id": "game_nba_2025_20251123_mia_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "10a", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Miami Heat", "home_team_abbrev": "PHI", @@ -14403,8 +13603,7 @@ "canonical_id": "game_nfl_2026_20251123_sea_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Seattle Seahawks", "home_team_abbrev": "TEN", @@ -14421,8 +13620,7 @@ "canonical_id": "game_nfl_2026_20251123_nyj_bal", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Baltimore Ravens", "away_team": "New York Jets", "home_team_abbrev": "BAL", @@ -14439,8 +13637,7 @@ "canonical_id": "game_nfl_2026_20251123_ind_kc", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Indianapolis Colts", "home_team_abbrev": "KC", @@ -14457,8 +13654,7 @@ "canonical_id": "game_nfl_2026_20251123_pit_chi", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Chicago Bears", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CHI", @@ -14475,8 +13671,7 @@ "canonical_id": "game_nfl_2026_20251123_ne_cin", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "New England Patriots", "home_team_abbrev": "CIN", @@ -14493,8 +13688,7 @@ "canonical_id": "game_nfl_2026_20251123_nyg_det", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Detroit Lions", "away_team": "New York Giants", "home_team_abbrev": "DET", @@ -14511,8 +13705,7 @@ "canonical_id": "game_nfl_2026_20251123_min_gb", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "12p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Green Bay Packers", "away_team": "Minnesota Vikings", "home_team_abbrev": "GB", @@ -14529,8 +13722,7 @@ "canonical_id": "game_nhl_2025_20251123_car_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "1p", + "game_datetime_utc": "2025-11-23T18:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Carolina Hurricanes", "home_team_abbrev": "BUF", @@ -14547,8 +13739,7 @@ "canonical_id": "game_nhl_2025_20251123_min_wpg", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "3p", + "game_datetime_utc": "2025-11-23T21:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Minnesota Wild", "home_team_abbrev": "WPG", @@ -14565,8 +13756,7 @@ "canonical_id": "game_nfl_2026_20251123_jax_ari", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "2:05p", + "game_datetime_utc": "2025-11-23T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "ARI", @@ -14583,8 +13773,7 @@ "canonical_id": "game_nfl_2026_20251123_cle_lv", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "1:05p", + "game_datetime_utc": "2025-11-23T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Cleveland Browns", "home_team_abbrev": "LV", @@ -14601,8 +13790,7 @@ "canonical_id": "game_nfl_2026_20251123_atl_no", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "3:25p", + "game_datetime_utc": "2025-11-23T21:25:00Z", "home_team": "New Orleans Saints", "away_team": "Atlanta Falcons", "home_team_abbrev": "NO", @@ -14619,8 +13807,7 @@ "canonical_id": "game_nfl_2026_20251123_phi_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "3:25p", + "game_datetime_utc": "2025-11-23T21:25:00Z", "home_team": "Dallas Cowboys", "away_team": "Philadelphia Eagles", "home_team_abbrev": "DAL", @@ -14637,8 +13824,7 @@ "canonical_id": "game_nhl_2025_20251123_sea_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-23T22:00:00Z", "home_team": "New York Islanders", "away_team": "Seattle Kraken", "home_team_abbrev": "NYI", @@ -14655,8 +13841,7 @@ "canonical_id": "game_nba_2025_20251123_orl_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Orlando Magic", "home_team_abbrev": "BOS", @@ -14673,8 +13858,7 @@ "canonical_id": "game_nba_2025_20251123_cho_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Charlotte Hornets", "home_team_abbrev": "ATL", @@ -14691,8 +13875,7 @@ "canonical_id": "game_nba_2025_20251123_brk_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Brooklyn Nets", "home_team_abbrev": "TOR", @@ -14709,8 +13892,7 @@ "canonical_id": "game_nba_2025_20251123_lac_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-23T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CLE", @@ -14727,8 +13909,7 @@ "canonical_id": "game_nba_2025_20251123_por_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Portland Blazers", "home_team_abbrev": "OKC", @@ -14745,8 +13926,7 @@ "canonical_id": "game_nhl_2025_20251123_col_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Colorado Avalanche", "home_team_abbrev": "CHI", @@ -14763,8 +13943,7 @@ "canonical_id": "game_nba_2025_20251123_lal_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Lakers", "home_team_abbrev": "UTA", @@ -14781,8 +13960,7 @@ "canonical_id": "game_nba_2025_20251123_sas_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-23", - "time": "8p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHX", @@ -14799,8 +13977,7 @@ "canonical_id": "game_nhl_2025_20251123_bos_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "5p", + "game_datetime_utc": "2025-11-24T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Boston Bruins", "home_team_abbrev": "SJ", @@ -14817,8 +13994,7 @@ "canonical_id": "game_nfl_2026_20251124_tb_lar", "sport": "NFL", "season": "2025", - "date": "2025-11-23", - "time": "5:20p", + "game_datetime_utc": "2025-11-24T01:20:00Z", "home_team": "Los Angeles Rams", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "LAR", @@ -14835,8 +14011,7 @@ "canonical_id": "game_nhl_2025_20251123_cgy_van", "sport": "NHL", "season": "2025", - "date": "2025-11-23", - "time": "6p", + "game_datetime_utc": "2025-11-24T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Calgary Flames", "home_team_abbrev": "VAN", @@ -14853,8 +14028,7 @@ "canonical_id": "game_nba_2025_20251124_cle_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "TOR", @@ -14871,8 +14045,7 @@ "canonical_id": "game_nba_2025_20251124_det_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Detroit Pistons", "home_team_abbrev": "IND", @@ -14889,8 +14062,7 @@ "canonical_id": "game_nhl_2025_20251124_cbj_was", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WAS", @@ -14907,8 +14079,7 @@ "canonical_id": "game_nhl_2025_20251124_stl_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "New York Rangers", "away_team": "St. Louis Blues", "home_team_abbrev": "NYR", @@ -14925,8 +14096,7 @@ "canonical_id": "game_nhl_2025_20251124_phi_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Philadelphia Flyers", "home_team_abbrev": "TB", @@ -14943,8 +14113,7 @@ "canonical_id": "game_nhl_2025_20251124_det_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Detroit Red Wings", "home_team_abbrev": "NJ", @@ -14961,8 +14130,7 @@ "canonical_id": "game_nba_2025_20251124_nyk_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7:30p", + "game_datetime_utc": "2025-11-25T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "New York Knicks", "home_team_abbrev": "BKN", @@ -14979,8 +14147,7 @@ "canonical_id": "game_nba_2025_20251124_dal_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7:30p", + "game_datetime_utc": "2025-11-25T00:30:00Z", "home_team": "Miami Heat", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIA", @@ -14997,8 +14164,7 @@ "canonical_id": "game_nba_2025_20251124_chi_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Chicago Bulls", "home_team_abbrev": "NOP", @@ -15015,8 +14181,7 @@ "canonical_id": "game_nba_2025_20251124_den_mem", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -15033,8 +14198,7 @@ "canonical_id": "game_nba_2025_20251124_por_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Portland Blazers", "home_team_abbrev": "MIL", @@ -15051,8 +14215,7 @@ "canonical_id": "game_nhl_2025_20251124_fla_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Florida Panthers", "home_team_abbrev": "NSH", @@ -15069,8 +14232,7 @@ "canonical_id": "game_nfl_2026_20251125_car_sf", "sport": "NFL", "season": "2025", - "date": "2025-11-24", - "time": "5:15p", + "game_datetime_utc": "2025-11-25T01:15:00Z", "home_team": "San Francisco 49ers", "away_team": "Carolina Panthers", "home_team_abbrev": "SF", @@ -15087,8 +14249,7 @@ "canonical_id": "game_nhl_2025_20251124_ott_la", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "6p", + "game_datetime_utc": "2025-11-25T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Ottawa Senators", "home_team_abbrev": "LA", @@ -15105,8 +14266,7 @@ "canonical_id": "game_nhl_2025_20251124_vgk_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T02:00:00Z", "home_team": "Utah Club", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ARI", @@ -15123,8 +14283,7 @@ "canonical_id": "game_nba_2025_20251124_hou_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "9:30p", + "game_datetime_utc": "2025-11-25T02:30:00Z", "home_team": "Phoenix Suns", "away_team": "Houston Rockets", "home_team_abbrev": "PHX", @@ -15141,8 +14300,7 @@ "canonical_id": "game_nba_2025_20251124_uta_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Utah Jazz", "home_team_abbrev": "GSW", @@ -15159,8 +14317,7 @@ "canonical_id": "game_nba_2025_20251124_min_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-24", - "time": "7p", + "game_datetime_utc": "2025-11-25T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAC", @@ -15177,8 +14334,7 @@ "canonical_id": "game_nba_2025_20251125_atl_was", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "7p", + "game_datetime_utc": "2025-11-26T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Atlanta Hawks", "home_team_abbrev": "WAS", @@ -15195,8 +14351,7 @@ "canonical_id": "game_nba_2025_20251125_orl_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "5p", + "game_datetime_utc": "2025-11-26T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Orlando Magic", "home_team_abbrev": "PHI", @@ -15213,8 +14368,7 @@ "canonical_id": "game_nhl_2025_20251125_dal_edm", "sport": "NHL", "season": "2025", - "date": "2025-11-25", - "time": "7p", + "game_datetime_utc": "2025-11-26T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Dallas Stars", "home_team_abbrev": "EDM", @@ -15231,8 +14385,7 @@ "canonical_id": "game_nba_2025_20251125_lac_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-25", - "time": "8p", + "game_datetime_utc": "2025-11-26T04:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "LAL", @@ -15249,8 +14402,7 @@ "canonical_id": "game_nba_2025_20251126_det_bos", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "5p", + "game_datetime_utc": "2025-11-26T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Detroit Pistons", "home_team_abbrev": "BOS", @@ -15267,8 +14419,7 @@ "canonical_id": "game_nba_2025_20251126_nyk_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New York Knicks", "home_team_abbrev": "CHA", @@ -15285,8 +14436,7 @@ "canonical_id": "game_nhl_2025_20251126_tor_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CBJ", @@ -15303,8 +14453,7 @@ "canonical_id": "game_nhl_2025_20251126_stl_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "St. Louis Blues", "home_team_abbrev": "NJ", @@ -15321,8 +14470,7 @@ "canonical_id": "game_nhl_2025_20251126_bos_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "New York Islanders", "away_team": "Boston Bruins", "home_team_abbrev": "NYI", @@ -15339,8 +14487,7 @@ "canonical_id": "game_nhl_2025_20251126_phi_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "FLA", @@ -15357,8 +14504,7 @@ "canonical_id": "game_nhl_2025_20251126_nyr_car", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Rangers", "home_team_abbrev": "CAR", @@ -15375,8 +14521,7 @@ "canonical_id": "game_nhl_2025_20251126_buf_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Buffalo Sabres", "home_team_abbrev": "PIT", @@ -15393,8 +14538,7 @@ "canonical_id": "game_nhl_2025_20251126_cgy_tb", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Calgary Flames", "home_team_abbrev": "TB", @@ -15411,8 +14555,7 @@ "canonical_id": "game_nhl_2025_20251126_wpg_was", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Winnipeg Jets", "home_team_abbrev": "WAS", @@ -15429,8 +14572,7 @@ "canonical_id": "game_nhl_2025_20251126_nsh_det", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Nashville Predators", "home_team_abbrev": "DET", @@ -15447,8 +14589,7 @@ "canonical_id": "game_nba_2025_20251126_ind_tor", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Indiana Pacers", "home_team_abbrev": "TOR", @@ -15465,8 +14606,7 @@ "canonical_id": "game_nba_2025_20251126_min_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "6:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "OKC", @@ -15483,8 +14623,7 @@ "canonical_id": "game_nba_2025_20251126_mil_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T00:30:00Z", "home_team": "Miami Heat", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIA", @@ -15501,8 +14640,7 @@ "canonical_id": "game_nba_2025_20251126_mem_nop", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NOP", @@ -15519,8 +14657,7 @@ "canonical_id": "game_nhl_2025_20251126_min_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Minnesota Wild", "home_team_abbrev": "CHI", @@ -15537,8 +14674,7 @@ "canonical_id": "game_nhl_2025_20251126_sj_col", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "San Jose Sharks", "home_team_abbrev": "COL", @@ -15555,8 +14691,7 @@ "canonical_id": "game_nhl_2025_20251126_mtl_ari", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7:30p", + "game_datetime_utc": "2025-11-27T02:30:00Z", "home_team": "Utah Club", "away_team": "Montreal Canadiens", "home_team_abbrev": "ARI", @@ -15573,8 +14708,7 @@ "canonical_id": "game_nba_2025_20251126_sas_por", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Portland Blazers", "away_team": "San Antonio Spurs", "home_team_abbrev": "POR", @@ -15591,8 +14725,7 @@ "canonical_id": "game_nba_2025_20251126_hou_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Houston Rockets", "home_team_abbrev": "GSW", @@ -15609,8 +14742,7 @@ "canonical_id": "game_nba_2025_20251126_phx_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Phoenix Suns", "home_team_abbrev": "SAC", @@ -15627,8 +14759,7 @@ "canonical_id": "game_nhl_2025_20251126_van_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vancouver Canucks", "home_team_abbrev": "ANA", @@ -15645,8 +14776,7 @@ "canonical_id": "game_nhl_2025_20251126_dal_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Dallas Stars", "home_team_abbrev": "SEA", @@ -15663,8 +14793,7 @@ "canonical_id": "game_nhl_2025_20251126_ott_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-26", - "time": "7p", + "game_datetime_utc": "2025-11-27T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Ottawa Senators", "home_team_abbrev": "VGK", @@ -15681,8 +14810,7 @@ "canonical_id": "game_nfl_2026_20251127_gb_det", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "1p", + "game_datetime_utc": "2025-11-27T18:00:00Z", "home_team": "Detroit Lions", "away_team": "Green Bay Packers", "home_team_abbrev": "DET", @@ -15699,8 +14827,7 @@ "canonical_id": "game_nfl_2026_20251127_kc_dal", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "3:30p", + "game_datetime_utc": "2025-11-27T21:30:00Z", "home_team": "Dallas Cowboys", "away_team": "Kansas City Chiefs", "home_team_abbrev": "DAL", @@ -15717,8 +14844,7 @@ "canonical_id": "game_nfl_2026_20251128_cin_bal", "sport": "NFL", "season": "2025", - "date": "2025-11-27", - "time": "8:20p", + "game_datetime_utc": "2025-11-28T01:20:00Z", "home_team": "Baltimore Ravens", "away_team": "Cincinnati Bengals", "home_team_abbrev": "BAL", @@ -15735,8 +14861,7 @@ "canonical_id": "game_nhl_2025_20251128_tb_det", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "12p", + "game_datetime_utc": "2025-11-28T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DET", @@ -15753,8 +14878,7 @@ "canonical_id": "game_nhl_2025_20251128_nyr_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T18:00:00Z", "home_team": "Boston Bruins", "away_team": "New York Rangers", "home_team_abbrev": "BOS", @@ -15771,8 +14895,7 @@ "canonical_id": "game_nfl_2026_20251128_chi_phi", "sport": "NFL", "season": "2025", - "date": "2025-11-28", - "time": "3p", + "game_datetime_utc": "2025-11-28T20:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Chicago Bears", "home_team_abbrev": "PHI", @@ -15789,8 +14912,7 @@ "canonical_id": "game_nhl_2025_20251128_col_min", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "2:30p", + "game_datetime_utc": "2025-11-28T20:30:00Z", "home_team": "Minnesota Wild", "away_team": "Colorado Avalanche", "home_team_abbrev": "MIN", @@ -15807,8 +14929,7 @@ "canonical_id": "game_nhl_2025_20251128_van_sj", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vancouver Canucks", "home_team_abbrev": "SJ", @@ -15825,8 +14946,7 @@ "canonical_id": "game_nhl_2025_20251128_njd_buf", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New Jersey Devils", "home_team_abbrev": "BUF", @@ -15843,8 +14963,7 @@ "canonical_id": "game_nhl_2025_20251128_cgy_fla", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Calgary Flames", "home_team_abbrev": "FLA", @@ -15861,8 +14980,7 @@ "canonical_id": "game_nhl_2025_20251128_ott_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "3p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "St. Louis Blues", "away_team": "Ottawa Senators", "home_team_abbrev": "STL", @@ -15879,8 +14997,7 @@ "canonical_id": "game_nhl_2025_20251128_mtl_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Montreal Canadiens", "home_team_abbrev": "VGK", @@ -15897,8 +15014,7 @@ "canonical_id": "game_nhl_2025_20251128_phi_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "4p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "New York Islanders", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYI", @@ -15915,8 +15031,7 @@ "canonical_id": "game_nhl_2025_20251128_la_ana", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "1p", + "game_datetime_utc": "2025-11-28T21:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Los Angeles Kings", "home_team_abbrev": "ANA", @@ -15933,8 +15048,7 @@ "canonical_id": "game_nhl_2025_20251128_wpg_car", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "5p", + "game_datetime_utc": "2025-11-28T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Winnipeg Jets", "home_team_abbrev": "CAR", @@ -15951,8 +15065,7 @@ "canonical_id": "game_nhl_2025_20251128_tor_was", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "5p", + "game_datetime_utc": "2025-11-28T22:00:00Z", "home_team": "Washington Capitals", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WAS", @@ -15969,8 +15082,7 @@ "canonical_id": "game_nhl_2025_20251128_pit_cbj", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CBJ", @@ -15987,8 +15099,7 @@ "canonical_id": "game_nba_2025_20251128_cle_atl", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ATL", @@ -16005,8 +15116,7 @@ "canonical_id": "game_nba_2025_20251128_mil_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "New York Knicks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "NYK", @@ -16023,8 +15133,7 @@ "canonical_id": "game_nba_2025_20251128_was_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Washington Wizards", "home_team_abbrev": "IND", @@ -16041,8 +15150,7 @@ "canonical_id": "game_nba_2025_20251128_orl_det", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Orlando Magic", "home_team_abbrev": "DET", @@ -16059,8 +15167,7 @@ "canonical_id": "game_nba_2025_20251128_chi_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Charlotte Hornets", "away_team": "Chicago Bulls", "home_team_abbrev": "CHA", @@ -16077,8 +15184,7 @@ "canonical_id": "game_nba_2025_20251128_phi_brk", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BKN", @@ -16095,8 +15201,7 @@ "canonical_id": "game_nhl_2025_20251128_nsh_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Nashville Predators", "home_team_abbrev": "CHI", @@ -16113,8 +15218,7 @@ "canonical_id": "game_nhl_2025_20251128_ari_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Utah Club", "home_team_abbrev": "DAL", @@ -16131,8 +15235,7 @@ "canonical_id": "game_nba_2025_20251128_sas_den", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "San Antonio Spurs", "home_team_abbrev": "DEN", @@ -16149,8 +15252,7 @@ "canonical_id": "game_nba_2025_20251128_sac_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Sacramento Kings", "home_team_abbrev": "UTA", @@ -16167,8 +15269,7 @@ "canonical_id": "game_nba_2025_20251128_phx_okc", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "8:30p", + "game_datetime_utc": "2025-11-29T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -16185,8 +15286,7 @@ "canonical_id": "game_nba_2025_20251128_dal_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAL", @@ -16203,8 +15303,7 @@ "canonical_id": "game_nba_2025_20251128_mem_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-28", - "time": "7p", + "game_datetime_utc": "2025-11-29T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAC", @@ -16221,8 +15320,7 @@ "canonical_id": "game_nhl_2025_20251129_tb_nyr", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "2p", + "game_datetime_utc": "2025-11-29T19:00:00Z", "home_team": "New York Rangers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYR", @@ -16239,8 +15337,7 @@ "canonical_id": "game_nhl_2025_20251129_mtl_col", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "1p", + "game_datetime_utc": "2025-11-29T20:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Montreal Canadiens", "home_team_abbrev": "COL", @@ -16257,8 +15354,7 @@ "canonical_id": "game_nhl_2025_20251129_edm_sea", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "1p", + "game_datetime_utc": "2025-11-29T21:00:00Z", "home_team": "Seattle Kraken", "away_team": "Edmonton Oilers", "home_team_abbrev": "SEA", @@ -16275,8 +15371,7 @@ "canonical_id": "game_nba_2025_20251129_bos_min", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "4p", + "game_datetime_utc": "2025-11-29T22:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Boston Celtics", "home_team_abbrev": "MIN", @@ -16293,8 +15388,7 @@ "canonical_id": "game_nba_2025_20251129_tor_cho", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "6p", + "game_datetime_utc": "2025-11-29T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Toronto Raptors", "home_team_abbrev": "CHA", @@ -16311,8 +15405,7 @@ "canonical_id": "game_nhl_2025_20251129_wpg_nsh", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "6p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Winnipeg Jets", "home_team_abbrev": "NSH", @@ -16329,8 +15422,7 @@ "canonical_id": "game_nhl_2025_20251129_tor_pit", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PIT", @@ -16347,8 +15439,7 @@ "canonical_id": "game_nhl_2025_20251129_det_bos", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Detroit Red Wings", "home_team_abbrev": "BOS", @@ -16365,8 +15456,7 @@ "canonical_id": "game_nhl_2025_20251129_phi_njd", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NJ", @@ -16383,8 +15473,7 @@ "canonical_id": "game_nba_2025_20251129_chi_ind", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7:30p", + "game_datetime_utc": "2025-11-30T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Chicago Bulls", "home_team_abbrev": "IND", @@ -16401,8 +15490,7 @@ "canonical_id": "game_nba_2025_20251129_det_mia", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "8p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Miami Heat", "away_team": "Detroit Pistons", "home_team_abbrev": "MIA", @@ -16419,8 +15507,7 @@ "canonical_id": "game_nba_2025_20251129_brk_mil", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIL", @@ -16437,8 +15524,7 @@ "canonical_id": "game_nhl_2025_20251129_buf_min", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Buffalo Sabres", "home_team_abbrev": "MIN", @@ -16455,8 +15541,7 @@ "canonical_id": "game_nhl_2025_20251129_ari_stl", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Utah Club", "home_team_abbrev": "STL", @@ -16473,8 +15558,7 @@ "canonical_id": "game_nba_2025_20251129_nop_gsw", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "5:30p", + "game_datetime_utc": "2025-11-30T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "New Orleans Pelicans", "home_team_abbrev": "GSW", @@ -16491,8 +15575,7 @@ "canonical_id": "game_nba_2025_20251129_den_phx", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "9p", + "game_datetime_utc": "2025-11-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Denver Nuggets", "home_team_abbrev": "PHX", @@ -16509,8 +15592,7 @@ "canonical_id": "game_nba_2025_20251129_dal_lac", "sport": "NBA", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAC", @@ -16527,8 +15609,7 @@ "canonical_id": "game_nhl_2025_20251129_van_la", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vancouver Canucks", "home_team_abbrev": "LA", @@ -16545,8 +15626,7 @@ "canonical_id": "game_nhl_2025_20251129_sj_vgk", "sport": "NHL", "season": "2025", - "date": "2025-11-29", - "time": "7p", + "game_datetime_utc": "2025-11-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "San Jose Sharks", "home_team_abbrev": "VGK", @@ -16563,8 +15643,7 @@ "canonical_id": "game_nfl_2026_20251130_hou_ind", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Houston Texans", "home_team_abbrev": "IND", @@ -16581,8 +15660,7 @@ "canonical_id": "game_nfl_2026_20251130_jax_ten", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "12p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "TEN", @@ -16599,8 +15677,7 @@ "canonical_id": "game_nfl_2026_20251130_sf_cle", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "San Francisco 49ers", "home_team_abbrev": "CLE", @@ -16617,8 +15694,7 @@ "canonical_id": "game_nfl_2026_20251130_no_mia", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "New Orleans Saints", "home_team_abbrev": "MIA", @@ -16635,8 +15711,7 @@ "canonical_id": "game_nfl_2026_20251130_atl_nyj", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "New York Jets", "away_team": "Atlanta Falcons", "home_team_abbrev": "NYJ", @@ -16653,8 +15728,7 @@ "canonical_id": "game_nfl_2026_20251130_ari_tb", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Arizona Cardinals", "home_team_abbrev": "TB", @@ -16671,8 +15745,7 @@ "canonical_id": "game_nfl_2026_20251130_lar_car", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Los Angeles Rams", "home_team_abbrev": "CAR", @@ -16689,8 +15762,7 @@ "canonical_id": "game_nhl_2025_20251130_was_nyi", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T18:00:00Z", "home_team": "New York Islanders", "away_team": "Washington Capitals", "home_team_abbrev": "NYI", @@ -16707,8 +15779,7 @@ "canonical_id": "game_nba_2025_20251130_hou_uta", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "1p", + "game_datetime_utc": "2025-11-30T20:00:00Z", "home_team": "Utah Jazz", "away_team": "Houston Rockets", "home_team_abbrev": "UTA", @@ -16725,8 +15796,7 @@ "canonical_id": "game_nhl_2025_20251130_ana_chi", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "2:30p", + "game_datetime_utc": "2025-11-30T20:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Anaheim Ducks", "home_team_abbrev": "CHI", @@ -16743,8 +15813,7 @@ "canonical_id": "game_nfl_2026_20251130_min_sea", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1:05p", + "game_datetime_utc": "2025-11-30T21:05:00Z", "home_team": "Seattle Seahawks", "away_team": "Minnesota Vikings", "home_team_abbrev": "SEA", @@ -16761,8 +15830,7 @@ "canonical_id": "game_nfl_2026_20251130_buf_pit", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "4:25p", + "game_datetime_utc": "2025-11-30T21:25:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Buffalo Bills", "home_team_abbrev": "PIT", @@ -16779,8 +15847,7 @@ "canonical_id": "game_nfl_2026_20251130_lv_lac", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "1:25p", + "game_datetime_utc": "2025-11-30T21:25:00Z", "home_team": "Los Angeles Chargers", "away_team": "Las Vegas Raiders", "home_team_abbrev": "LAC", @@ -16797,8 +15864,7 @@ "canonical_id": "game_nhl_2025_20251130_cgy_car", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Calgary Flames", "home_team_abbrev": "CAR", @@ -16815,8 +15881,7 @@ "canonical_id": "game_nba_2025_20251130_tor_nyk", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "New York Knicks", "away_team": "Toronto Raptors", "home_team_abbrev": "NYK", @@ -16833,8 +15898,7 @@ "canonical_id": "game_nba_2025_20251130_atl_phi", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "3p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHI", @@ -16851,8 +15915,7 @@ "canonical_id": "game_nba_2025_20251130_okc_por", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "3p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Portland Blazers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "POR", @@ -16869,8 +15932,7 @@ "canonical_id": "game_nba_2025_20251130_bos_cle", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Boston Celtics", "home_team_abbrev": "CLE", @@ -16887,8 +15949,7 @@ "canonical_id": "game_nhl_2025_20251130_ott_dal", "sport": "NHL", "season": "2025", - "date": "2025-11-30", - "time": "5p", + "game_datetime_utc": "2025-11-30T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Ottawa Senators", "home_team_abbrev": "DAL", @@ -16905,8 +15966,7 @@ "canonical_id": "game_nba_2025_20251130_sas_min", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-12-01T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIN", @@ -16923,8 +15983,7 @@ "canonical_id": "game_nfl_2026_20251201_den_was", "sport": "NFL", "season": "2025", - "date": "2025-11-30", - "time": "8:20p", + "game_datetime_utc": "2025-12-01T01:20:00Z", "home_team": "Washington Commanders", "away_team": "Denver Broncos", "home_team_abbrev": "WAS", @@ -16941,8 +16000,7 @@ "canonical_id": "game_nba_2025_20251130_mem_sac", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6p", + "game_datetime_utc": "2025-12-01T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAC", @@ -16959,8 +16017,7 @@ "canonical_id": "game_nba_2025_20251130_nop_lal", "sport": "NBA", "season": "2025", - "date": "2025-11-30", - "time": "6:30p", + "game_datetime_utc": "2025-12-01T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAL", @@ -16977,8 +16034,7 @@ "canonical_id": "game_nba_2025_20251201_mil_was", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Milwaukee Bucks", "home_team_abbrev": "WAS", @@ -16995,8 +16051,7 @@ "canonical_id": "game_nba_2025_20251201_atl_det", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -17013,8 +16068,7 @@ "canonical_id": "game_nba_2025_20251201_cle_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "IND", @@ -17031,8 +16085,7 @@ "canonical_id": "game_nhl_2025_20251201_cbj_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NJ", @@ -17049,8 +16102,7 @@ "canonical_id": "game_nhl_2025_20251201_pit_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "PHI", @@ -17067,8 +16119,7 @@ "canonical_id": "game_nba_2025_20251201_lac_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Miami Heat", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIA", @@ -17085,8 +16136,7 @@ "canonical_id": "game_nba_2025_20251201_chi_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Chicago Bulls", "home_team_abbrev": "ORL", @@ -17103,8 +16153,7 @@ "canonical_id": "game_nba_2025_20251201_cho_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Charlotte Hornets", "home_team_abbrev": "BKN", @@ -17121,8 +16170,7 @@ "canonical_id": "game_nhl_2025_20251201_wpg_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7:30p", + "game_datetime_utc": "2025-12-02T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Winnipeg Jets", "home_team_abbrev": "BUF", @@ -17139,8 +16187,7 @@ "canonical_id": "game_nhl_2025_20251201_ana_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Anaheim Ducks", "home_team_abbrev": "STL", @@ -17157,8 +16204,7 @@ "canonical_id": "game_nfl_2026_20251202_nyg_ne", "sport": "NFL", "season": "2025", - "date": "2025-12-01", - "time": "8:15p", + "game_datetime_utc": "2025-12-02T01:15:00Z", "home_team": "New England Patriots", "away_team": "New York Giants", "home_team_abbrev": "NE", @@ -17175,8 +16221,7 @@ "canonical_id": "game_nba_2025_20251201_hou_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Houston Rockets", "home_team_abbrev": "UTA", @@ -17193,8 +16238,7 @@ "canonical_id": "game_nba_2025_20251201_dal_den", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Dallas Mavericks", "home_team_abbrev": "DEN", @@ -17211,8 +16255,7 @@ "canonical_id": "game_nba_2025_20251201_phx_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAL", @@ -17229,8 +16272,7 @@ "canonical_id": "game_nhl_2025_20251201_ari_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-01", - "time": "7p", + "game_datetime_utc": "2025-12-02T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Utah Club", "home_team_abbrev": "SJ", @@ -17247,8 +16289,7 @@ "canonical_id": "game_nba_2025_20251202_was_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "4p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Washington Wizards", "home_team_abbrev": "PHI", @@ -17265,8 +16306,7 @@ "canonical_id": "game_nhl_2025_20251202_tb_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "New York Islanders", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYI", @@ -17283,8 +16323,7 @@ "canonical_id": "game_nhl_2025_20251202_dal_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "New York Rangers", "away_team": "Dallas Stars", "home_team_abbrev": "NYR", @@ -17301,8 +16340,7 @@ "canonical_id": "game_nhl_2025_20251202_ott_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Ottawa Senators", "home_team_abbrev": "MTL", @@ -17319,8 +16357,7 @@ "canonical_id": "game_nhl_2025_20251202_bos_det", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Boston Bruins", "home_team_abbrev": "DET", @@ -17337,8 +16374,7 @@ "canonical_id": "game_nba_2025_20251202_por_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Portland Blazers", "home_team_abbrev": "TOR", @@ -17355,8 +16391,7 @@ "canonical_id": "game_nhl_2025_20251202_tor_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T00:30:00Z", "home_team": "Florida Panthers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "FLA", @@ -17373,8 +16408,7 @@ "canonical_id": "game_nba_2025_20251202_mem_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAS", @@ -17391,8 +16425,7 @@ "canonical_id": "game_nba_2025_20251202_nyk_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "8p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "Boston Celtics", "away_team": "New York Knicks", "home_team_abbrev": "BOS", @@ -17409,8 +16442,7 @@ "canonical_id": "game_nba_2025_20251202_min_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NOP", @@ -17427,8 +16459,7 @@ "canonical_id": "game_nhl_2025_20251202_cgy_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Calgary Flames", "home_team_abbrev": "NSH", @@ -17445,8 +16476,7 @@ "canonical_id": "game_nhl_2025_20251202_van_col", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Vancouver Canucks", "home_team_abbrev": "COL", @@ -17463,8 +16493,7 @@ "canonical_id": "game_nhl_2025_20251202_min_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Minnesota Wild", "home_team_abbrev": "EDM", @@ -17481,8 +16510,7 @@ "canonical_id": "game_nhl_2025_20251202_chi_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7p", + "game_datetime_utc": "2025-12-03T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VGK", @@ -17499,8 +16527,7 @@ "canonical_id": "game_nhl_2025_20251202_was_la", "sport": "NHL", "season": "2025", - "date": "2025-12-02", - "time": "7:30p", + "game_datetime_utc": "2025-12-03T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Washington Capitals", "home_team_abbrev": "LA", @@ -17517,8 +16544,7 @@ "canonical_id": "game_nba_2025_20251202_okc_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-02", - "time": "8p", + "game_datetime_utc": "2025-12-03T04:00:00Z", "home_team": "Golden State Warriors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "GSW", @@ -17535,8 +16561,7 @@ "canonical_id": "game_nba_2025_20251203_por_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "6p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Portland Blazers", "home_team_abbrev": "CLE", @@ -17553,8 +16578,7 @@ "canonical_id": "game_nba_2025_20251203_sas_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Orlando Magic", "away_team": "San Antonio Spurs", "home_team_abbrev": "ORL", @@ -17571,8 +16595,7 @@ "canonical_id": "game_nba_2025_20251203_den_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Denver Nuggets", "home_team_abbrev": "IND", @@ -17589,8 +16612,7 @@ "canonical_id": "game_nhl_2025_20251203_dal_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Dallas Stars", "home_team_abbrev": "NJ", @@ -17607,8 +16629,7 @@ "canonical_id": "game_nba_2025_20251203_cho_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Charlotte Hornets", "home_team_abbrev": "NYK", @@ -17625,8 +16646,7 @@ "canonical_id": "game_nba_2025_20251203_lac_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "ATL", @@ -17643,8 +16663,7 @@ "canonical_id": "game_nhl_2025_20251203_wpg_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Winnipeg Jets", "home_team_abbrev": "MTL", @@ -17661,8 +16680,7 @@ "canonical_id": "game_nhl_2025_20251203_buf_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Buffalo Sabres", "home_team_abbrev": "PHI", @@ -17679,8 +16697,7 @@ "canonical_id": "game_nba_2025_20251203_sac_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Sacramento Kings", "home_team_abbrev": "HOU", @@ -17697,8 +16714,7 @@ "canonical_id": "game_nba_2025_20251203_brk_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHI", @@ -17715,8 +16731,7 @@ "canonical_id": "game_nba_2025_20251203_det_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Detroit Pistons", "home_team_abbrev": "MIL", @@ -17733,8 +16748,7 @@ "canonical_id": "game_nba_2025_20251203_mia_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-03", - "time": "7:30p", + "game_datetime_utc": "2025-12-04T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Miami Heat", "home_team_abbrev": "DAL", @@ -17751,8 +16765,7 @@ "canonical_id": "game_nhl_2025_20251203_ari_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Utah Club", "home_team_abbrev": "ANA", @@ -17769,8 +16782,7 @@ "canonical_id": "game_nhl_2025_20251203_was_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-03", - "time": "7p", + "game_datetime_utc": "2025-12-04T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Washington Capitals", "home_team_abbrev": "SJ", @@ -17787,8 +16799,7 @@ "canonical_id": "game_nba_2025_20251204_bos_was", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Boston Celtics", "home_team_abbrev": "WAS", @@ -17805,8 +16816,7 @@ "canonical_id": "game_nba_2025_20251204_gsw_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "4p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Golden State Warriors", "home_team_abbrev": "PHI", @@ -17823,8 +16833,7 @@ "canonical_id": "game_nhl_2025_20251204_nsh_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Nashville Predators", "home_team_abbrev": "FLA", @@ -17841,8 +16850,7 @@ "canonical_id": "game_nhl_2025_20251204_tor_car", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CAR", @@ -17859,8 +16867,7 @@ "canonical_id": "game_nhl_2025_20251204_stl_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Boston Bruins", "away_team": "St. Louis Blues", "home_team_abbrev": "BOS", @@ -17877,8 +16884,7 @@ "canonical_id": "game_nhl_2025_20251204_col_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "New York Islanders", "away_team": "Colorado Avalanche", "home_team_abbrev": "NYI", @@ -17895,8 +16901,7 @@ "canonical_id": "game_nhl_2025_20251204_pit_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TB", @@ -17913,8 +16918,7 @@ "canonical_id": "game_nhl_2025_20251204_nyr_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Rangers", "home_team_abbrev": "OTT", @@ -17931,8 +16935,7 @@ "canonical_id": "game_nba_2025_20251204_lal_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "TOR", @@ -17949,8 +16952,7 @@ "canonical_id": "game_nba_2025_20251204_uta_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Utah Jazz", "home_team_abbrev": "BKN", @@ -17967,8 +16969,7 @@ "canonical_id": "game_nhl_2025_20251204_det_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7:30p", + "game_datetime_utc": "2025-12-05T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Detroit Red Wings", "home_team_abbrev": "CBJ", @@ -17985,8 +16986,7 @@ "canonical_id": "game_nba_2025_20251204_min_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "NOP", @@ -18003,8 +17003,7 @@ "canonical_id": "game_nfl_2026_20251205_dal_det", "sport": "NFL", "season": "2025", - "date": "2025-12-04", - "time": "8:15p", + "game_datetime_utc": "2025-12-05T01:15:00Z", "home_team": "Detroit Lions", "away_team": "Dallas Cowboys", "home_team_abbrev": "DET", @@ -18021,8 +17020,7 @@ "canonical_id": "game_nhl_2025_20251204_min_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Minnesota Wild", "home_team_abbrev": "CGY", @@ -18039,8 +17037,7 @@ "canonical_id": "game_nhl_2025_20251204_sea_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Seattle Kraken", "home_team_abbrev": "EDM", @@ -18057,8 +17054,7 @@ "canonical_id": "game_nhl_2025_20251204_chi_la", "sport": "NHL", "season": "2025", - "date": "2025-12-04", - "time": "7p", + "game_datetime_utc": "2025-12-05T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "LA", @@ -18075,8 +17071,7 @@ "canonical_id": "game_nba_2025_20251205_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -18093,8 +17088,7 @@ "canonical_id": "game_nba_2025_20251205_lal_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Los Angeles Lakers", "home_team_abbrev": "BOS", @@ -18111,8 +17105,7 @@ "canonical_id": "game_nhl_2025_20251205_buf_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "6p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Buffalo Sabres", "home_team_abbrev": "WPG", @@ -18129,8 +17122,7 @@ "canonical_id": "game_nhl_2025_20251205_vgk_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NJ", @@ -18147,8 +17139,7 @@ "canonical_id": "game_nba_2025_20251205_uta_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "New York Knicks", "away_team": "Utah Jazz", "home_team_abbrev": "NYK", @@ -18165,8 +17156,7 @@ "canonical_id": "game_nba_2025_20251205_cho_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Charlotte Hornets", "home_team_abbrev": "TOR", @@ -18183,8 +17173,7 @@ "canonical_id": "game_nba_2025_20251205_den_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Denver Nuggets", "home_team_abbrev": "ATL", @@ -18201,8 +17190,7 @@ "canonical_id": "game_nba_2025_20251205_por_det", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Portland Blazers", "home_team_abbrev": "DET", @@ -18219,8 +17207,7 @@ "canonical_id": "game_nba_2025_20251205_sas_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "6:30p", + "game_datetime_utc": "2025-12-06T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "San Antonio Spurs", "home_team_abbrev": "CLE", @@ -18237,8 +17224,7 @@ "canonical_id": "game_nba_2025_20251205_lac_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MEM", @@ -18255,8 +17241,7 @@ "canonical_id": "game_nba_2025_20251205_ind_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Indiana Pacers", "home_team_abbrev": "CHI", @@ -18273,8 +17258,7 @@ "canonical_id": "game_nba_2025_20251205_phx_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Phoenix Suns", "home_team_abbrev": "HOU", @@ -18291,8 +17275,7 @@ "canonical_id": "game_nba_2025_20251205_phi_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIL", @@ -18309,8 +17292,7 @@ "canonical_id": "game_nhl_2025_20251205_sj_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T01:00:00Z", "home_team": "Dallas Stars", "away_team": "San Jose Sharks", "home_team_abbrev": "DAL", @@ -18327,8 +17309,7 @@ "canonical_id": "game_nhl_2025_20251205_ari_van", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "6p", + "game_datetime_utc": "2025-12-06T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Utah Club", "home_team_abbrev": "VAN", @@ -18345,8 +17326,7 @@ "canonical_id": "game_nba_2025_20251205_dal_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-05", - "time": "8:30p", + "game_datetime_utc": "2025-12-06T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Dallas Mavericks", "home_team_abbrev": "OKC", @@ -18363,8 +17343,7 @@ "canonical_id": "game_nhl_2025_20251205_was_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-05", - "time": "7p", + "game_datetime_utc": "2025-12-06T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Washington Capitals", "home_team_abbrev": "ANA", @@ -18381,8 +17360,7 @@ "canonical_id": "game_nhl_2025_20251206_col_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "12:30p", + "game_datetime_utc": "2025-12-06T17:30:00Z", "home_team": "New York Rangers", "away_team": "Colorado Avalanche", "home_team_abbrev": "NYR", @@ -18399,8 +17377,7 @@ "canonical_id": "game_nhl_2025_20251206_cbj_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "3:30p", + "game_datetime_utc": "2025-12-06T20:30:00Z", "home_team": "Florida Panthers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "FLA", @@ -18417,8 +17394,7 @@ "canonical_id": "game_nba_2025_20251206_nop_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "5p", + "game_datetime_utc": "2025-12-06T22:00:00Z", "home_team": "Brooklyn Nets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "BKN", @@ -18435,8 +17411,7 @@ "canonical_id": "game_nba_2025_20251206_atl_was", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Atlanta Hawks", "home_team_abbrev": "WAS", @@ -18453,8 +17428,7 @@ "canonical_id": "game_nhl_2025_20251206_njd_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Boston Bruins", "away_team": "New Jersey Devils", "home_team_abbrev": "BOS", @@ -18471,8 +17445,7 @@ "canonical_id": "game_nhl_2025_20251206_stl_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "St. Louis Blues", "home_team_abbrev": "OTT", @@ -18489,8 +17462,7 @@ "canonical_id": "game_nhl_2025_20251206_nsh_car", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Nashville Predators", "home_team_abbrev": "CAR", @@ -18507,8 +17479,7 @@ "canonical_id": "game_nhl_2025_20251206_nyi_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Islanders", "home_team_abbrev": "TB", @@ -18525,8 +17496,7 @@ "canonical_id": "game_nhl_2025_20251206_ari_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "5p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Utah Club", "home_team_abbrev": "CGY", @@ -18543,8 +17513,7 @@ "canonical_id": "game_nhl_2025_20251206_mtl_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Montreal Canadiens", "home_team_abbrev": "TOR", @@ -18561,8 +17530,7 @@ "canonical_id": "game_nba_2025_20251206_mil_det", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7:30p", + "game_datetime_utc": "2025-12-07T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DET", @@ -18579,8 +17547,7 @@ "canonical_id": "game_nba_2025_20251206_gsw_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "6:30p", + "game_datetime_utc": "2025-12-07T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Golden State Warriors", "home_team_abbrev": "CLE", @@ -18597,8 +17564,7 @@ "canonical_id": "game_nba_2025_20251206_sac_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "8p", + "game_datetime_utc": "2025-12-07T01:00:00Z", "home_team": "Miami Heat", "away_team": "Sacramento Kings", "home_team_abbrev": "MIA", @@ -18615,8 +17581,7 @@ "canonical_id": "game_nba_2025_20251206_lac_min", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIN", @@ -18633,8 +17598,7 @@ "canonical_id": "game_nba_2025_20251206_hou_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-06", - "time": "7:30p", + "game_datetime_utc": "2025-12-07T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Houston Rockets", "home_team_abbrev": "DAL", @@ -18651,8 +17615,7 @@ "canonical_id": "game_nhl_2025_20251206_chi_la", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "6p", + "game_datetime_utc": "2025-12-07T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Chicago Blackhawks", "home_team_abbrev": "LA", @@ -18669,8 +17632,7 @@ "canonical_id": "game_nhl_2025_20251206_wpg_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "8p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Winnipeg Jets", "home_team_abbrev": "EDM", @@ -18687,8 +17649,7 @@ "canonical_id": "game_nhl_2025_20251206_min_van", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Minnesota Wild", "home_team_abbrev": "VAN", @@ -18705,8 +17666,7 @@ "canonical_id": "game_nhl_2025_20251206_det_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-06", - "time": "7p", + "game_datetime_utc": "2025-12-07T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Detroit Red Wings", "home_team_abbrev": "SEA", @@ -18723,8 +17683,7 @@ "canonical_id": "game_nba_2025_20251207_orl_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "12p", + "game_datetime_utc": "2025-12-07T17:00:00Z", "home_team": "New York Knicks", "away_team": "Orlando Magic", "home_team_abbrev": "NYK", @@ -18741,8 +17700,7 @@ "canonical_id": "game_nfl_2026_20251207_ten_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Tennessee Titans", "home_team_abbrev": "CLE", @@ -18759,8 +17717,7 @@ "canonical_id": "game_nfl_2026_20251207_mia_nyj", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "New York Jets", "away_team": "Miami Dolphins", "home_team_abbrev": "NYJ", @@ -18777,8 +17734,7 @@ "canonical_id": "game_nfl_2026_20251207_no_tb", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "New Orleans Saints", "home_team_abbrev": "TB", @@ -18795,8 +17751,7 @@ "canonical_id": "game_nfl_2026_20251207_was_min", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "12p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Washington Commanders", "home_team_abbrev": "MIN", @@ -18813,8 +17768,7 @@ "canonical_id": "game_nfl_2026_20251207_pit_bal", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Baltimore Ravens", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "BAL", @@ -18831,8 +17785,7 @@ "canonical_id": "game_nfl_2026_20251207_ind_jax", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Indianapolis Colts", "home_team_abbrev": "JAX", @@ -18849,8 +17802,7 @@ "canonical_id": "game_nfl_2026_20251207_cin_buf", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Buffalo Bills", "away_team": "Cincinnati Bengals", "home_team_abbrev": "BUF", @@ -18867,8 +17819,7 @@ "canonical_id": "game_nfl_2026_20251207_sea_atl", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "Seattle Seahawks", "home_team_abbrev": "ATL", @@ -18885,8 +17836,7 @@ "canonical_id": "game_nhl_2025_20251207_col_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "1p", + "game_datetime_utc": "2025-12-07T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Colorado Avalanche", "home_team_abbrev": "PHI", @@ -18903,8 +17853,7 @@ "canonical_id": "game_nba_2025_20251207_bos_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "3:30p", + "game_datetime_utc": "2025-12-07T20:30:00Z", "home_team": "Toronto Raptors", "away_team": "Boston Celtics", "home_team_abbrev": "TOR", @@ -18921,8 +17870,7 @@ "canonical_id": "game_nfl_2026_20251207_den_lv", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "1:05p", + "game_datetime_utc": "2025-12-07T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "Denver Broncos", "home_team_abbrev": "LV", @@ -18939,8 +17887,7 @@ "canonical_id": "game_nfl_2026_20251207_chi_gb", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "3:25p", + "game_datetime_utc": "2025-12-07T21:25:00Z", "home_team": "Green Bay Packers", "away_team": "Chicago Bears", "home_team_abbrev": "GB", @@ -18957,8 +17904,7 @@ "canonical_id": "game_nfl_2026_20251207_lar_ari", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "2:25p", + "game_datetime_utc": "2025-12-07T21:25:00Z", "home_team": "Arizona Cardinals", "away_team": "Los Angeles Rams", "home_team_abbrev": "ARI", @@ -18975,8 +17921,7 @@ "canonical_id": "game_nhl_2025_20251207_sj_car", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "San Jose Sharks", "home_team_abbrev": "CAR", @@ -18993,8 +17938,7 @@ "canonical_id": "game_nhl_2025_20251207_nyi_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T22:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Islanders", "home_team_abbrev": "FLA", @@ -19011,8 +17955,7 @@ "canonical_id": "game_nba_2025_20251207_den_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Denver Nuggets", "home_team_abbrev": "CHA", @@ -19029,8 +17972,7 @@ "canonical_id": "game_nba_2025_20251207_por_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Portland Blazers", "home_team_abbrev": "MEM", @@ -19047,8 +17989,7 @@ "canonical_id": "game_nhl_2025_20251207_pit_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-07T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "DAL", @@ -19065,8 +18006,7 @@ "canonical_id": "game_nba_2025_20251207_gsw_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Golden State Warriors", "home_team_abbrev": "CHI", @@ -19083,8 +18023,7 @@ "canonical_id": "game_nhl_2025_20251207_cbj_was", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "WAS", @@ -19101,8 +18040,7 @@ "canonical_id": "game_nhl_2025_20251207_vgk_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "New York Rangers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NYR", @@ -19119,8 +18057,7 @@ "canonical_id": "game_nhl_2025_20251207_stl_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "7p", + "game_datetime_utc": "2025-12-08T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "St. Louis Blues", "home_team_abbrev": "MTL", @@ -19137,8 +18074,7 @@ "canonical_id": "game_nba_2025_20251207_lal_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "4:30p", + "game_datetime_utc": "2025-12-08T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHI", @@ -19155,8 +18091,7 @@ "canonical_id": "game_nba_2025_20251207_okc_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-07", - "time": "6p", + "game_datetime_utc": "2025-12-08T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "UTA", @@ -19173,8 +18108,7 @@ "canonical_id": "game_nhl_2025_20251207_chi_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-07", - "time": "5p", + "game_datetime_utc": "2025-12-08T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ANA", @@ -19191,8 +18125,7 @@ "canonical_id": "game_nfl_2026_20251208_hou_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-07", - "time": "7:20p", + "game_datetime_utc": "2025-12-08T01:20:00Z", "home_team": "Kansas City Chiefs", "away_team": "Houston Texans", "home_team_abbrev": "KC", @@ -19209,8 +18142,7 @@ "canonical_id": "game_nba_2025_20251208_sac_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Sacramento Kings", "home_team_abbrev": "IND", @@ -19227,8 +18159,7 @@ "canonical_id": "game_nba_2025_20251208_phx_min", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "6:30p", + "game_datetime_utc": "2025-12-09T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Phoenix Suns", "home_team_abbrev": "MIN", @@ -19245,8 +18176,7 @@ "canonical_id": "game_nhl_2025_20251208_tb_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7:30p", + "game_datetime_utc": "2025-12-09T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "TOR", @@ -19263,8 +18193,7 @@ "canonical_id": "game_nba_2025_20251208_sas_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "San Antonio Spurs", "home_team_abbrev": "NOP", @@ -19281,8 +18210,7 @@ "canonical_id": "game_nfl_2026_20251209_phi_lac", "sport": "NFL", "season": "2025", - "date": "2025-12-08", - "time": "5:15p", + "game_datetime_utc": "2025-12-09T01:15:00Z", "home_team": "Los Angeles Chargers", "away_team": "Philadelphia Eagles", "home_team_abbrev": "LAC", @@ -19299,8 +18227,7 @@ "canonical_id": "game_nhl_2025_20251208_la_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T02:00:00Z", "home_team": "Utah Club", "away_team": "Los Angeles Kings", "home_team_abbrev": "ARI", @@ -19317,8 +18244,7 @@ "canonical_id": "game_nhl_2025_20251208_buf_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Buffalo Sabres", "home_team_abbrev": "CGY", @@ -19335,8 +18261,7 @@ "canonical_id": "game_nhl_2025_20251208_min_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Minnesota Wild", "home_team_abbrev": "SEA", @@ -19353,8 +18278,7 @@ "canonical_id": "game_nhl_2025_20251208_det_van", "sport": "NHL", "season": "2025", - "date": "2025-12-08", - "time": "7p", + "game_datetime_utc": "2025-12-09T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Detroit Red Wings", "home_team_abbrev": "VAN", @@ -19371,8 +18295,7 @@ "canonical_id": "game_nba_2025_20251209_mia_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-09", - "time": "6p", + "game_datetime_utc": "2025-12-09T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Miami Heat", "home_team_abbrev": "ORL", @@ -19389,8 +18312,7 @@ "canonical_id": "game_nhl_2025_20251209_njd_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New Jersey Devils", "home_team_abbrev": "OTT", @@ -19407,8 +18329,7 @@ "canonical_id": "game_nhl_2025_20251209_ana_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Anaheim Ducks", "home_team_abbrev": "PIT", @@ -19425,8 +18346,7 @@ "canonical_id": "game_nhl_2025_20251209_sj_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "San Jose Sharks", "home_team_abbrev": "PHI", @@ -19443,8 +18363,7 @@ "canonical_id": "game_nhl_2025_20251209_vgk_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "New York Islanders", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NYI", @@ -19461,8 +18380,7 @@ "canonical_id": "game_nhl_2025_20251209_tb_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MTL", @@ -19479,8 +18397,7 @@ "canonical_id": "game_nhl_2025_20251209_cbj_car", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7:30p", + "game_datetime_utc": "2025-12-10T00:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CAR", @@ -19497,8 +18414,7 @@ "canonical_id": "game_nhl_2025_20251209_dal_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Dallas Stars", "home_team_abbrev": "WPG", @@ -19515,8 +18431,7 @@ "canonical_id": "game_nhl_2025_20251209_bos_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Boston Bruins", "home_team_abbrev": "STL", @@ -19533,8 +18448,7 @@ "canonical_id": "game_nba_2025_20251209_nyk_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-09", - "time": "8:30p", + "game_datetime_utc": "2025-12-10T01:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -19551,8 +18465,7 @@ "canonical_id": "game_nhl_2025_20251209_buf_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "7p", + "game_datetime_utc": "2025-12-10T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Buffalo Sabres", "home_team_abbrev": "EDM", @@ -19569,8 +18482,7 @@ "canonical_id": "game_nhl_2025_20251209_col_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-09", - "time": "8:30p", + "game_datetime_utc": "2025-12-10T02:30:00Z", "home_team": "Nashville Predators", "away_team": "Colorado Avalanche", "home_team_abbrev": "NSH", @@ -19587,8 +18499,7 @@ "canonical_id": "game_nba_2025_20251210_phx_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -19605,8 +18516,7 @@ "canonical_id": "game_nhl_2025_20251210_nyr_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New York Rangers", "home_team_abbrev": "CHI", @@ -19623,8 +18533,7 @@ "canonical_id": "game_nhl_2025_20251210_det_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "6:30p", + "game_datetime_utc": "2025-12-11T01:30:00Z", "home_team": "Calgary Flames", "away_team": "Detroit Red Wings", "home_team_abbrev": "CGY", @@ -19641,8 +18550,7 @@ "canonical_id": "game_nhl_2025_20251210_fla_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T02:00:00Z", "home_team": "Utah Club", "away_team": "Florida Panthers", "home_team_abbrev": "ARI", @@ -19659,8 +18567,7 @@ "canonical_id": "game_nba_2025_20251210_sas_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -19677,8 +18584,7 @@ "canonical_id": "game_nhl_2025_20251210_la_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-10", - "time": "7p", + "game_datetime_utc": "2025-12-11T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Los Angeles Kings", "home_team_abbrev": "SEA", @@ -19695,8 +18601,7 @@ "canonical_id": "game_nhl_2025_20251211_ana_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "New York Islanders", "away_team": "Anaheim Ducks", "home_team_abbrev": "NYI", @@ -19713,8 +18618,7 @@ "canonical_id": "game_nhl_2025_20251211_tb_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NJ", @@ -19731,8 +18635,7 @@ "canonical_id": "game_nhl_2025_20251211_sj_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "San Jose Sharks", "home_team_abbrev": "TOR", @@ -19749,8 +18652,7 @@ "canonical_id": "game_nhl_2025_20251211_ott_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Ottawa Senators", "home_team_abbrev": "CBJ", @@ -19767,8 +18669,7 @@ "canonical_id": "game_nhl_2025_20251211_car_was", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WAS", @@ -19785,8 +18686,7 @@ "canonical_id": "game_nhl_2025_20251211_vgk_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "PHI", @@ -19803,8 +18703,7 @@ "canonical_id": "game_nhl_2025_20251211_mtl_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7:30p", + "game_datetime_utc": "2025-12-12T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Montreal Canadiens", "home_team_abbrev": "PIT", @@ -19821,8 +18720,7 @@ "canonical_id": "game_nba_2025_20251211_lac_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -19839,8 +18737,7 @@ "canonical_id": "game_nba_2025_20251211_bos_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -19857,8 +18754,7 @@ "canonical_id": "game_nba_2025_20251211_por_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -19875,8 +18771,7 @@ "canonical_id": "game_nhl_2025_20251211_bos_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Boston Bruins", "home_team_abbrev": "WPG", @@ -19893,8 +18788,7 @@ "canonical_id": "game_nhl_2025_20251211_dal_min", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Dallas Stars", "home_team_abbrev": "MIN", @@ -19911,8 +18805,7 @@ "canonical_id": "game_nhl_2025_20251211_stl_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T01:00:00Z", "home_team": "Nashville Predators", "away_team": "St. Louis Blues", "home_team_abbrev": "NSH", @@ -19929,8 +18822,7 @@ "canonical_id": "game_nfl_2026_20251212_atl_tb", "sport": "NFL", "season": "2025", - "date": "2025-12-11", - "time": "8:15p", + "game_datetime_utc": "2025-12-12T01:15:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Atlanta Falcons", "home_team_abbrev": "TB", @@ -19947,8 +18839,7 @@ "canonical_id": "game_nhl_2025_20251211_det_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Detroit Red Wings", "home_team_abbrev": "EDM", @@ -19965,8 +18856,7 @@ "canonical_id": "game_nhl_2025_20251211_fla_col", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7:30p", + "game_datetime_utc": "2025-12-12T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Florida Panthers", "home_team_abbrev": "COL", @@ -19983,8 +18873,7 @@ "canonical_id": "game_nba_2025_20251211_den_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Denver Nuggets", "home_team_abbrev": "SAC", @@ -20001,8 +18890,7 @@ "canonical_id": "game_nhl_2025_20251211_buf_van", "sport": "NHL", "season": "2025", - "date": "2025-12-11", - "time": "7p", + "game_datetime_utc": "2025-12-12T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Buffalo Sabres", "home_team_abbrev": "VAN", @@ -20019,8 +18907,7 @@ "canonical_id": "game_nba_2025_20251212_chi_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Chicago Bulls", "home_team_abbrev": "CHA", @@ -20037,8 +18924,7 @@ "canonical_id": "game_nba_2025_20251212_atl_det", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -20055,8 +18941,7 @@ "canonical_id": "game_nba_2025_20251212_cle_was", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "WAS", @@ -20073,8 +18958,7 @@ "canonical_id": "game_nba_2025_20251212_ind_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "4p", + "game_datetime_utc": "2025-12-13T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Indiana Pacers", "home_team_abbrev": "PHI", @@ -20091,8 +18975,7 @@ "canonical_id": "game_nba_2025_20251212_uta_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Utah Jazz", "home_team_abbrev": "MEM", @@ -20109,8 +18992,7 @@ "canonical_id": "game_nhl_2025_20251212_chi_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Chicago Blackhawks", "home_team_abbrev": "STL", @@ -20127,8 +19009,7 @@ "canonical_id": "game_nba_2025_20251212_brk_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7:30p", + "game_datetime_utc": "2025-12-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Brooklyn Nets", "home_team_abbrev": "DAL", @@ -20145,8 +19026,7 @@ "canonical_id": "game_nhl_2025_20251212_sea_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T02:00:00Z", "home_team": "Utah Club", "away_team": "Seattle Kraken", "home_team_abbrev": "ARI", @@ -20163,8 +19043,7 @@ "canonical_id": "game_nba_2025_20251212_min_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-12", - "time": "7p", + "game_datetime_utc": "2025-12-13T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "GSW", @@ -20181,8 +19060,7 @@ "canonical_id": "game_nhl_2025_20251213_ana_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "12:30p", + "game_datetime_utc": "2025-12-13T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Anaheim Ducks", "home_team_abbrev": "NJ", @@ -20199,8 +19077,7 @@ "canonical_id": "game_nhl_2025_20251213_ott_min", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "1p", + "game_datetime_utc": "2025-12-13T19:00:00Z", "home_team": "Minnesota Wild", "away_team": "Ottawa Senators", "home_team_abbrev": "MIN", @@ -20217,8 +19094,7 @@ "canonical_id": "game_nhl_2025_20251213_sj_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "3p", + "game_datetime_utc": "2025-12-13T20:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "San Jose Sharks", "home_team_abbrev": "PIT", @@ -20235,8 +19111,7 @@ "canonical_id": "game_nhl_2025_20251213_tb_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "3:30p", + "game_datetime_utc": "2025-12-13T20:30:00Z", "home_team": "New York Islanders", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "NYI", @@ -20253,8 +19128,7 @@ "canonical_id": "game_nba_2025_20251213_nyk_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-13", - "time": "5:30p", + "game_datetime_utc": "2025-12-13T22:30:00Z", "home_team": "Orlando Magic", "away_team": "New York Knicks", "home_team_abbrev": "ORL", @@ -20271,8 +19145,7 @@ "canonical_id": "game_nhl_2025_20251213_mtl_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "New York Rangers", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYR", @@ -20289,8 +19162,7 @@ "canonical_id": "game_nhl_2025_20251213_was_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "6p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Washington Capitals", "home_team_abbrev": "WPG", @@ -20307,8 +19179,7 @@ "canonical_id": "game_nhl_2025_20251213_edm_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Edmonton Oilers", "home_team_abbrev": "TOR", @@ -20325,8 +19196,7 @@ "canonical_id": "game_nhl_2025_20251213_car_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PHI", @@ -20343,8 +19213,7 @@ "canonical_id": "game_nhl_2025_20251213_vgk_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CBJ", @@ -20361,8 +19230,7 @@ "canonical_id": "game_nhl_2025_20251213_fla_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Florida Panthers", "home_team_abbrev": "DAL", @@ -20379,8 +19247,7 @@ "canonical_id": "game_nhl_2025_20251213_det_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Detroit Red Wings", "home_team_abbrev": "CHI", @@ -20397,8 +19264,7 @@ "canonical_id": "game_nba_2025_20251213_sas_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-13", - "time": "8p", + "game_datetime_utc": "2025-12-14T02:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -20415,8 +19281,7 @@ "canonical_id": "game_nhl_2025_20251213_nsh_col", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Nashville Predators", "home_team_abbrev": "COL", @@ -20433,8 +19298,7 @@ "canonical_id": "game_nhl_2025_20251213_cgy_la", "sport": "NHL", "season": "2025", - "date": "2025-12-13", - "time": "7p", + "game_datetime_utc": "2025-12-14T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Calgary Flames", "home_team_abbrev": "LA", @@ -20451,8 +19315,7 @@ "canonical_id": "game_nhl_2025_20251214_van_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "12:30p", + "game_datetime_utc": "2025-12-14T17:30:00Z", "home_team": "New Jersey Devils", "away_team": "Vancouver Canucks", "home_team_abbrev": "NJ", @@ -20469,8 +19332,7 @@ "canonical_id": "game_nfl_2026_20251214_was_nyg", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "New York Giants", "away_team": "Washington Commanders", "home_team_abbrev": "NYG", @@ -20487,8 +19349,7 @@ "canonical_id": "game_nfl_2026_20251214_cle_chi", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Chicago Bears", "away_team": "Cleveland Browns", "home_team_abbrev": "CHI", @@ -20505,8 +19366,7 @@ "canonical_id": "game_nfl_2026_20251214_bal_cin", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Baltimore Ravens", "home_team_abbrev": "CIN", @@ -20523,8 +19383,7 @@ "canonical_id": "game_nfl_2026_20251214_lac_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Kansas City Chiefs", "away_team": "Los Angeles Chargers", "home_team_abbrev": "KC", @@ -20541,8 +19400,7 @@ "canonical_id": "game_nfl_2026_20251214_buf_ne", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "New England Patriots", "away_team": "Buffalo Bills", "home_team_abbrev": "NE", @@ -20559,8 +19417,7 @@ "canonical_id": "game_nfl_2026_20251214_lv_phi", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Philadelphia Eagles", "away_team": "Las Vegas Raiders", "home_team_abbrev": "PHI", @@ -20577,8 +19434,7 @@ "canonical_id": "game_nfl_2026_20251214_nyj_jax", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "New York Jets", "home_team_abbrev": "JAX", @@ -20595,8 +19451,7 @@ "canonical_id": "game_nfl_2026_20251214_ari_hou", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "12p", + "game_datetime_utc": "2025-12-14T18:00:00Z", "home_team": "Houston Texans", "away_team": "Arizona Cardinals", "home_team_abbrev": "HOU", @@ -20613,8 +19468,7 @@ "canonical_id": "game_nba_2025_20251214_was_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "3p", + "game_datetime_utc": "2025-12-14T20:00:00Z", "home_team": "Indiana Pacers", "away_team": "Washington Wizards", "home_team_abbrev": "IND", @@ -20631,8 +19485,7 @@ "canonical_id": "game_nhl_2025_20251214_ari_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "3p", + "game_datetime_utc": "2025-12-14T20:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Utah Club", "home_team_abbrev": "PIT", @@ -20649,8 +19502,7 @@ "canonical_id": "game_nba_2025_20251214_cho_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "2:30p", + "game_datetime_utc": "2025-12-14T20:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Charlotte Hornets", "home_team_abbrev": "CLE", @@ -20667,8 +19519,7 @@ "canonical_id": "game_nfl_2026_20251214_car_no", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "3:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "New Orleans Saints", "away_team": "Carolina Panthers", "home_team_abbrev": "NO", @@ -20685,8 +19536,7 @@ "canonical_id": "game_nfl_2026_20251214_det_lar", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Detroit Lions", "home_team_abbrev": "LAR", @@ -20703,8 +19553,7 @@ "canonical_id": "game_nfl_2026_20251214_ind_sea", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Seattle Seahawks", "away_team": "Indianapolis Colts", "home_team_abbrev": "SEA", @@ -20721,8 +19570,7 @@ "canonical_id": "game_nfl_2026_20251214_ten_sf", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "1:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "San Francisco 49ers", "away_team": "Tennessee Titans", "home_team_abbrev": "SF", @@ -20739,8 +19587,7 @@ "canonical_id": "game_nfl_2026_20251214_gb_den", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "2:25p", + "game_datetime_utc": "2025-12-14T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Green Bay Packers", "home_team_abbrev": "DEN", @@ -20757,8 +19604,7 @@ "canonical_id": "game_nhl_2025_20251214_phi_car", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-14T22:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CAR", @@ -20775,8 +19621,7 @@ "canonical_id": "game_nba_2025_20251214_mil_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BKN", @@ -20793,8 +19638,7 @@ "canonical_id": "game_nba_2025_20251214_phi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ATL", @@ -20811,8 +19655,7 @@ "canonical_id": "game_nhl_2025_20251214_bos_min", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-14T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Boston Bruins", "home_team_abbrev": "MIN", @@ -20829,8 +19672,7 @@ "canonical_id": "game_nba_2025_20251214_sac_min", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Sacramento Kings", "home_team_abbrev": "MIN", @@ -20847,8 +19689,7 @@ "canonical_id": "game_nba_2025_20251214_nop_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHI", @@ -20865,8 +19706,7 @@ "canonical_id": "game_nhl_2025_20251214_edm_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "7p", + "game_datetime_utc": "2025-12-15T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Edmonton Oilers", "home_team_abbrev": "MTL", @@ -20883,8 +19723,7 @@ "canonical_id": "game_nba_2025_20251214_lal_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "8p", + "game_datetime_utc": "2025-12-15T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -20901,8 +19740,7 @@ "canonical_id": "game_nhl_2025_20251214_buf_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-14", - "time": "5p", + "game_datetime_utc": "2025-12-15T01:00:00Z", "home_team": "Seattle Kraken", "away_team": "Buffalo Sabres", "home_team_abbrev": "SEA", @@ -20919,8 +19757,7 @@ "canonical_id": "game_nfl_2026_20251215_min_dal", "sport": "NFL", "season": "2025", - "date": "2025-12-14", - "time": "7:20p", + "game_datetime_utc": "2025-12-15T01:20:00Z", "home_team": "Dallas Cowboys", "away_team": "Minnesota Vikings", "home_team_abbrev": "DAL", @@ -20937,8 +19774,7 @@ "canonical_id": "game_nba_2025_20251214_gsw_por", "sport": "NBA", "season": "2025", - "date": "2025-12-14", - "time": "6p", + "game_datetime_utc": "2025-12-15T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Golden State Warriors", "home_team_abbrev": "POR", @@ -20955,8 +19791,7 @@ "canonical_id": "game_nba_2025_20251215_det_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Detroit Pistons", "home_team_abbrev": "BOS", @@ -20973,8 +19808,7 @@ "canonical_id": "game_nhl_2025_20251215_fla_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Florida Panthers", "home_team_abbrev": "TB", @@ -20991,8 +19825,7 @@ "canonical_id": "game_nhl_2025_20251215_ana_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T00:00:00Z", "home_team": "New York Rangers", "away_team": "Anaheim Ducks", "home_team_abbrev": "NYR", @@ -21009,8 +19842,7 @@ "canonical_id": "game_nba_2025_20251215_tor_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T00:30:00Z", "home_team": "Miami Heat", "away_team": "Toronto Raptors", "home_team_abbrev": "MIA", @@ -21027,8 +19859,7 @@ "canonical_id": "game_nhl_2025_20251215_ott_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "6:30p", + "game_datetime_utc": "2025-12-16T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Ottawa Senators", "home_team_abbrev": "WPG", @@ -21045,8 +19876,7 @@ "canonical_id": "game_nhl_2025_20251215_la_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Los Angeles Kings", "home_team_abbrev": "DAL", @@ -21063,8 +19893,7 @@ "canonical_id": "game_nhl_2025_20251215_nsh_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Nashville Predators", "home_team_abbrev": "STL", @@ -21081,8 +19910,7 @@ "canonical_id": "game_nfl_2026_20251216_mia_pit", "sport": "NFL", "season": "2025", - "date": "2025-12-15", - "time": "8:15p", + "game_datetime_utc": "2025-12-16T01:15:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Miami Dolphins", "home_team_abbrev": "PIT", @@ -21099,8 +19927,7 @@ "canonical_id": "game_nba_2025_20251215_dal_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7p", + "game_datetime_utc": "2025-12-16T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Dallas Mavericks", "home_team_abbrev": "UTA", @@ -21117,8 +19944,7 @@ "canonical_id": "game_nba_2025_20251215_hou_den", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -21135,8 +19961,7 @@ "canonical_id": "game_nba_2025_20251215_mem_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-15", - "time": "7:30p", + "game_datetime_utc": "2025-12-16T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAC", @@ -21153,8 +19978,7 @@ "canonical_id": "game_nhl_2025_20251216_ari_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Utah Club", "home_team_abbrev": "BOS", @@ -21171,8 +19995,7 @@ "canonical_id": "game_nhl_2025_20251216_phi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MTL", @@ -21189,8 +20012,7 @@ "canonical_id": "game_nhl_2025_20251216_ana_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Anaheim Ducks", "home_team_abbrev": "CBJ", @@ -21207,8 +20029,7 @@ "canonical_id": "game_nhl_2025_20251216_chi_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Chicago Blackhawks", "home_team_abbrev": "TOR", @@ -21225,8 +20046,7 @@ "canonical_id": "game_nhl_2025_20251216_van_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "New York Rangers", "away_team": "Vancouver Canucks", "home_team_abbrev": "NYR", @@ -21243,8 +20063,7 @@ "canonical_id": "game_nhl_2025_20251216_nyi_det", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New York Islanders", "home_team_abbrev": "DET", @@ -21261,8 +20080,7 @@ "canonical_id": "game_nhl_2025_20251216_edm_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7:30p", + "game_datetime_utc": "2025-12-17T00:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Edmonton Oilers", "home_team_abbrev": "PIT", @@ -21279,8 +20097,7 @@ "canonical_id": "game_nhl_2025_20251216_was_min", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Washington Capitals", "home_team_abbrev": "MIN", @@ -21297,8 +20114,7 @@ "canonical_id": "game_nba_2025_20251216_sas_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-16", - "time": "8:30p", + "game_datetime_utc": "2025-12-17T01:30:00Z", "home_team": "New York Knicks", "away_team": "San Antonio Spurs", "home_team_abbrev": "NYK", @@ -21315,8 +20131,7 @@ "canonical_id": "game_nhl_2025_20251216_col_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Colorado Avalanche", "home_team_abbrev": "SEA", @@ -21333,8 +20148,7 @@ "canonical_id": "game_nhl_2025_20251216_cgy_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-16", - "time": "7p", + "game_datetime_utc": "2025-12-17T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Calgary Flames", "home_team_abbrev": "SJ", @@ -21351,8 +20165,7 @@ "canonical_id": "game_nhl_2025_20251217_la_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Los Angeles Kings", "home_team_abbrev": "FLA", @@ -21369,8 +20182,7 @@ "canonical_id": "game_nhl_2025_20251217_ari_det", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7:30p", + "game_datetime_utc": "2025-12-18T00:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Utah Club", "home_team_abbrev": "DET", @@ -21387,8 +20199,7 @@ "canonical_id": "game_nba_2025_20251217_mem_min", "sport": "NBA", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIN", @@ -21405,8 +20216,7 @@ "canonical_id": "game_nba_2025_20251217_cle_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHI", @@ -21423,8 +20233,7 @@ "canonical_id": "game_nhl_2025_20251217_car_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NSH", @@ -21441,8 +20250,7 @@ "canonical_id": "game_nhl_2025_20251217_wpg_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Winnipeg Jets", "home_team_abbrev": "STL", @@ -21459,8 +20267,7 @@ "canonical_id": "game_nhl_2025_20251217_njd_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-17", - "time": "7p", + "game_datetime_utc": "2025-12-18T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "New Jersey Devils", "home_team_abbrev": "VGK", @@ -21477,8 +20284,7 @@ "canonical_id": "game_nba_2025_20251218_nyk_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "New York Knicks", "home_team_abbrev": "IND", @@ -21495,8 +20301,7 @@ "canonical_id": "game_nba_2025_20251218_atl_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHA", @@ -21513,8 +20318,7 @@ "canonical_id": "game_nhl_2025_20251218_la_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Los Angeles Kings", "home_team_abbrev": "TB", @@ -21531,8 +20335,7 @@ "canonical_id": "game_nhl_2025_20251218_pit_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "OTT", @@ -21549,8 +20352,7 @@ "canonical_id": "game_nhl_2025_20251218_tor_was", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WAS", @@ -21567,8 +20369,7 @@ "canonical_id": "game_nhl_2025_20251218_chi_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MTL", @@ -21585,8 +20386,7 @@ "canonical_id": "game_nhl_2025_20251218_edm_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Edmonton Oilers", "home_team_abbrev": "BOS", @@ -21603,8 +20403,7 @@ "canonical_id": "game_nhl_2025_20251218_min_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Minnesota Wild", "home_team_abbrev": "CBJ", @@ -21621,8 +20420,7 @@ "canonical_id": "game_nba_2025_20251218_mia_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Miami Heat", "home_team_abbrev": "BKN", @@ -21639,8 +20437,7 @@ "canonical_id": "game_nhl_2025_20251218_phi_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BUF", @@ -21657,8 +20454,7 @@ "canonical_id": "game_nba_2025_20251218_tor_mil", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Toronto Raptors", "home_team_abbrev": "MIL", @@ -21675,8 +20471,7 @@ "canonical_id": "game_nba_2025_20251218_hou_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Houston Rockets", "home_team_abbrev": "NOP", @@ -21693,8 +20488,7 @@ "canonical_id": "game_nba_2025_20251218_lac_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Clippers", "home_team_abbrev": "OKC", @@ -21711,8 +20505,7 @@ "canonical_id": "game_nba_2025_20251218_was_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Washington Wizards", "home_team_abbrev": "SAS", @@ -21729,8 +20522,7 @@ "canonical_id": "game_nhl_2025_20251218_nyr_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "New York Rangers", "home_team_abbrev": "STL", @@ -21747,8 +20539,7 @@ "canonical_id": "game_nfl_2026_20251219_lar_sea", "sport": "NFL", "season": "2025", - "date": "2025-12-18", - "time": "5:15p", + "game_datetime_utc": "2025-12-19T01:15:00Z", "home_team": "Seattle Seahawks", "away_team": "Los Angeles Rams", "home_team_abbrev": "SEA", @@ -21765,8 +20556,7 @@ "canonical_id": "game_nba_2025_20251218_det_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7:30p", + "game_datetime_utc": "2025-12-19T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Detroit Pistons", "home_team_abbrev": "DAL", @@ -21783,8 +20573,7 @@ "canonical_id": "game_nba_2025_20251218_orl_den", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Orlando Magic", "home_team_abbrev": "DEN", @@ -21801,8 +20590,7 @@ "canonical_id": "game_nba_2025_20251218_lal_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Lakers", "home_team_abbrev": "UTA", @@ -21819,8 +20607,7 @@ "canonical_id": "game_nba_2025_20251218_gsw_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "9p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Golden State Warriors", "home_team_abbrev": "PHX", @@ -21837,8 +20624,7 @@ "canonical_id": "game_nhl_2025_20251218_sea_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Seattle Kraken", "home_team_abbrev": "CGY", @@ -21855,8 +20641,7 @@ "canonical_id": "game_nba_2025_20251218_sac_por", "sport": "NBA", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Sacramento Kings", "home_team_abbrev": "POR", @@ -21873,8 +20658,7 @@ "canonical_id": "game_nhl_2025_20251218_dal_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-18", - "time": "7p", + "game_datetime_utc": "2025-12-19T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Dallas Stars", "home_team_abbrev": "SJ", @@ -21891,8 +20675,7 @@ "canonical_id": "game_nba_2025_20251219_phi_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "New York Knicks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NYK", @@ -21909,8 +20692,7 @@ "canonical_id": "game_nba_2025_20251219_mia_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Miami Heat", "home_team_abbrev": "BOS", @@ -21927,8 +20709,7 @@ "canonical_id": "game_nhl_2025_20251219_van_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "New York Islanders", "away_team": "Vancouver Canucks", "home_team_abbrev": "NYI", @@ -21945,8 +20726,7 @@ "canonical_id": "game_nhl_2025_20251219_car_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "FLA", @@ -21963,8 +20743,7 @@ "canonical_id": "game_nba_2025_20251219_chi_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "6:30p", + "game_datetime_utc": "2025-12-20T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Chicago Bulls", "home_team_abbrev": "CLE", @@ -21981,8 +20760,7 @@ "canonical_id": "game_nba_2025_20251219_sas_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "7:30p", + "game_datetime_utc": "2025-12-20T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "San Antonio Spurs", "home_team_abbrev": "ATL", @@ -21999,8 +20777,7 @@ "canonical_id": "game_nhl_2025_20251219_wpg_col", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Winnipeg Jets", "home_team_abbrev": "COL", @@ -22017,8 +20794,7 @@ "canonical_id": "game_nhl_2025_20251219_njd_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T02:00:00Z", "home_team": "Utah Club", "away_team": "New Jersey Devils", "home_team_abbrev": "ARI", @@ -22035,8 +20811,7 @@ "canonical_id": "game_nba_2025_20251219_okc_min", "sport": "NBA", "season": "2025", - "date": "2025-12-19", - "time": "8:30p", + "game_datetime_utc": "2025-12-20T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIN", @@ -22053,8 +20828,7 @@ "canonical_id": "game_nhl_2025_20251219_dal_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-19", - "time": "7p", + "game_datetime_utc": "2025-12-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Dallas Stars", "home_team_abbrev": "ANA", @@ -22071,8 +20845,7 @@ "canonical_id": "game_nhl_2025_20251220_det_was", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "12:30p", + "game_datetime_utc": "2025-12-20T17:30:00Z", "home_team": "Washington Capitals", "away_team": "Detroit Red Wings", "home_team_abbrev": "WAS", @@ -22089,8 +20862,7 @@ "canonical_id": "game_nhl_2025_20251220_phi_nyr", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "12:30p", + "game_datetime_utc": "2025-12-20T17:30:00Z", "home_team": "New York Rangers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYR", @@ -22107,8 +20879,7 @@ "canonical_id": "game_nhl_2025_20251220_chi_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "3p", + "game_datetime_utc": "2025-12-20T20:00:00Z", "home_team": "Ottawa Senators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "OTT", @@ -22125,8 +20896,7 @@ "canonical_id": "game_nhl_2025_20251220_edm_min", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "2p", + "game_datetime_utc": "2025-12-20T20:00:00Z", "home_team": "Minnesota Wild", "away_team": "Edmonton Oilers", "home_team_abbrev": "MIN", @@ -22143,8 +20913,7 @@ "canonical_id": "game_nba_2025_20251220_hou_den", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "3p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -22161,8 +20930,7 @@ "canonical_id": "game_nfl_2026_20251220_phi_was", "sport": "NFL", "season": "2025", - "date": "2025-12-20", - "time": "5p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Washington Commanders", "away_team": "Philadelphia Eagles", "home_team_abbrev": "WAS", @@ -22179,8 +20947,7 @@ "canonical_id": "game_nhl_2025_20251220_nyi_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "5p", + "game_datetime_utc": "2025-12-20T22:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Islanders", "home_team_abbrev": "BUF", @@ -22197,8 +20964,7 @@ "canonical_id": "game_nhl_2025_20251220_stl_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-20T23:00:00Z", "home_team": "Florida Panthers", "away_team": "St. Louis Blues", "home_team_abbrev": "FLA", @@ -22215,8 +20981,7 @@ "canonical_id": "game_nba_2025_20251220_ind_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Indiana Pacers", "home_team_abbrev": "NOP", @@ -22233,8 +20998,7 @@ "canonical_id": "game_nba_2025_20251220_bos_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Boston Celtics", "home_team_abbrev": "TOR", @@ -22251,8 +21015,7 @@ "canonical_id": "game_nba_2025_20251220_dal_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "4p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHI", @@ -22269,8 +21032,7 @@ "canonical_id": "game_nhl_2025_20251220_van_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Vancouver Canucks", "home_team_abbrev": "BOS", @@ -22287,8 +21049,7 @@ "canonical_id": "game_nhl_2025_20251220_car_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TB", @@ -22305,8 +21066,7 @@ "canonical_id": "game_nhl_2025_20251220_tor_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "6p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NSH", @@ -22323,8 +21083,7 @@ "canonical_id": "game_nhl_2025_20251220_pit_mtl", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "MTL", @@ -22341,8 +21100,7 @@ "canonical_id": "game_nba_2025_20251220_cho_det", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Charlotte Hornets", "home_team_abbrev": "DET", @@ -22359,8 +21117,7 @@ "canonical_id": "game_nba_2025_20251220_was_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Washington Wizards", "home_team_abbrev": "MEM", @@ -22377,8 +21134,7 @@ "canonical_id": "game_nfl_2026_20251221_gb_chi", "sport": "NFL", "season": "2025", - "date": "2025-12-20", - "time": "7:20p", + "game_datetime_utc": "2025-12-21T01:20:00Z", "home_team": "Chicago Bears", "away_team": "Green Bay Packers", "home_team_abbrev": "CHI", @@ -22395,8 +21151,7 @@ "canonical_id": "game_nba_2025_20251220_phx_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "5:30p", + "game_datetime_utc": "2025-12-21T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Phoenix Suns", "home_team_abbrev": "GSW", @@ -22413,8 +21168,7 @@ "canonical_id": "game_nba_2025_20251220_orl_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Orlando Magic", "home_team_abbrev": "UTA", @@ -22431,8 +21185,7 @@ "canonical_id": "game_nba_2025_20251220_por_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Portland Blazers", "home_team_abbrev": "SAC", @@ -22449,8 +21202,7 @@ "canonical_id": "game_nhl_2025_20251220_vgk_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "8p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CGY", @@ -22467,8 +21219,7 @@ "canonical_id": "game_nhl_2025_20251220_sea_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Seattle Kraken", "home_team_abbrev": "SJ", @@ -22485,8 +21236,7 @@ "canonical_id": "game_nhl_2025_20251220_cbj_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-20", - "time": "7p", + "game_datetime_utc": "2025-12-21T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "ANA", @@ -22503,8 +21253,7 @@ "canonical_id": "game_nba_2025_20251220_lal_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-20", - "time": "7:30p", + "game_datetime_utc": "2025-12-21T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "LAC", @@ -22521,8 +21270,7 @@ "canonical_id": "game_nfl_2026_20251221_buf_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Buffalo Bills", "home_team_abbrev": "CLE", @@ -22539,8 +21287,7 @@ "canonical_id": "game_nfl_2026_20251221_tb_car", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "CAR", @@ -22557,8 +21304,7 @@ "canonical_id": "game_nfl_2026_20251221_min_nyg", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "New York Giants", "away_team": "Minnesota Vikings", "home_team_abbrev": "NYG", @@ -22575,8 +21321,7 @@ "canonical_id": "game_nfl_2026_20251221_nyj_no", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "New Orleans Saints", "away_team": "New York Jets", "home_team_abbrev": "NO", @@ -22593,8 +21338,7 @@ "canonical_id": "game_nfl_2026_20251221_cin_mia", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Cincinnati Bengals", "home_team_abbrev": "MIA", @@ -22611,8 +21355,7 @@ "canonical_id": "game_nfl_2026_20251221_kc_ten", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "Kansas City Chiefs", "home_team_abbrev": "TEN", @@ -22629,8 +21372,7 @@ "canonical_id": "game_nfl_2026_20251221_lac_dal", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "12p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Dallas Cowboys", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DAL", @@ -22647,8 +21389,7 @@ "canonical_id": "game_nhl_2025_20251221_was_det", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "1p", + "game_datetime_utc": "2025-12-21T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Washington Capitals", "home_team_abbrev": "DET", @@ -22665,8 +21406,7 @@ "canonical_id": "game_nba_2025_20251221_chi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "3:30p", + "game_datetime_utc": "2025-12-21T20:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Chicago Bulls", "home_team_abbrev": "ATL", @@ -22683,8 +21423,7 @@ "canonical_id": "game_nfl_2026_20251221_atl_ari", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "2:05p", + "game_datetime_utc": "2025-12-21T21:05:00Z", "home_team": "Arizona Cardinals", "away_team": "Atlanta Falcons", "home_team_abbrev": "ARI", @@ -22701,8 +21440,7 @@ "canonical_id": "game_nfl_2026_20251221_jax_den", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "2:05p", + "game_datetime_utc": "2025-12-21T21:05:00Z", "home_team": "Denver Broncos", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "DEN", @@ -22719,8 +21457,7 @@ "canonical_id": "game_nfl_2026_20251221_lv_hou", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "3:25p", + "game_datetime_utc": "2025-12-21T21:25:00Z", "home_team": "Houston Texans", "away_team": "Las Vegas Raiders", "home_team_abbrev": "HOU", @@ -22737,8 +21474,7 @@ "canonical_id": "game_nfl_2026_20251221_pit_det", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "4:25p", + "game_datetime_utc": "2025-12-21T21:25:00Z", "home_team": "Detroit Lions", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "DET", @@ -22755,8 +21491,7 @@ "canonical_id": "game_nba_2025_20251221_mia_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "New York Knicks", "away_team": "Miami Heat", "home_team_abbrev": "NYK", @@ -22773,8 +21508,7 @@ "canonical_id": "game_nba_2025_20251221_tor_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Toronto Raptors", "home_team_abbrev": "BKN", @@ -22791,8 +21525,7 @@ "canonical_id": "game_nhl_2025_20251221_col_min", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "5p", + "game_datetime_utc": "2025-12-21T23:00:00Z", "home_team": "Minnesota Wild", "away_team": "Colorado Avalanche", "home_team_abbrev": "MIN", @@ -22809,8 +21542,7 @@ "canonical_id": "game_nba_2025_20251221_sas_was", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Washington Wizards", "away_team": "San Antonio Spurs", "home_team_abbrev": "WAS", @@ -22827,8 +21559,7 @@ "canonical_id": "game_nba_2025_20251221_mil_min", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIN", @@ -22845,8 +21576,7 @@ "canonical_id": "game_nhl_2025_20251221_ott_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Ottawa Senators", "home_team_abbrev": "BOS", @@ -22863,8 +21593,7 @@ "canonical_id": "game_nhl_2025_20251221_wpg_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "5p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Utah Club", "away_team": "Winnipeg Jets", "home_team_abbrev": "ARI", @@ -22881,8 +21610,7 @@ "canonical_id": "game_nhl_2025_20251221_mtl_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Montreal Canadiens", "home_team_abbrev": "PIT", @@ -22899,8 +21627,7 @@ "canonical_id": "game_nhl_2025_20251221_nyr_nsh", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Nashville Predators", "away_team": "New York Rangers", "home_team_abbrev": "NSH", @@ -22917,8 +21644,7 @@ "canonical_id": "game_nhl_2025_20251221_buf_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Buffalo Sabres", "home_team_abbrev": "NJ", @@ -22935,8 +21661,7 @@ "canonical_id": "game_nhl_2025_20251221_tor_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DAL", @@ -22953,8 +21678,7 @@ "canonical_id": "game_nhl_2025_20251221_vgk_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-21", - "time": "6p", + "game_datetime_utc": "2025-12-22T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "EDM", @@ -22971,8 +21695,7 @@ "canonical_id": "game_nfl_2026_20251222_ne_bal", "sport": "NFL", "season": "2025", - "date": "2025-12-21", - "time": "8:20p", + "game_datetime_utc": "2025-12-22T01:20:00Z", "home_team": "Baltimore Ravens", "away_team": "New England Patriots", "home_team_abbrev": "BAL", @@ -22989,8 +21712,7 @@ "canonical_id": "game_nba_2025_20251221_hou_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-21", - "time": "7p", + "game_datetime_utc": "2025-12-22T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Houston Rockets", "home_team_abbrev": "SAC", @@ -23007,8 +21729,7 @@ "canonical_id": "game_nba_2025_20251222_cho_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "6p", + "game_datetime_utc": "2025-12-23T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Charlotte Hornets", "home_team_abbrev": "CLE", @@ -23025,8 +21746,7 @@ "canonical_id": "game_nhl_2025_20251222_stl_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "St. Louis Blues", "home_team_abbrev": "TB", @@ -23043,8 +21763,7 @@ "canonical_id": "game_nba_2025_20251222_ind_bos", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7:30p", + "game_datetime_utc": "2025-12-23T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Indiana Pacers", "home_team_abbrev": "BOS", @@ -23061,8 +21780,7 @@ "canonical_id": "game_nhl_2025_20251222_van_phi", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7:30p", + "game_datetime_utc": "2025-12-23T00:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Vancouver Canucks", "home_team_abbrev": "PHI", @@ -23079,8 +21797,7 @@ "canonical_id": "game_nba_2025_20251222_dal_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Dallas Mavericks", "home_team_abbrev": "NOP", @@ -23097,8 +21814,7 @@ "canonical_id": "game_nfl_2026_20251223_sf_ind", "sport": "NFL", "season": "2025", - "date": "2025-12-22", - "time": "8:15p", + "game_datetime_utc": "2025-12-23T01:15:00Z", "home_team": "Indianapolis Colts", "away_team": "San Francisco 49ers", "home_team_abbrev": "IND", @@ -23115,8 +21831,7 @@ "canonical_id": "game_nba_2025_20251222_uta_den", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Utah Jazz", "home_team_abbrev": "DEN", @@ -23133,8 +21848,7 @@ "canonical_id": "game_nba_2025_20251222_mem_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "8:30p", + "game_datetime_utc": "2025-12-23T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Memphis Grizzlies", "home_team_abbrev": "OKC", @@ -23151,8 +21865,7 @@ "canonical_id": "game_nba_2025_20251222_orl_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Orlando Magic", "home_team_abbrev": "GSW", @@ -23169,8 +21882,7 @@ "canonical_id": "game_nba_2025_20251222_det_por", "sport": "NBA", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Detroit Pistons", "home_team_abbrev": "POR", @@ -23187,8 +21899,7 @@ "canonical_id": "game_nhl_2025_20251222_sea_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Seattle Kraken", "home_team_abbrev": "ANA", @@ -23205,8 +21916,7 @@ "canonical_id": "game_nhl_2025_20251222_cbj_la", "sport": "NHL", "season": "2025", - "date": "2025-12-22", - "time": "7p", + "game_datetime_utc": "2025-12-23T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "LA", @@ -23223,8 +21933,7 @@ "canonical_id": "game_nhl_2025_20251223_pit_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "4p", + "game_datetime_utc": "2025-12-23T21:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TOR", @@ -23241,8 +21950,7 @@ "canonical_id": "game_nhl_2025_20251223_dal_det", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "6:30p", + "game_datetime_utc": "2025-12-23T23:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Dallas Stars", "home_team_abbrev": "DET", @@ -23259,8 +21967,7 @@ "canonical_id": "game_nba_2025_20251223_was_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Washington Wizards", "home_team_abbrev": "CHA", @@ -23277,8 +21984,7 @@ "canonical_id": "game_nba_2025_20251223_brk_phi", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "4p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHI", @@ -23295,8 +22001,7 @@ "canonical_id": "game_nhl_2025_20251223_buf_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Buffalo Sabres", "home_team_abbrev": "OTT", @@ -23313,8 +22018,7 @@ "canonical_id": "game_nhl_2025_20251223_mtl_bos", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Montreal Canadiens", "home_team_abbrev": "BOS", @@ -23331,8 +22035,7 @@ "canonical_id": "game_nhl_2025_20251223_njd_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "New York Islanders", "away_team": "New Jersey Devils", "home_team_abbrev": "NYI", @@ -23349,8 +22052,7 @@ "canonical_id": "game_nhl_2025_20251223_nyr_was", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Rangers", "home_team_abbrev": "WAS", @@ -23367,8 +22069,7 @@ "canonical_id": "game_nhl_2025_20251223_fla_car", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Florida Panthers", "home_team_abbrev": "CAR", @@ -23385,8 +22086,7 @@ "canonical_id": "game_nba_2025_20251223_nop_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "6:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CLE", @@ -23403,8 +22103,7 @@ "canonical_id": "game_nba_2025_20251223_tor_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Miami Heat", "away_team": "Toronto Raptors", "home_team_abbrev": "MIA", @@ -23421,8 +22120,7 @@ "canonical_id": "game_nba_2025_20251223_mil_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "IND", @@ -23439,8 +22137,7 @@ "canonical_id": "game_nba_2025_20251223_chi_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Chicago Bulls", "home_team_abbrev": "ATL", @@ -23457,8 +22154,7 @@ "canonical_id": "game_nba_2025_20251223_nyk_min", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New York Knicks", "home_team_abbrev": "MIN", @@ -23475,8 +22171,7 @@ "canonical_id": "game_nba_2025_20251223_den_dal", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Denver Nuggets", "home_team_abbrev": "DAL", @@ -23493,8 +22188,7 @@ "canonical_id": "game_nhl_2025_20251223_nsh_min", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Nashville Predators", "home_team_abbrev": "MIN", @@ -23511,8 +22205,7 @@ "canonical_id": "game_nba_2025_20251223_okc_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T01:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAS", @@ -23529,8 +22222,7 @@ "canonical_id": "game_nba_2025_20251223_lal_phx", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "9p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -23547,8 +22239,7 @@ "canonical_id": "game_nba_2025_20251223_mem_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Memphis Grizzlies", "home_team_abbrev": "UTA", @@ -23565,8 +22256,7 @@ "canonical_id": "game_nhl_2025_20251223_ari_col", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Utah Club", "home_team_abbrev": "COL", @@ -23583,8 +22273,7 @@ "canonical_id": "game_nhl_2025_20251223_phi_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "8p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CHI", @@ -23601,8 +22290,7 @@ "canonical_id": "game_nhl_2025_20251223_cgy_edm", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Calgary Flames", "home_team_abbrev": "EDM", @@ -23619,8 +22307,7 @@ "canonical_id": "game_nba_2025_20251223_det_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Detroit Pistons", "home_team_abbrev": "SAC", @@ -23637,8 +22324,7 @@ "canonical_id": "game_nba_2025_20251223_orl_por", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Orlando Magic", "home_team_abbrev": "POR", @@ -23655,8 +22341,7 @@ "canonical_id": "game_nhl_2025_20251223_sea_la", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Seattle Kraken", "home_team_abbrev": "LA", @@ -23673,8 +22358,7 @@ "canonical_id": "game_nhl_2025_20251223_sj_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-23", - "time": "7p", + "game_datetime_utc": "2025-12-24T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "San Jose Sharks", "home_team_abbrev": "VGK", @@ -23691,8 +22375,7 @@ "canonical_id": "game_nba_2025_20251223_hou_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-23", - "time": "7:30p", + "game_datetime_utc": "2025-12-24T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Houston Rockets", "home_team_abbrev": "LAC", @@ -23709,8 +22392,7 @@ "canonical_id": "game_nba_2025_20251225_cle_nyk", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "12p", + "game_datetime_utc": "2025-12-25T17:00:00Z", "home_team": "New York Knicks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NYK", @@ -23727,8 +22409,7 @@ "canonical_id": "game_nfl_2026_20251225_dal_was", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "1p", + "game_datetime_utc": "2025-12-25T18:00:00Z", "home_team": "Washington Commanders", "away_team": "Dallas Cowboys", "home_team_abbrev": "WAS", @@ -23745,8 +22426,7 @@ "canonical_id": "game_nba_2025_20251225_sas_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "1:30p", + "game_datetime_utc": "2025-12-25T19:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -23763,8 +22443,7 @@ "canonical_id": "game_nfl_2026_20251225_det_min", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "3:30p", + "game_datetime_utc": "2025-12-25T21:30:00Z", "home_team": "Minnesota Vikings", "away_team": "Detroit Lions", "home_team_abbrev": "MIN", @@ -23781,8 +22460,7 @@ "canonical_id": "game_nba_2025_20251225_dal_gsw", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "2p", + "game_datetime_utc": "2025-12-25T22:00:00Z", "home_team": "Golden State Warriors", "away_team": "Dallas Mavericks", "home_team_abbrev": "GSW", @@ -23799,8 +22477,7 @@ "canonical_id": "game_nba_2025_20251225_hou_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "5p", + "game_datetime_utc": "2025-12-26T01:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Houston Rockets", "home_team_abbrev": "LAL", @@ -23817,8 +22494,7 @@ "canonical_id": "game_nfl_2026_20251226_den_kc", "sport": "NFL", "season": "2025", - "date": "2025-12-25", - "time": "7:15p", + "game_datetime_utc": "2025-12-26T01:15:00Z", "home_team": "Kansas City Chiefs", "away_team": "Denver Broncos", "home_team_abbrev": "KC", @@ -23835,8 +22511,7 @@ "canonical_id": "game_nba_2025_20251225_min_den", "sport": "NBA", "season": "2025", - "date": "2025-12-25", - "time": "8:30p", + "game_datetime_utc": "2025-12-26T03:30:00Z", "home_team": "Denver Nuggets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DEN", @@ -23853,8 +22528,7 @@ "canonical_id": "game_nba_2025_20251226_tor_was", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Toronto Raptors", "home_team_abbrev": "WAS", @@ -23871,8 +22545,7 @@ "canonical_id": "game_nba_2025_20251226_bos_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Boston Celtics", "home_team_abbrev": "IND", @@ -23889,8 +22562,7 @@ "canonical_id": "game_nba_2025_20251226_mia_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Miami Heat", "home_team_abbrev": "ATL", @@ -23907,8 +22579,7 @@ "canonical_id": "game_nba_2025_20251226_cho_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Charlotte Hornets", "home_team_abbrev": "ORL", @@ -23925,8 +22596,7 @@ "canonical_id": "game_nba_2025_20251226_phi_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "6:30p", + "game_datetime_utc": "2025-12-27T00:30:00Z", "home_team": "Chicago Bulls", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHI", @@ -23943,8 +22613,7 @@ "canonical_id": "game_nba_2025_20251226_mil_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MEM", @@ -23961,8 +22630,7 @@ "canonical_id": "game_nba_2025_20251226_phx_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Phoenix Suns", "home_team_abbrev": "NOP", @@ -23979,8 +22647,7 @@ "canonical_id": "game_nba_2025_20251226_det_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7:30p", + "game_datetime_utc": "2025-12-27T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Detroit Pistons", "home_team_abbrev": "UTA", @@ -23997,8 +22664,7 @@ "canonical_id": "game_nba_2025_20251226_lac_por", "sport": "NBA", "season": "2025", - "date": "2025-12-26", - "time": "7p", + "game_datetime_utc": "2025-12-27T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "POR", @@ -24015,8 +22681,7 @@ "canonical_id": "game_nfl_2026_20251227_hou_lac", "sport": "NFL", "season": "2025", - "date": "2025-12-27", - "time": "1:30p", + "game_datetime_utc": "2025-12-27T21:30:00Z", "home_team": "Los Angeles Chargers", "away_team": "Houston Texans", "home_team_abbrev": "LAC", @@ -24033,8 +22698,7 @@ "canonical_id": "game_nba_2025_20251227_dal_sac", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "2p", + "game_datetime_utc": "2025-12-27T22:00:00Z", "home_team": "Sacramento Kings", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAC", @@ -24051,8 +22715,7 @@ "canonical_id": "game_nhl_2025_20251227_nyr_nyi", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-27T23:00:00Z", "home_team": "New York Islanders", "away_team": "New York Rangers", "home_team_abbrev": "NYI", @@ -24069,8 +22732,7 @@ "canonical_id": "game_nba_2025_20251227_den_orl", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Denver Nuggets", "home_team_abbrev": "ORL", @@ -24087,8 +22749,7 @@ "canonical_id": "game_nba_2025_20251227_phx_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Phoenix Suns", "home_team_abbrev": "NOP", @@ -24105,8 +22766,7 @@ "canonical_id": "game_nhl_2025_20251227_min_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Minnesota Wild", "home_team_abbrev": "WPG", @@ -24123,8 +22783,7 @@ "canonical_id": "game_nhl_2025_20251227_ott_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Ottawa Senators", "home_team_abbrev": "TOR", @@ -24141,8 +22800,7 @@ "canonical_id": "game_nhl_2025_20251227_was_njd", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Washington Capitals", "home_team_abbrev": "NJ", @@ -24159,8 +22817,7 @@ "canonical_id": "game_nhl_2025_20251227_tb_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "FLA", @@ -24177,8 +22834,7 @@ "canonical_id": "game_nhl_2025_20251227_det_car", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Detroit Red Wings", "home_team_abbrev": "CAR", @@ -24195,8 +22851,7 @@ "canonical_id": "game_nhl_2025_20251227_bos_buf", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Boston Bruins", "home_team_abbrev": "BUF", @@ -24213,8 +22868,7 @@ "canonical_id": "game_nba_2025_20251227_cle_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "HOU", @@ -24231,8 +22885,7 @@ "canonical_id": "game_nba_2025_20251227_nyk_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "New York Knicks", "home_team_abbrev": "ATL", @@ -24249,8 +22902,7 @@ "canonical_id": "game_nba_2025_20251227_mil_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHI", @@ -24267,8 +22919,7 @@ "canonical_id": "game_nba_2025_20251227_uta_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Utah Jazz", "home_team_abbrev": "SAS", @@ -24285,8 +22936,7 @@ "canonical_id": "game_nba_2025_20251227_brk_min", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIN", @@ -24303,8 +22953,7 @@ "canonical_id": "game_nba_2025_20251227_ind_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Miami Heat", "away_team": "Indiana Pacers", "home_team_abbrev": "MIA", @@ -24321,8 +22970,7 @@ "canonical_id": "game_nfl_2026_20251228_bal_gb", "sport": "NFL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Green Bay Packers", "away_team": "Baltimore Ravens", "home_team_abbrev": "GB", @@ -24339,8 +22987,7 @@ "canonical_id": "game_nhl_2025_20251227_nsh_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Nashville Predators", "home_team_abbrev": "STL", @@ -24357,8 +23004,7 @@ "canonical_id": "game_nhl_2025_20251227_chi_dal", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DAL", @@ -24375,8 +23021,7 @@ "canonical_id": "game_nhl_2025_20251227_ana_la", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "6p", + "game_datetime_utc": "2025-12-28T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Anaheim Ducks", "home_team_abbrev": "LA", @@ -24393,8 +23038,7 @@ "canonical_id": "game_nhl_2025_20251227_edm_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "8p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Edmonton Oilers", "home_team_abbrev": "CGY", @@ -24411,8 +23055,7 @@ "canonical_id": "game_nhl_2025_20251227_sj_van", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "San Jose Sharks", "home_team_abbrev": "VAN", @@ -24429,8 +23072,7 @@ "canonical_id": "game_nhl_2025_20251227_col_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-27", - "time": "7p", + "game_datetime_utc": "2025-12-28T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Colorado Avalanche", "home_team_abbrev": "VGK", @@ -24447,8 +23089,7 @@ "canonical_id": "game_nfl_2026_20251228_jax_ind", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Indianapolis Colts", "away_team": "Jacksonville Jaguars", "home_team_abbrev": "IND", @@ -24465,8 +23106,7 @@ "canonical_id": "game_nfl_2026_20251228_no_ten", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "12p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Tennessee Titans", "away_team": "New Orleans Saints", "home_team_abbrev": "TEN", @@ -24483,8 +23123,7 @@ "canonical_id": "game_nfl_2026_20251228_tb_mia", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Miami Dolphins", "away_team": "Tampa Bay Buccaneers", "home_team_abbrev": "MIA", @@ -24501,8 +23140,7 @@ "canonical_id": "game_nfl_2026_20251228_ne_nyj", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "New York Jets", "away_team": "New England Patriots", "home_team_abbrev": "NYJ", @@ -24519,8 +23157,7 @@ "canonical_id": "game_nfl_2026_20251228_pit_cle", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Cleveland Browns", "away_team": "Pittsburgh Steelers", "home_team_abbrev": "CLE", @@ -24537,8 +23174,7 @@ "canonical_id": "game_nfl_2026_20251228_ari_cin", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Arizona Cardinals", "home_team_abbrev": "CIN", @@ -24555,8 +23191,7 @@ "canonical_id": "game_nfl_2026_20251228_sea_car", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1p", + "game_datetime_utc": "2025-12-28T18:00:00Z", "home_team": "Carolina Panthers", "away_team": "Seattle Seahawks", "home_team_abbrev": "CAR", @@ -24573,8 +23208,7 @@ "canonical_id": "game_nba_2025_20251228_phi_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "2:30p", + "game_datetime_utc": "2025-12-28T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Philadelphia 76ers", "home_team_abbrev": "OKC", @@ -24591,8 +23225,7 @@ "canonical_id": "game_nba_2025_20251228_gsw_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "3:30p", + "game_datetime_utc": "2025-12-28T20:30:00Z", "home_team": "Toronto Raptors", "away_team": "Golden State Warriors", "home_team_abbrev": "TOR", @@ -24609,8 +23242,7 @@ "canonical_id": "game_nfl_2026_20251228_nyg_lv", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "1:05p", + "game_datetime_utc": "2025-12-28T21:05:00Z", "home_team": "Las Vegas Raiders", "away_team": "New York Giants", "home_team_abbrev": "LV", @@ -24627,8 +23259,7 @@ "canonical_id": "game_nfl_2026_20251228_phi_buf", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "4:25p", + "game_datetime_utc": "2025-12-28T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "Philadelphia Eagles", "home_team_abbrev": "BUF", @@ -24645,8 +23276,7 @@ "canonical_id": "game_nhl_2025_20251228_nyi_cbj", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-28T22:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Islanders", "home_team_abbrev": "CBJ", @@ -24663,8 +23293,7 @@ "canonical_id": "game_nhl_2025_20251228_mtl_tb", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-28T22:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Montreal Canadiens", "home_team_abbrev": "TB", @@ -24681,8 +23310,7 @@ "canonical_id": "game_nba_2025_20251228_mem_was", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-28T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Memphis Grizzlies", "home_team_abbrev": "WAS", @@ -24699,8 +23327,7 @@ "canonical_id": "game_nba_2025_20251228_bos_por", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "3p", + "game_datetime_utc": "2025-12-28T23:00:00Z", "home_team": "Portland Blazers", "away_team": "Boston Celtics", "home_team_abbrev": "POR", @@ -24717,8 +23344,7 @@ "canonical_id": "game_nhl_2025_20251228_pit_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-29T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CHI", @@ -24735,8 +23361,7 @@ "canonical_id": "game_nhl_2025_20251228_tor_det", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "7p", + "game_datetime_utc": "2025-12-29T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "DET", @@ -24753,8 +23378,7 @@ "canonical_id": "game_nhl_2025_20251228_phi_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-28", - "time": "5p", + "game_datetime_utc": "2025-12-29T01:00:00Z", "home_team": "Seattle Kraken", "away_team": "Philadelphia Flyers", "home_team_abbrev": "SEA", @@ -24771,8 +23395,7 @@ "canonical_id": "game_nfl_2026_20251229_chi_sf", "sport": "NFL", "season": "2025", - "date": "2025-12-28", - "time": "5:20p", + "game_datetime_utc": "2025-12-29T01:20:00Z", "home_team": "San Francisco 49ers", "away_team": "Chicago Bears", "home_team_abbrev": "SF", @@ -24789,8 +23412,7 @@ "canonical_id": "game_nba_2025_20251228_det_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6p", + "game_datetime_utc": "2025-12-29T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Detroit Pistons", "home_team_abbrev": "LAC", @@ -24807,8 +23429,7 @@ "canonical_id": "game_nba_2025_20251228_sac_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-28", - "time": "6:30p", + "game_datetime_utc": "2025-12-29T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAL", @@ -24825,8 +23446,7 @@ "canonical_id": "game_nba_2025_20251229_mil_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHA", @@ -24843,8 +23463,7 @@ "canonical_id": "game_nba_2025_20251229_phx_was", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Phoenix Suns", "home_team_abbrev": "WAS", @@ -24861,8 +23480,7 @@ "canonical_id": "game_nhl_2025_20251229_was_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Washington Capitals", "home_team_abbrev": "FLA", @@ -24879,8 +23497,7 @@ "canonical_id": "game_nhl_2025_20251229_nyr_car", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Rangers", "home_team_abbrev": "CAR", @@ -24897,8 +23514,7 @@ "canonical_id": "game_nba_2025_20251229_den_mia", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Miami Heat", "away_team": "Denver Nuggets", "home_team_abbrev": "MIA", @@ -24915,8 +23531,7 @@ "canonical_id": "game_nba_2025_20251229_gsw_brk", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Golden State Warriors", "home_team_abbrev": "BKN", @@ -24933,8 +23548,7 @@ "canonical_id": "game_nba_2025_20251229_orl_tor", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Orlando Magic", "home_team_abbrev": "TOR", @@ -24951,8 +23565,7 @@ "canonical_id": "game_nhl_2025_20251229_edm_wpg", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "6:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Edmonton Oilers", "home_team_abbrev": "WPG", @@ -24969,8 +23582,7 @@ "canonical_id": "game_nhl_2025_20251229_cbj_ott", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "OTT", @@ -24987,8 +23599,7 @@ "canonical_id": "game_nba_2025_20251229_nyk_nop", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "New York Knicks", "home_team_abbrev": "NOP", @@ -25005,8 +23616,7 @@ "canonical_id": "game_nba_2025_20251229_atl_okc", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Atlanta Hawks", "home_team_abbrev": "OKC", @@ -25023,8 +23633,7 @@ "canonical_id": "game_nba_2025_20251229_cle_sas", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "SAS", @@ -25041,8 +23650,7 @@ "canonical_id": "game_nba_2025_20251229_min_chi", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CHI", @@ -25059,8 +23667,7 @@ "canonical_id": "game_nba_2025_20251229_ind_hou", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Indiana Pacers", "home_team_abbrev": "HOU", @@ -25077,8 +23684,7 @@ "canonical_id": "game_nhl_2025_20251229_buf_stl", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Buffalo Sabres", "home_team_abbrev": "STL", @@ -25095,8 +23701,7 @@ "canonical_id": "game_nfl_2026_20251230_lar_atl", "sport": "NFL", "season": "2025", - "date": "2025-12-29", - "time": "8:15p", + "game_datetime_utc": "2025-12-30T01:15:00Z", "home_team": "Atlanta Falcons", "away_team": "Los Angeles Rams", "home_team_abbrev": "ATL", @@ -25113,8 +23718,7 @@ "canonical_id": "game_nhl_2025_20251229_nsh_ari", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Utah Club", "away_team": "Nashville Predators", "home_team_abbrev": "ARI", @@ -25131,8 +23735,7 @@ "canonical_id": "game_nhl_2025_20251229_bos_cgy", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Boston Bruins", "home_team_abbrev": "CGY", @@ -25149,8 +23752,7 @@ "canonical_id": "game_nhl_2025_20251229_la_col", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Los Angeles Kings", "home_team_abbrev": "COL", @@ -25167,8 +23769,7 @@ "canonical_id": "game_nhl_2025_20251229_sj_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "San Jose Sharks", "home_team_abbrev": "ANA", @@ -25185,8 +23786,7 @@ "canonical_id": "game_nhl_2025_20251229_van_sea", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vancouver Canucks", "home_team_abbrev": "SEA", @@ -25203,8 +23803,7 @@ "canonical_id": "game_nhl_2025_20251229_min_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-29", - "time": "7p", + "game_datetime_utc": "2025-12-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Minnesota Wild", "home_team_abbrev": "VGK", @@ -25221,8 +23820,7 @@ "canonical_id": "game_nba_2025_20251229_dal_por", "sport": "NBA", "season": "2025", - "date": "2025-12-29", - "time": "7:30p", + "game_datetime_utc": "2025-12-30T03:30:00Z", "home_team": "Portland Blazers", "away_team": "Dallas Mavericks", "home_team_abbrev": "POR", @@ -25239,8 +23837,7 @@ "canonical_id": "game_nhl_2025_20251230_mtl_fla", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Montreal Canadiens", "home_team_abbrev": "FLA", @@ -25257,8 +23854,7 @@ "canonical_id": "game_nhl_2025_20251230_njd_tor", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New Jersey Devils", "home_team_abbrev": "TOR", @@ -25275,8 +23871,7 @@ "canonical_id": "game_nhl_2025_20251230_car_pit", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PIT", @@ -25293,8 +23888,7 @@ "canonical_id": "game_nba_2025_20251230_phi_mem", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MEM", @@ -25311,8 +23905,7 @@ "canonical_id": "game_nhl_2025_20251230_nyi_chi", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7:30p", + "game_datetime_utc": "2025-12-31T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "New York Islanders", "home_team_abbrev": "CHI", @@ -25329,8 +23922,7 @@ "canonical_id": "game_nba_2025_20251230_bos_uta", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Boston Celtics", "home_team_abbrev": "UTA", @@ -25347,8 +23939,7 @@ "canonical_id": "game_nhl_2025_20251230_phi_van", "sport": "NHL", "season": "2025", - "date": "2025-12-30", - "time": "7p", + "game_datetime_utc": "2025-12-31T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "VAN", @@ -25365,8 +23956,7 @@ "canonical_id": "game_nba_2025_20251230_det_lal", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "7:30p", + "game_datetime_utc": "2025-12-31T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Detroit Pistons", "home_team_abbrev": "LAL", @@ -25383,8 +23973,7 @@ "canonical_id": "game_nba_2025_20251230_sac_lac", "sport": "NBA", "season": "2025", - "date": "2025-12-30", - "time": "8p", + "game_datetime_utc": "2025-12-31T04:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAC", @@ -25401,8 +23990,7 @@ "canonical_id": "game_nhl_2025_20251231_nyr_was", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "12:30p", + "game_datetime_utc": "2025-12-31T17:30:00Z", "home_team": "Washington Capitals", "away_team": "New York Rangers", "home_team_abbrev": "WAS", @@ -25419,8 +24007,7 @@ "canonical_id": "game_nba_2025_20251231_gsw_cho", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Golden State Warriors", "home_team_abbrev": "CHA", @@ -25437,8 +24024,7 @@ "canonical_id": "game_nba_2025_20251231_orl_ind", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "3p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Indiana Pacers", "away_team": "Orlando Magic", "home_team_abbrev": "IND", @@ -25455,8 +24041,7 @@ "canonical_id": "game_nba_2025_20251231_min_atl", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "3p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "ATL", @@ -25473,8 +24058,7 @@ "canonical_id": "game_nhl_2025_20251231_nsh_vgk", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "12p", + "game_datetime_utc": "2025-12-31T20:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Nashville Predators", "home_team_abbrev": "VGK", @@ -25491,8 +24075,7 @@ "canonical_id": "game_nba_2025_20251231_phx_cle", "sport": "NBA", "season": "2025", - "date": "2025-12-31", - "time": "2:30p", + "game_datetime_utc": "2025-12-31T20:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Phoenix Suns", "home_team_abbrev": "CLE", @@ -25509,8 +24092,7 @@ "canonical_id": "game_nhl_2025_20251231_tb_ana", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T21:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "ANA", @@ -25527,8 +24109,7 @@ "canonical_id": "game_nhl_2025_20251231_min_sj", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "1p", + "game_datetime_utc": "2025-12-31T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Minnesota Wild", "home_team_abbrev": "SJ", @@ -25545,8 +24126,7 @@ "canonical_id": "game_nhl_2025_20251231_wpg_det", "sport": "NHL", "season": "2025", - "date": "2025-12-31", - "time": "6:30p", + "game_datetime_utc": "2025-12-31T23:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Winnipeg Jets", "home_team_abbrev": "DET", @@ -25563,8 +24143,7 @@ "canonical_id": "game_nba_2025_20251231_nop_chi", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "6p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHI", @@ -25581,8 +24160,7 @@ "canonical_id": "game_nba_2025_20251231_nyk_sas", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "6p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New York Knicks", "home_team_abbrev": "SAS", @@ -25599,8 +24177,7 @@ "canonical_id": "game_nhl_2025_20251231_njd_cbj", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New Jersey Devils", "home_team_abbrev": "CBJ", @@ -25617,8 +24194,7 @@ "canonical_id": "game_nba_2025_20251231_den_tor", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Denver Nuggets", "home_team_abbrev": "TOR", @@ -25635,8 +24211,7 @@ "canonical_id": "game_nba_2025_20251231_was_mil", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Washington Wizards", "home_team_abbrev": "MIL", @@ -25653,8 +24228,7 @@ "canonical_id": "game_nba_2025_20251231_por_okc", "sport": "NBA", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Portland Blazers", "home_team_abbrev": "OKC", @@ -25671,8 +24245,7 @@ "canonical_id": "game_nhl_2025_20251231_buf_dal", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Buffalo Sabres", "home_team_abbrev": "DAL", @@ -25689,8 +24262,7 @@ "canonical_id": "game_nhl_2025_20251231_stl_col", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7p", + "game_datetime_utc": "2026-01-01T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "St. Louis Blues", "home_team_abbrev": "COL", @@ -25707,8 +24279,7 @@ "canonical_id": "game_nhl_2025_20251231_bos_edm", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T02:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Boston Bruins", "home_team_abbrev": "EDM", @@ -25725,8 +24296,7 @@ "canonical_id": "game_nhl_2025_20251231_phi_cgy", "sport": "NHL", "season": "2026", - "date": "2025-12-31", - "time": "7:30p", + "game_datetime_utc": "2026-01-01T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CGY", @@ -25743,8 +24313,7 @@ "canonical_id": "game_nhl_2025_20260101_was_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "1p", + "game_datetime_utc": "2026-01-01T18:00:00Z", "home_team": "Ottawa Senators", "away_team": "Washington Capitals", "home_team_abbrev": "OTT", @@ -25761,8 +24330,7 @@ "canonical_id": "game_nhl_2025_20260101_ari_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "3p", + "game_datetime_utc": "2026-01-01T20:00:00Z", "home_team": "New York Islanders", "away_team": "Utah Club", "home_team_abbrev": "NYI", @@ -25779,8 +24347,7 @@ "canonical_id": "game_nba_2025_20260101_hou_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "6p", + "game_datetime_utc": "2026-01-01T23:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Houston Rockets", "home_team_abbrev": "BKN", @@ -25797,8 +24364,7 @@ "canonical_id": "game_nba_2025_20260101_mia_det", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Miami Heat", "home_team_abbrev": "DET", @@ -25815,8 +24381,7 @@ "canonical_id": "game_nhl_2025_20260101_tb_la", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "4p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "LA", @@ -25833,8 +24398,7 @@ "canonical_id": "game_nhl_2025_20260101_mtl_car", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Montreal Canadiens", "home_team_abbrev": "CAR", @@ -25851,8 +24415,7 @@ "canonical_id": "game_nhl_2025_20260101_det_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Detroit Red Wings", "home_team_abbrev": "PIT", @@ -25869,8 +24432,7 @@ "canonical_id": "game_nhl_2025_20260101_wpg_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Winnipeg Jets", "home_team_abbrev": "TOR", @@ -25887,8 +24449,7 @@ "canonical_id": "game_nba_2025_20260101_phi_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DAL", @@ -25905,8 +24466,7 @@ "canonical_id": "game_nhl_2025_20260101_dal_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Dallas Stars", "home_team_abbrev": "CHI", @@ -25923,8 +24483,7 @@ "canonical_id": "game_nba_2025_20260101_bos_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Boston Celtics", "home_team_abbrev": "SAC", @@ -25941,8 +24500,7 @@ "canonical_id": "game_nhl_2025_20260101_nsh_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-01", - "time": "7p", + "game_datetime_utc": "2026-01-02T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Nashville Predators", "home_team_abbrev": "SEA", @@ -25959,8 +24517,7 @@ "canonical_id": "game_nba_2025_20260101_uta_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-01", - "time": "7:30p", + "game_datetime_utc": "2026-01-02T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Utah Jazz", "home_team_abbrev": "LAC", @@ -25977,8 +24534,7 @@ "canonical_id": "game_nhl_2025_20260102_vgk_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "2p", + "game_datetime_utc": "2026-01-02T20:00:00Z", "home_team": "St. Louis Blues", "away_team": "Vegas Golden Knights", "home_team_abbrev": "STL", @@ -25995,8 +24551,7 @@ "canonical_id": "game_nba_2025_20260102_brk_was", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Brooklyn Nets", "home_team_abbrev": "WAS", @@ -26013,8 +24568,7 @@ "canonical_id": "game_nba_2025_20260102_sas_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "San Antonio Spurs", "home_team_abbrev": "IND", @@ -26031,8 +24585,7 @@ "canonical_id": "game_nba_2025_20260102_atl_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T00:30:00Z", "home_team": "New York Knicks", "away_team": "Atlanta Hawks", "home_team_abbrev": "NYK", @@ -26049,8 +24602,7 @@ "canonical_id": "game_nba_2025_20260102_den_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "6:30p", + "game_datetime_utc": "2026-01-03T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Denver Nuggets", "home_team_abbrev": "CLE", @@ -26067,8 +24619,7 @@ "canonical_id": "game_nba_2025_20260102_por_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Portland Blazers", "home_team_abbrev": "NOP", @@ -26085,8 +24636,7 @@ "canonical_id": "game_nba_2025_20260102_orl_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Orlando Magic", "home_team_abbrev": "CHI", @@ -26103,8 +24653,7 @@ "canonical_id": "game_nba_2025_20260102_cho_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIL", @@ -26121,8 +24670,7 @@ "canonical_id": "game_nhl_2025_20260102_nyr_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "8p", + "game_datetime_utc": "2026-01-03T01:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Rangers", "home_team_abbrev": "FLA", @@ -26139,8 +24687,7 @@ "canonical_id": "game_nba_2025_20260102_sac_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "9p", + "game_datetime_utc": "2026-01-03T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Sacramento Kings", "home_team_abbrev": "PHX", @@ -26157,8 +24704,7 @@ "canonical_id": "game_nba_2025_20260102_okc_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7p", + "game_datetime_utc": "2026-01-03T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "GSW", @@ -26175,8 +24721,7 @@ "canonical_id": "game_nba_2025_20260102_mem_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAL", @@ -26193,8 +24738,7 @@ "canonical_id": "game_nhl_2025_20260102_min_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Minnesota Wild", "home_team_abbrev": "ANA", @@ -26211,8 +24755,7 @@ "canonical_id": "game_nhl_2025_20260102_sea_van", "sport": "NHL", "season": "2026", - "date": "2026-01-02", - "time": "7:30p", + "game_datetime_utc": "2026-01-03T03:30:00Z", "home_team": "Vancouver Canucks", "away_team": "Seattle Kraken", "home_team_abbrev": "VAN", @@ -26229,8 +24772,7 @@ "canonical_id": "game_nhl_2025_20260103_pit_det", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "12p", + "game_datetime_utc": "2026-01-03T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "DET", @@ -26247,8 +24789,7 @@ "canonical_id": "game_nhl_2025_20260103_ari_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T20:00:00Z", "home_team": "New Jersey Devils", "away_team": "Utah Club", "home_team_abbrev": "NJ", @@ -26265,8 +24806,7 @@ "canonical_id": "game_nhl_2025_20260103_buf_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T20:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Buffalo Sabres", "home_team_abbrev": "CBJ", @@ -26283,8 +24823,7 @@ "canonical_id": "game_nhl_2025_20260103_phi_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "1:30p", + "game_datetime_utc": "2026-01-03T20:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "EDM", @@ -26301,8 +24840,7 @@ "canonical_id": "game_nhl_2025_20260103_tb_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "1p", + "game_datetime_utc": "2026-01-03T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "SJ", @@ -26319,8 +24857,7 @@ "canonical_id": "game_nhl_2025_20260103_mtl_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "3p", + "game_datetime_utc": "2026-01-03T21:00:00Z", "home_team": "St. Louis Blues", "away_team": "Montreal Canadiens", "home_team_abbrev": "STL", @@ -26337,8 +24874,7 @@ "canonical_id": "game_nfl_2026_20260103_car_tb", "sport": "NFL", "season": "2026", - "date": "2026-01-03", - "time": "4:30p", + "game_datetime_utc": "2026-01-03T21:30:00Z", "home_team": "Tampa Bay Buccaneers", "away_team": "Carolina Panthers", "home_team_abbrev": "TB", @@ -26355,8 +24891,7 @@ "canonical_id": "game_nba_2025_20260103_min_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-03T22:00:00Z", "home_team": "Miami Heat", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MIA", @@ -26373,8 +24908,7 @@ "canonical_id": "game_nhl_2025_20260103_wpg_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Winnipeg Jets", "home_team_abbrev": "OTT", @@ -26391,8 +24925,7 @@ "canonical_id": "game_nhl_2025_20260103_nsh_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Nashville Predators", "home_team_abbrev": "CGY", @@ -26409,8 +24942,7 @@ "canonical_id": "game_nhl_2025_20260103_chi_was", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WAS", @@ -26427,8 +24959,7 @@ "canonical_id": "game_nhl_2025_20260103_col_car", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Colorado Avalanche", "home_team_abbrev": "CAR", @@ -26445,8 +24976,7 @@ "canonical_id": "game_nhl_2025_20260103_tor_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T00:00:00Z", "home_team": "New York Islanders", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYI", @@ -26463,8 +24993,7 @@ "canonical_id": "game_nba_2025_20260103_phi_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T00:30:00Z", "home_team": "New York Knicks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NYK", @@ -26481,8 +25010,7 @@ "canonical_id": "game_nba_2025_20260103_atl_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Atlanta Hawks", "home_team_abbrev": "TOR", @@ -26499,8 +25027,7 @@ "canonical_id": "game_nba_2025_20260103_por_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Portland Blazers", "home_team_abbrev": "SAS", @@ -26517,8 +25044,7 @@ "canonical_id": "game_nba_2025_20260103_cho_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Charlotte Hornets", "home_team_abbrev": "CHI", @@ -26535,8 +25061,7 @@ "canonical_id": "game_nfl_2026_20260104_sea_sf", "sport": "NFL", "season": "2026", - "date": "2026-01-03", - "time": "5p", + "game_datetime_utc": "2026-01-04T01:00:00Z", "home_team": "San Francisco 49ers", "away_team": "Seattle Seahawks", "home_team_abbrev": "SF", @@ -26553,8 +25078,7 @@ "canonical_id": "game_nba_2025_20260103_hou_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Houston Rockets", "home_team_abbrev": "DAL", @@ -26571,8 +25095,7 @@ "canonical_id": "game_nhl_2025_20260103_min_la", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "6p", + "game_datetime_utc": "2026-01-04T02:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Minnesota Wild", "home_team_abbrev": "LA", @@ -26589,8 +25112,7 @@ "canonical_id": "game_nba_2025_20260103_uta_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Utah Jazz", "home_team_abbrev": "GSW", @@ -26607,8 +25129,7 @@ "canonical_id": "game_nhl_2025_20260103_bos_van", "sport": "NHL", "season": "2026", - "date": "2026-01-03", - "time": "7p", + "game_datetime_utc": "2026-01-04T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Boston Bruins", "home_team_abbrev": "VAN", @@ -26625,8 +25146,7 @@ "canonical_id": "game_nba_2025_20260103_bos_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-03", - "time": "7:30p", + "game_datetime_utc": "2026-01-04T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Boston Celtics", "home_team_abbrev": "LAC", @@ -26643,8 +25163,7 @@ "canonical_id": "game_nfl_2026_20260104_ind_hou", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "12p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Houston Texans", "away_team": "Indianapolis Colts", "home_team_abbrev": "HOU", @@ -26661,8 +25180,7 @@ "canonical_id": "game_nfl_2026_20260104_gb_min", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "12p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Minnesota Vikings", "away_team": "Green Bay Packers", "home_team_abbrev": "MIN", @@ -26679,8 +25197,7 @@ "canonical_id": "game_nfl_2026_20260104_cle_cin", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Cincinnati Bengals", "away_team": "Cleveland Browns", "home_team_abbrev": "CIN", @@ -26697,8 +25214,7 @@ "canonical_id": "game_nfl_2026_20260104_no_atl", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Atlanta Falcons", "away_team": "New Orleans Saints", "home_team_abbrev": "ATL", @@ -26715,8 +25231,7 @@ "canonical_id": "game_nfl_2026_20260104_ten_jax", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Tennessee Titans", "home_team_abbrev": "JAX", @@ -26733,8 +25248,7 @@ "canonical_id": "game_nfl_2026_20260104_dal_nyg", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T18:00:00Z", "home_team": "New York Giants", "away_team": "Dallas Cowboys", "home_team_abbrev": "NYG", @@ -26751,8 +25265,7 @@ "canonical_id": "game_nba_2025_20260104_det_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T19:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Detroit Pistons", "home_team_abbrev": "CLE", @@ -26769,8 +25282,7 @@ "canonical_id": "game_nhl_2025_20260104_mtl_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "1p", + "game_datetime_utc": "2026-01-04T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Montreal Canadiens", "home_team_abbrev": "DAL", @@ -26787,8 +25299,7 @@ "canonical_id": "game_nba_2025_20260104_ind_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "3p", + "game_datetime_utc": "2026-01-04T20:00:00Z", "home_team": "Orlando Magic", "away_team": "Indiana Pacers", "home_team_abbrev": "ORL", @@ -26805,8 +25316,7 @@ "canonical_id": "game_nhl_2025_20260104_pit_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "3p", + "game_datetime_utc": "2026-01-04T20:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CBJ", @@ -26823,8 +25333,7 @@ "canonical_id": "game_nba_2025_20260104_den_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "3:30p", + "game_datetime_utc": "2026-01-04T20:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Denver Nuggets", "home_team_abbrev": "BKN", @@ -26841,8 +25350,7 @@ "canonical_id": "game_nfl_2026_20260104_kc_lv", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Las Vegas Raiders", "away_team": "Kansas City Chiefs", "home_team_abbrev": "LV", @@ -26859,8 +25367,7 @@ "canonical_id": "game_nfl_2026_20260104_was_phi", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Philadelphia Eagles", "away_team": "Washington Commanders", "home_team_abbrev": "PHI", @@ -26877,8 +25384,7 @@ "canonical_id": "game_nfl_2026_20260104_mia_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "New England Patriots", "away_team": "Miami Dolphins", "home_team_abbrev": "NE", @@ -26895,8 +25401,7 @@ "canonical_id": "game_nfl_2026_20260104_ari_lar", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "1:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Los Angeles Rams", "away_team": "Arizona Cardinals", "home_team_abbrev": "LAR", @@ -26913,8 +25418,7 @@ "canonical_id": "game_nfl_2026_20260104_lac_den", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "2:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Denver Broncos", "away_team": "Los Angeles Chargers", "home_team_abbrev": "DEN", @@ -26931,8 +25435,7 @@ "canonical_id": "game_nfl_2026_20260104_det_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "3:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Chicago Bears", "away_team": "Detroit Lions", "home_team_abbrev": "CHI", @@ -26949,8 +25452,7 @@ "canonical_id": "game_nfl_2026_20260104_nyj_buf", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "4:25p", + "game_datetime_utc": "2026-01-04T21:25:00Z", "home_team": "Buffalo Bills", "away_team": "New York Jets", "home_team_abbrev": "BUF", @@ -26967,8 +25469,7 @@ "canonical_id": "game_nhl_2025_20260104_col_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "5p", + "game_datetime_utc": "2026-01-04T22:00:00Z", "home_team": "Florida Panthers", "away_team": "Colorado Avalanche", "home_team_abbrev": "FLA", @@ -26985,8 +25486,7 @@ "canonical_id": "game_nba_2025_20260104_min_was", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-04T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "WAS", @@ -27003,8 +25503,7 @@ "canonical_id": "game_nba_2025_20260104_nop_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-04T23:00:00Z", "home_team": "Miami Heat", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIA", @@ -27021,8 +25520,7 @@ "canonical_id": "game_nhl_2025_20260104_vgk_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-05T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "CHI", @@ -27039,8 +25537,7 @@ "canonical_id": "game_nhl_2025_20260104_car_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-04", - "time": "7p", + "game_datetime_utc": "2026-01-05T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NJ", @@ -27057,8 +25554,7 @@ "canonical_id": "game_nba_2025_20260104_okc_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "8p", + "game_datetime_utc": "2026-01-05T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHX", @@ -27075,8 +25571,7 @@ "canonical_id": "game_nfl_2026_20260105_bal_pit", "sport": "NFL", "season": "2026", - "date": "2026-01-04", - "time": "8:20p", + "game_datetime_utc": "2026-01-05T01:20:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Baltimore Ravens", "home_team_abbrev": "PIT", @@ -27093,8 +25588,7 @@ "canonical_id": "game_nba_2025_20260104_mil_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6p", + "game_datetime_utc": "2026-01-05T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Milwaukee Bucks", "home_team_abbrev": "SAC", @@ -27111,8 +25605,7 @@ "canonical_id": "game_nba_2025_20260104_mem_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-04", - "time": "6:30p", + "game_datetime_utc": "2026-01-05T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "LAL", @@ -27129,8 +25622,7 @@ "canonical_id": "game_nba_2025_20260105_nyk_det", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "New York Knicks", "home_team_abbrev": "DET", @@ -27147,8 +25639,7 @@ "canonical_id": "game_nhl_2025_20260105_ana_was", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Anaheim Ducks", "home_team_abbrev": "WAS", @@ -27165,8 +25656,7 @@ "canonical_id": "game_nhl_2025_20260105_ari_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Utah Club", "home_team_abbrev": "NYR", @@ -27183,8 +25673,7 @@ "canonical_id": "game_nba_2025_20260105_atl_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Atlanta Hawks", "home_team_abbrev": "TOR", @@ -27201,8 +25690,7 @@ "canonical_id": "game_nba_2025_20260105_chi_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Chicago Bulls", "home_team_abbrev": "BOS", @@ -27219,8 +25707,7 @@ "canonical_id": "game_nhl_2025_20260105_det_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Detroit Red Wings", "home_team_abbrev": "OTT", @@ -27237,8 +25724,7 @@ "canonical_id": "game_nba_2025_20260105_cho_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Charlotte Hornets", "home_team_abbrev": "OKC", @@ -27255,8 +25741,7 @@ "canonical_id": "game_nba_2025_20260105_phx_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Phoenix Suns", "home_team_abbrev": "HOU", @@ -27273,8 +25758,7 @@ "canonical_id": "game_nba_2025_20260105_den_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "5:30p", + "game_datetime_utc": "2026-01-06T01:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Denver Nuggets", "home_team_abbrev": "PHI", @@ -27291,8 +25775,7 @@ "canonical_id": "game_nhl_2025_20260105_sea_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Seattle Kraken", "home_team_abbrev": "CGY", @@ -27309,8 +25792,7 @@ "canonical_id": "game_nba_2025_20260105_uta_por", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Utah Jazz", "home_team_abbrev": "POR", @@ -27327,8 +25809,7 @@ "canonical_id": "game_nba_2025_20260105_gsw_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-05", - "time": "7p", + "game_datetime_utc": "2026-01-06T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAC", @@ -27345,8 +25826,7 @@ "canonical_id": "game_nhl_2025_20260105_min_la", "sport": "NHL", "season": "2026", - "date": "2026-01-05", - "time": "7:30p", + "game_datetime_utc": "2026-01-06T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Minnesota Wild", "home_team_abbrev": "LA", @@ -27363,8 +25843,7 @@ "canonical_id": "game_nba_2025_20260106_cle_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "IND", @@ -27381,8 +25860,7 @@ "canonical_id": "game_nba_2025_20260106_orl_was", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Orlando Magic", "home_team_abbrev": "WAS", @@ -27399,8 +25877,7 @@ "canonical_id": "game_nhl_2025_20260106_van_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Vancouver Canucks", "home_team_abbrev": "BUF", @@ -27417,8 +25894,7 @@ "canonical_id": "game_nhl_2025_20260106_col_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Colorado Avalanche", "home_team_abbrev": "TB", @@ -27435,8 +25911,7 @@ "canonical_id": "game_nhl_2025_20260106_ana_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Anaheim Ducks", "home_team_abbrev": "PHI", @@ -27453,8 +25928,7 @@ "canonical_id": "game_nhl_2025_20260106_dal_car", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Dallas Stars", "home_team_abbrev": "CAR", @@ -27471,8 +25945,7 @@ "canonical_id": "game_nhl_2025_20260106_njd_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7:30p", + "game_datetime_utc": "2026-01-07T00:30:00Z", "home_team": "New York Islanders", "away_team": "New Jersey Devils", "home_team_abbrev": "NYI", @@ -27489,8 +25962,7 @@ "canonical_id": "game_nhl_2025_20260106_fla_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7:30p", + "game_datetime_utc": "2026-01-07T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Florida Panthers", "home_team_abbrev": "TOR", @@ -27507,8 +25979,7 @@ "canonical_id": "game_nba_2025_20260106_sas_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "San Antonio Spurs", "home_team_abbrev": "MEM", @@ -27525,8 +25996,7 @@ "canonical_id": "game_nba_2025_20260106_mia_min", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Miami Heat", "home_team_abbrev": "MIN", @@ -27543,8 +26013,7 @@ "canonical_id": "game_nba_2025_20260106_lal_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NOP", @@ -27561,8 +26030,7 @@ "canonical_id": "game_nhl_2025_20260106_vgk_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WPG", @@ -27579,8 +26047,7 @@ "canonical_id": "game_nhl_2025_20260106_nsh_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Nashville Predators", "home_team_abbrev": "EDM", @@ -27597,8 +26064,7 @@ "canonical_id": "game_nhl_2025_20260106_bos_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Boston Bruins", "home_team_abbrev": "SEA", @@ -27615,8 +26081,7 @@ "canonical_id": "game_nhl_2025_20260106_cbj_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-06", - "time": "7p", + "game_datetime_utc": "2026-01-07T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "SJ", @@ -27633,8 +26098,7 @@ "canonical_id": "game_nba_2025_20260106_dal_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-06", - "time": "8p", + "game_datetime_utc": "2026-01-07T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAC", @@ -27651,8 +26115,7 @@ "canonical_id": "game_nba_2025_20260107_chi_det", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Chicago Bulls", "home_team_abbrev": "DET", @@ -27669,8 +26132,7 @@ "canonical_id": "game_nba_2025_20260107_den_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Denver Nuggets", "home_team_abbrev": "BOS", @@ -27687,8 +26149,7 @@ "canonical_id": "game_nba_2025_20260107_was_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "4p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Washington Wizards", "home_team_abbrev": "PHI", @@ -27705,8 +26166,7 @@ "canonical_id": "game_nba_2025_20260107_tor_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Toronto Raptors", "home_team_abbrev": "CHA", @@ -27723,8 +26183,7 @@ "canonical_id": "game_nhl_2025_20260107_dal_was", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Dallas Stars", "home_team_abbrev": "WAS", @@ -27741,8 +26200,7 @@ "canonical_id": "game_nba_2025_20260107_orl_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Orlando Magic", "home_team_abbrev": "BKN", @@ -27759,8 +26217,7 @@ "canonical_id": "game_nba_2025_20260107_lac_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "New York Knicks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NYK", @@ -27777,8 +26234,7 @@ "canonical_id": "game_nba_2025_20260107_nop_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "ATL", @@ -27795,8 +26251,7 @@ "canonical_id": "game_nhl_2025_20260107_cgy_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Calgary Flames", "home_team_abbrev": "MTL", @@ -27813,8 +26268,7 @@ "canonical_id": "game_nba_2025_20260107_uta_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Utah Jazz", "home_team_abbrev": "OKC", @@ -27831,8 +26285,7 @@ "canonical_id": "game_nba_2025_20260107_phx_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Phoenix Suns", "home_team_abbrev": "MEM", @@ -27849,8 +26302,7 @@ "canonical_id": "game_nba_2025_20260107_lal_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "8:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAS", @@ -27867,8 +26319,7 @@ "canonical_id": "game_nhl_2025_20260107_ott_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "Utah Club", "away_team": "Ottawa Senators", "home_team_abbrev": "ARI", @@ -27885,8 +26336,7 @@ "canonical_id": "game_nhl_2025_20260107_stl_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "8:30p", + "game_datetime_utc": "2026-01-08T02:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "St. Louis Blues", "home_team_abbrev": "CHI", @@ -27903,8 +26353,7 @@ "canonical_id": "game_nba_2025_20260107_mil_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Milwaukee Bucks", "home_team_abbrev": "GSW", @@ -27921,8 +26370,7 @@ "canonical_id": "game_nba_2025_20260107_hou_por", "sport": "NBA", "season": "2026", - "date": "2026-01-07", - "time": "7p", + "game_datetime_utc": "2026-01-08T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Houston Rockets", "home_team_abbrev": "POR", @@ -27939,8 +26387,7 @@ "canonical_id": "game_nhl_2025_20260107_sj_la", "sport": "NHL", "season": "2026", - "date": "2026-01-07", - "time": "7:30p", + "game_datetime_utc": "2026-01-08T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "San Jose Sharks", "home_team_abbrev": "LA", @@ -27957,8 +26404,7 @@ "canonical_id": "game_nba_2025_20260108_ind_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Indiana Pacers", "home_team_abbrev": "CHA", @@ -27975,8 +26421,7 @@ "canonical_id": "game_nhl_2025_20260108_van_det", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Vancouver Canucks", "home_team_abbrev": "DET", @@ -27993,8 +26438,7 @@ "canonical_id": "game_nhl_2025_20260108_fla_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Florida Panthers", "home_team_abbrev": "MTL", @@ -28011,8 +26455,7 @@ "canonical_id": "game_nhl_2025_20260108_tor_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "PHI", @@ -28029,8 +26472,7 @@ "canonical_id": "game_nhl_2025_20260108_njd_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New Jersey Devils", "home_team_abbrev": "PIT", @@ -28047,8 +26489,7 @@ "canonical_id": "game_nhl_2025_20260108_buf_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "New York Rangers", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYR", @@ -28065,8 +26506,7 @@ "canonical_id": "game_nhl_2025_20260108_cgy_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Calgary Flames", "home_team_abbrev": "BOS", @@ -28083,8 +26523,7 @@ "canonical_id": "game_nhl_2025_20260108_ana_car", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Anaheim Ducks", "home_team_abbrev": "CAR", @@ -28101,8 +26540,7 @@ "canonical_id": "game_nba_2025_20260108_cle_min", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIN", @@ -28119,8 +26557,7 @@ "canonical_id": "game_nhl_2025_20260108_nyi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Nashville Predators", "away_team": "New York Islanders", "home_team_abbrev": "NSH", @@ -28137,8 +26574,7 @@ "canonical_id": "game_nhl_2025_20260108_edm_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Edmonton Oilers", "home_team_abbrev": "WPG", @@ -28155,8 +26591,7 @@ "canonical_id": "game_nba_2025_20260108_dal_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Dallas Mavericks", "home_team_abbrev": "UTA", @@ -28173,8 +26608,7 @@ "canonical_id": "game_nhl_2025_20260108_ott_col", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Ottawa Senators", "home_team_abbrev": "COL", @@ -28191,8 +26625,7 @@ "canonical_id": "game_nhl_2025_20260108_min_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Minnesota Wild", "home_team_abbrev": "SEA", @@ -28209,8 +26642,7 @@ "canonical_id": "game_nhl_2025_20260108_cbj_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-08", - "time": "7p", + "game_datetime_utc": "2026-01-09T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "VGK", @@ -28227,8 +26659,7 @@ "canonical_id": "game_nba_2025_20260109_phi_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ORL", @@ -28245,8 +26676,7 @@ "canonical_id": "game_nba_2025_20260109_tor_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Toronto Raptors", "home_team_abbrev": "BOS", @@ -28263,8 +26693,7 @@ "canonical_id": "game_nba_2025_20260109_nop_was", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T00:00:00Z", "home_team": "Washington Wizards", "away_team": "New Orleans Pelicans", "home_team_abbrev": "WAS", @@ -28281,8 +26710,7 @@ "canonical_id": "game_nba_2025_20260109_lac_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7:30p", + "game_datetime_utc": "2026-01-10T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "BKN", @@ -28299,8 +26727,7 @@ "canonical_id": "game_nba_2025_20260109_okc_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MEM", @@ -28317,8 +26744,7 @@ "canonical_id": "game_nhl_2025_20260109_was_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Washington Capitals", "home_team_abbrev": "CHI", @@ -28335,8 +26761,7 @@ "canonical_id": "game_nhl_2025_20260109_la_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Los Angeles Kings", "home_team_abbrev": "WPG", @@ -28353,8 +26778,7 @@ "canonical_id": "game_nba_2025_20260109_nyk_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "9p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New York Knicks", "home_team_abbrev": "PHX", @@ -28371,8 +26795,7 @@ "canonical_id": "game_nba_2025_20260109_atl_den", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Atlanta Hawks", "home_team_abbrev": "DEN", @@ -28389,8 +26812,7 @@ "canonical_id": "game_nhl_2025_20260109_stl_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T02:00:00Z", "home_team": "Utah Club", "away_team": "St. Louis Blues", "home_team_abbrev": "ARI", @@ -28407,8 +26829,7 @@ "canonical_id": "game_nba_2025_20260109_sac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Sacramento Kings", "home_team_abbrev": "GSW", @@ -28425,8 +26846,7 @@ "canonical_id": "game_nba_2025_20260109_hou_por", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7p", + "game_datetime_utc": "2026-01-10T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Houston Rockets", "home_team_abbrev": "POR", @@ -28443,8 +26863,7 @@ "canonical_id": "game_nba_2025_20260109_mil_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-09", - "time": "7:30p", + "game_datetime_utc": "2026-01-10T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "LAL", @@ -28461,8 +26880,7 @@ "canonical_id": "game_nba_2025_20260110_min_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "12p", + "game_datetime_utc": "2026-01-10T18:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "CLE", @@ -28479,8 +26897,7 @@ "canonical_id": "game_nhl_2025_20260110_nyr_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "1p", + "game_datetime_utc": "2026-01-10T18:00:00Z", "home_team": "Boston Bruins", "away_team": "New York Rangers", "home_team_abbrev": "BOS", @@ -28497,8 +26914,7 @@ "canonical_id": "game_nhl_2025_20260110_cgy_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "3:30p", + "game_datetime_utc": "2026-01-10T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Calgary Flames", "home_team_abbrev": "PIT", @@ -28515,8 +26931,7 @@ "canonical_id": "game_nhl_2025_20260110_cbj_col", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "2p", + "game_datetime_utc": "2026-01-10T21:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "COL", @@ -28533,8 +26948,7 @@ "canonical_id": "game_nhl_2025_20260110_dal_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "1p", + "game_datetime_utc": "2026-01-10T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Dallas Stars", "home_team_abbrev": "SJ", @@ -28551,8 +26965,7 @@ "canonical_id": "game_nfl_2026_20260110_lar_car", "sport": "NFL", "season": "2026", - "date": "2026-01-10", - "time": "4:30p", + "game_datetime_utc": "2026-01-10T21:30:00Z", "home_team": "Carolina Panthers", "away_team": "Los Angeles Rams", "home_team_abbrev": "CAR", @@ -28569,8 +26982,7 @@ "canonical_id": "game_nba_2025_20260110_mia_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Miami Heat", "home_team_abbrev": "IND", @@ -28587,8 +26999,7 @@ "canonical_id": "game_nhl_2025_20260110_ana_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Anaheim Ducks", "home_team_abbrev": "BUF", @@ -28605,8 +27016,7 @@ "canonical_id": "game_nhl_2025_20260110_tb_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PHI", @@ -28623,8 +27033,7 @@ "canonical_id": "game_nhl_2025_20260110_fla_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Florida Panthers", "home_team_abbrev": "OTT", @@ -28641,8 +27050,7 @@ "canonical_id": "game_nhl_2025_20260110_det_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Detroit Red Wings", "home_team_abbrev": "MTL", @@ -28659,8 +27067,7 @@ "canonical_id": "game_nhl_2025_20260110_van_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Vancouver Canucks", "home_team_abbrev": "TOR", @@ -28677,8 +27084,7 @@ "canonical_id": "game_nhl_2025_20260110_sea_car", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Seattle Kraken", "home_team_abbrev": "CAR", @@ -28695,8 +27101,7 @@ "canonical_id": "game_nba_2025_20260110_lac_det", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7:30p", + "game_datetime_utc": "2026-01-11T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DET", @@ -28713,8 +27118,7 @@ "canonical_id": "game_nba_2025_20260110_dal_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Dallas Mavericks", "home_team_abbrev": "CHI", @@ -28731,8 +27135,7 @@ "canonical_id": "game_nba_2025_20260110_sas_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "8p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Boston Celtics", "away_team": "San Antonio Spurs", "home_team_abbrev": "BOS", @@ -28749,8 +27152,7 @@ "canonical_id": "game_nfl_2026_20260111_gb_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Chicago Bears", "away_team": "Green Bay Packers", "home_team_abbrev": "CHI", @@ -28767,8 +27169,7 @@ "canonical_id": "game_nhl_2025_20260110_chi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NSH", @@ -28785,8 +27186,7 @@ "canonical_id": "game_nhl_2025_20260110_nyi_min", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "New York Islanders", "home_team_abbrev": "MIN", @@ -28803,8 +27203,7 @@ "canonical_id": "game_nba_2025_20260110_cho_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-10", - "time": "7:30p", + "game_datetime_utc": "2026-01-11T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Charlotte Hornets", "home_team_abbrev": "UTA", @@ -28821,8 +27220,7 @@ "canonical_id": "game_nhl_2025_20260110_la_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "8p", + "game_datetime_utc": "2026-01-11T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Los Angeles Kings", "home_team_abbrev": "EDM", @@ -28839,8 +27237,7 @@ "canonical_id": "game_nhl_2025_20260110_stl_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-10", - "time": "7p", + "game_datetime_utc": "2026-01-11T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "St. Louis Blues", "home_team_abbrev": "VGK", @@ -28857,8 +27254,7 @@ "canonical_id": "game_nfl_2026_20260111_buf_jax", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "1p", + "game_datetime_utc": "2026-01-11T18:00:00Z", "home_team": "Jacksonville Jaguars", "away_team": "Buffalo Bills", "home_team_abbrev": "JAX", @@ -28875,8 +27271,7 @@ "canonical_id": "game_nhl_2025_20260111_njd_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "1p", + "game_datetime_utc": "2026-01-11T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New Jersey Devils", "home_team_abbrev": "WPG", @@ -28893,8 +27288,7 @@ "canonical_id": "game_nba_2025_20260111_nop_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "3p", + "game_datetime_utc": "2026-01-11T20:00:00Z", "home_team": "Orlando Magic", "away_team": "New Orleans Pelicans", "home_team_abbrev": "ORL", @@ -28911,8 +27305,7 @@ "canonical_id": "game_nba_2025_20260111_brk_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "2:30p", + "game_datetime_utc": "2026-01-11T20:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Brooklyn Nets", "home_team_abbrev": "MEM", @@ -28929,8 +27322,7 @@ "canonical_id": "game_nfl_2026_20260111_sf_phi", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "4:30p", + "game_datetime_utc": "2026-01-11T21:30:00Z", "home_team": "Philadelphia Eagles", "away_team": "San Francisco 49ers", "home_team_abbrev": "PHI", @@ -28947,8 +27339,7 @@ "canonical_id": "game_nhl_2025_20260111_pit_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-11T22:00:00Z", "home_team": "Boston Bruins", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BOS", @@ -28965,8 +27356,7 @@ "canonical_id": "game_nba_2025_20260111_nyk_por", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "3p", + "game_datetime_utc": "2026-01-11T23:00:00Z", "home_team": "Portland Blazers", "away_team": "New York Knicks", "home_team_abbrev": "POR", @@ -28983,8 +27373,7 @@ "canonical_id": "game_nba_2025_20260111_phi_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-11T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "TOR", @@ -29001,8 +27390,7 @@ "canonical_id": "game_nba_2025_20260111_sas_min", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIN", @@ -29019,8 +27407,7 @@ "canonical_id": "game_nba_2025_20260111_mia_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Miami Heat", "home_team_abbrev": "OKC", @@ -29037,8 +27424,7 @@ "canonical_id": "game_nhl_2025_20260111_cbj_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Utah Club", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "ARI", @@ -29055,8 +27441,7 @@ "canonical_id": "game_nhl_2025_20260111_was_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Washington Capitals", "home_team_abbrev": "NSH", @@ -29073,8 +27458,7 @@ "canonical_id": "game_nba_2025_20260111_was_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "8p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Washington Wizards", "home_team_abbrev": "PHX", @@ -29091,8 +27475,7 @@ "canonical_id": "game_nba_2025_20260111_mil_den", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DEN", @@ -29109,8 +27492,7 @@ "canonical_id": "game_nhl_2025_20260111_vgk_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-11", - "time": "5p", + "game_datetime_utc": "2026-01-12T01:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SJ", @@ -29127,8 +27509,7 @@ "canonical_id": "game_nfl_2026_20260112_lac_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-11", - "time": "8:15p", + "game_datetime_utc": "2026-01-12T01:15:00Z", "home_team": "New England Patriots", "away_team": "Los Angeles Chargers", "home_team_abbrev": "NE", @@ -29145,8 +27526,7 @@ "canonical_id": "game_nba_2025_20260111_atl_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "5:30p", + "game_datetime_utc": "2026-01-12T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Atlanta Hawks", "home_team_abbrev": "GSW", @@ -29163,8 +27543,7 @@ "canonical_id": "game_nba_2025_20260111_hou_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-11", - "time": "6p", + "game_datetime_utc": "2026-01-12T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Houston Rockets", "home_team_abbrev": "SAC", @@ -29181,8 +27560,7 @@ "canonical_id": "game_nba_2025_20260112_uta_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "6p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Utah Jazz", "home_team_abbrev": "CLE", @@ -29199,8 +27577,7 @@ "canonical_id": "game_nhl_2025_20260112_fla_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Florida Panthers", "home_team_abbrev": "BUF", @@ -29217,8 +27594,7 @@ "canonical_id": "game_nhl_2025_20260112_car_det", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Carolina Hurricanes", "home_team_abbrev": "DET", @@ -29235,8 +27611,7 @@ "canonical_id": "game_nhl_2025_20260112_sea_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "New York Rangers", "away_team": "Seattle Kraken", "home_team_abbrev": "NYR", @@ -29253,8 +27628,7 @@ "canonical_id": "game_nhl_2025_20260112_tb_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PHI", @@ -29271,8 +27645,7 @@ "canonical_id": "game_nba_2025_20260112_phi_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "TOR", @@ -29289,8 +27662,7 @@ "canonical_id": "game_nba_2025_20260112_bos_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Indiana Pacers", "away_team": "Boston Celtics", "home_team_abbrev": "IND", @@ -29307,8 +27679,7 @@ "canonical_id": "game_nhl_2025_20260112_van_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T00:30:00Z", "home_team": "Montreal Canadiens", "away_team": "Vancouver Canucks", "home_team_abbrev": "MTL", @@ -29325,8 +27696,7 @@ "canonical_id": "game_nhl_2025_20260112_njd_min", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "New Jersey Devils", "home_team_abbrev": "MIN", @@ -29343,8 +27713,7 @@ "canonical_id": "game_nfl_2026_20260113_hou_pit", "sport": "NFL", "season": "2026", - "date": "2026-01-12", - "time": "8:15p", + "game_datetime_utc": "2026-01-13T01:15:00Z", "home_team": "Pittsburgh Steelers", "away_team": "Houston Texans", "home_team_abbrev": "PIT", @@ -29361,8 +27730,7 @@ "canonical_id": "game_nba_2025_20260112_brk_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Brooklyn Nets", "home_team_abbrev": "DAL", @@ -29379,8 +27747,7 @@ "canonical_id": "game_nhl_2025_20260112_edm_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Edmonton Oilers", "home_team_abbrev": "CHI", @@ -29397,8 +27764,7 @@ "canonical_id": "game_nba_2025_20260112_lal_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Lakers", "home_team_abbrev": "SAC", @@ -29415,8 +27781,7 @@ "canonical_id": "game_nhl_2025_20260112_tor_col", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "8p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "COL", @@ -29433,8 +27798,7 @@ "canonical_id": "game_nhl_2025_20260112_dal_la", "sport": "NHL", "season": "2026", - "date": "2026-01-12", - "time": "7p", + "game_datetime_utc": "2026-01-13T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Dallas Stars", "home_team_abbrev": "LA", @@ -29451,8 +27815,7 @@ "canonical_id": "game_nba_2025_20260112_cho_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-12", - "time": "7:30p", + "game_datetime_utc": "2026-01-13T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Charlotte Hornets", "home_team_abbrev": "LAC", @@ -29469,8 +27832,7 @@ "canonical_id": "game_nhl_2025_20260113_cgy_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Calgary Flames", "home_team_abbrev": "CBJ", @@ -29487,8 +27849,7 @@ "canonical_id": "game_nhl_2025_20260113_tb_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "PIT", @@ -29505,8 +27866,7 @@ "canonical_id": "game_nhl_2025_20260113_van_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Vancouver Canucks", "home_team_abbrev": "OTT", @@ -29523,8 +27883,7 @@ "canonical_id": "game_nhl_2025_20260113_mtl_was", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Montreal Canadiens", "home_team_abbrev": "WAS", @@ -29541,8 +27900,7 @@ "canonical_id": "game_nba_2025_20260113_phx_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "Miami Heat", "away_team": "Phoenix Suns", "home_team_abbrev": "MIA", @@ -29559,8 +27917,7 @@ "canonical_id": "game_nhl_2025_20260113_det_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "Boston Bruins", "away_team": "Detroit Red Wings", "home_team_abbrev": "BOS", @@ -29577,8 +27934,7 @@ "canonical_id": "game_nhl_2025_20260113_car_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "6:30p", + "game_datetime_utc": "2026-01-14T00:30:00Z", "home_team": "St. Louis Blues", "away_team": "Carolina Hurricanes", "home_team_abbrev": "STL", @@ -29595,8 +27951,7 @@ "canonical_id": "game_nba_2025_20260113_den_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Denver Nuggets", "home_team_abbrev": "NOP", @@ -29613,8 +27968,7 @@ "canonical_id": "game_nba_2025_20260113_chi_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Chicago Bulls", "home_team_abbrev": "HOU", @@ -29631,8 +27985,7 @@ "canonical_id": "game_nba_2025_20260113_min_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MIL", @@ -29649,8 +28002,7 @@ "canonical_id": "game_nba_2025_20260113_sas_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "San Antonio Spurs", "home_team_abbrev": "OKC", @@ -29667,8 +28019,7 @@ "canonical_id": "game_nhl_2025_20260113_edm_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Edmonton Oilers", "home_team_abbrev": "NSH", @@ -29685,8 +28036,7 @@ "canonical_id": "game_nhl_2025_20260113_nyi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New York Islanders", "home_team_abbrev": "WPG", @@ -29703,8 +28053,7 @@ "canonical_id": "game_nhl_2025_20260113_tor_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "8p", + "game_datetime_utc": "2026-01-14T03:00:00Z", "home_team": "Utah Club", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "ARI", @@ -29721,8 +28070,7 @@ "canonical_id": "game_nhl_2025_20260113_dal_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-13", - "time": "7p", + "game_datetime_utc": "2026-01-14T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Dallas Stars", "home_team_abbrev": "ANA", @@ -29739,8 +28087,7 @@ "canonical_id": "game_nba_2025_20260113_atl_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "7:30p", + "game_datetime_utc": "2026-01-14T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Atlanta Hawks", "home_team_abbrev": "LAL", @@ -29757,8 +28104,7 @@ "canonical_id": "game_nba_2025_20260113_por_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-13", - "time": "8p", + "game_datetime_utc": "2026-01-14T04:00:00Z", "home_team": "Golden State Warriors", "away_team": "Portland Blazers", "home_team_abbrev": "GSW", @@ -29775,8 +28121,7 @@ "canonical_id": "game_nba_2025_20260114_tor_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Toronto Raptors", "home_team_abbrev": "IND", @@ -29793,8 +28138,7 @@ "canonical_id": "game_nba_2025_20260114_cle_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "4p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHI", @@ -29811,8 +28155,7 @@ "canonical_id": "game_nhl_2025_20260114_sea_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Seattle Kraken", "home_team_abbrev": "NJ", @@ -29829,8 +28172,7 @@ "canonical_id": "game_nhl_2025_20260114_phi_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T00:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BUF", @@ -29847,8 +28189,7 @@ "canonical_id": "game_nhl_2025_20260114_ott_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T00:30:00Z", "home_team": "New York Rangers", "away_team": "Ottawa Senators", "home_team_abbrev": "NYR", @@ -29865,8 +28206,7 @@ "canonical_id": "game_nba_2025_20260114_uta_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Utah Jazz", "home_team_abbrev": "CHI", @@ -29883,8 +28223,7 @@ "canonical_id": "game_nba_2025_20260114_brk_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Brooklyn Nets", "home_team_abbrev": "NOP", @@ -29901,8 +28240,7 @@ "canonical_id": "game_nba_2025_20260114_den_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "8:30p", + "game_datetime_utc": "2026-01-15T02:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Denver Nuggets", "home_team_abbrev": "DAL", @@ -29919,8 +28257,7 @@ "canonical_id": "game_nba_2025_20260114_nyk_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "New York Knicks", "home_team_abbrev": "SAC", @@ -29937,8 +28274,7 @@ "canonical_id": "game_nhl_2025_20260114_vgk_la", "sport": "NHL", "season": "2026", - "date": "2026-01-14", - "time": "7p", + "game_datetime_utc": "2026-01-15T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "LA", @@ -29955,8 +28291,7 @@ "canonical_id": "game_nba_2025_20260114_was_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-14", - "time": "7:30p", + "game_datetime_utc": "2026-01-15T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Washington Wizards", "home_team_abbrev": "LAC", @@ -29973,8 +28308,7 @@ "canonical_id": "game_nba_2025_20260115_mem_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "2p", + "game_datetime_utc": "2026-01-15T19:00:00Z", "home_team": "Orlando Magic", "away_team": "Memphis Grizzlies", "home_team_abbrev": "ORL", @@ -29991,8 +28325,7 @@ "canonical_id": "game_nba_2025_20260115_phx_det", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Phoenix Suns", "home_team_abbrev": "DET", @@ -30009,8 +28342,7 @@ "canonical_id": "game_nhl_2025_20260115_mtl_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Montreal Canadiens", "home_team_abbrev": "BUF", @@ -30027,8 +28359,7 @@ "canonical_id": "game_nhl_2025_20260115_phi_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "PIT", @@ -30045,8 +28376,7 @@ "canonical_id": "game_nhl_2025_20260115_van_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Vancouver Canucks", "home_team_abbrev": "CBJ", @@ -30063,8 +28393,7 @@ "canonical_id": "game_nhl_2025_20260115_sj_was", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T00:00:00Z", "home_team": "Washington Capitals", "away_team": "San Jose Sharks", "home_team_abbrev": "WAS", @@ -30081,8 +28410,7 @@ "canonical_id": "game_nba_2025_20260115_bos_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T00:30:00Z", "home_team": "Miami Heat", "away_team": "Boston Celtics", "home_team_abbrev": "MIA", @@ -30099,8 +28427,7 @@ "canonical_id": "game_nba_2025_20260115_okc_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "6:30p", + "game_datetime_utc": "2026-01-16T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "HOU", @@ -30117,8 +28444,7 @@ "canonical_id": "game_nba_2025_20260115_mil_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Milwaukee Bucks", "home_team_abbrev": "SAS", @@ -30135,8 +28461,7 @@ "canonical_id": "game_nhl_2025_20260115_sea_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "8p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "Boston Bruins", "away_team": "Seattle Kraken", "home_team_abbrev": "BOS", @@ -30153,8 +28478,7 @@ "canonical_id": "game_nhl_2025_20260115_wpg_min", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Winnipeg Jets", "home_team_abbrev": "MIN", @@ -30171,8 +28495,7 @@ "canonical_id": "game_nba_2025_20260115_uta_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Utah Jazz", "home_team_abbrev": "DAL", @@ -30189,8 +28512,7 @@ "canonical_id": "game_nhl_2025_20260115_cgy_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Calgary Flames", "home_team_abbrev": "CHI", @@ -30207,8 +28529,7 @@ "canonical_id": "game_nhl_2025_20260115_dal_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T02:00:00Z", "home_team": "Utah Club", "away_team": "Dallas Stars", "home_team_abbrev": "ARI", @@ -30225,8 +28546,7 @@ "canonical_id": "game_nhl_2025_20260115_nyi_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New York Islanders", "home_team_abbrev": "EDM", @@ -30243,8 +28563,7 @@ "canonical_id": "game_nhl_2025_20260115_tor_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-15", - "time": "6:30p", + "game_datetime_utc": "2026-01-16T02:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "VGK", @@ -30261,8 +28580,7 @@ "canonical_id": "game_nba_2025_20260115_atl_por", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Atlanta Hawks", "home_team_abbrev": "POR", @@ -30279,8 +28597,7 @@ "canonical_id": "game_nba_2025_20260115_nyk_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7p", + "game_datetime_utc": "2026-01-16T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "New York Knicks", "home_team_abbrev": "GSW", @@ -30297,8 +28614,7 @@ "canonical_id": "game_nba_2025_20260115_cho_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-15", - "time": "7:30p", + "game_datetime_utc": "2026-01-16T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Charlotte Hornets", "home_team_abbrev": "LAL", @@ -30315,8 +28631,7 @@ "canonical_id": "game_nba_2025_20260116_nop_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "IND", @@ -30333,8 +28648,7 @@ "canonical_id": "game_nba_2025_20260116_cle_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "4p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHI", @@ -30351,8 +28665,7 @@ "canonical_id": "game_nhl_2025_20260116_sj_det", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "San Jose Sharks", "home_team_abbrev": "DET", @@ -30369,8 +28682,7 @@ "canonical_id": "game_nhl_2025_20260116_fla_car", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Florida Panthers", "home_team_abbrev": "CAR", @@ -30387,8 +28699,7 @@ "canonical_id": "game_nba_2025_20260116_chi_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Chicago Bulls", "home_team_abbrev": "BKN", @@ -30405,8 +28716,7 @@ "canonical_id": "game_nba_2025_20260116_lac_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "TOR", @@ -30423,8 +28733,7 @@ "canonical_id": "game_nhl_2025_20260116_tb_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "STL", @@ -30441,8 +28750,7 @@ "canonical_id": "game_nhl_2025_20260116_nsh_col", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Nashville Predators", "home_team_abbrev": "COL", @@ -30459,8 +28767,7 @@ "canonical_id": "game_nba_2025_20260116_min_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "8:30p", + "game_datetime_utc": "2026-01-17T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "HOU", @@ -30477,8 +28784,7 @@ "canonical_id": "game_nba_2025_20260116_was_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-16", - "time": "7p", + "game_datetime_utc": "2026-01-17T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Washington Wizards", "home_team_abbrev": "SAC", @@ -30495,8 +28801,7 @@ "canonical_id": "game_nhl_2025_20260116_ana_la", "sport": "NHL", "season": "2026", - "date": "2026-01-16", - "time": "7:30p", + "game_datetime_utc": "2026-01-17T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Anaheim Ducks", "home_team_abbrev": "LA", @@ -30513,8 +28818,7 @@ "canonical_id": "game_nhl_2025_20260117_min_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "12:30p", + "game_datetime_utc": "2026-01-17T17:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Minnesota Wild", "home_team_abbrev": "BUF", @@ -30531,8 +28835,7 @@ "canonical_id": "game_nhl_2025_20260117_nyr_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "1p", + "game_datetime_utc": "2026-01-17T18:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Rangers", "home_team_abbrev": "PHI", @@ -30549,8 +28852,7 @@ "canonical_id": "game_nhl_2025_20260117_nyi_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "1p", + "game_datetime_utc": "2026-01-17T20:00:00Z", "home_team": "Calgary Flames", "away_team": "New York Islanders", "home_team_abbrev": "CGY", @@ -30567,8 +28869,7 @@ "canonical_id": "game_nfl_2026_20260117_buf_den", "sport": "NFL", "season": "2026", - "date": "2026-01-17", - "time": "2:30p", + "game_datetime_utc": "2026-01-17T21:30:00Z", "home_team": "Denver Broncos", "away_team": "Buffalo Bills", "home_team_abbrev": "DEN", @@ -30585,8 +28886,7 @@ "canonical_id": "game_nba_2025_20260117_uta_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "4p", + "game_datetime_utc": "2026-01-17T22:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Utah Jazz", "home_team_abbrev": "DAL", @@ -30603,8 +28903,7 @@ "canonical_id": "game_nhl_2025_20260117_sea_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "3p", + "game_datetime_utc": "2026-01-17T22:00:00Z", "home_team": "Utah Club", "away_team": "Seattle Kraken", "home_team_abbrev": "ARI", @@ -30621,8 +28920,7 @@ "canonical_id": "game_nhl_2025_20260117_cbj_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PIT", @@ -30639,8 +28937,7 @@ "canonical_id": "game_nhl_2025_20260117_tor_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "6p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "WPG", @@ -30657,8 +28954,7 @@ "canonical_id": "game_nhl_2025_20260117_fla_was", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Florida Panthers", "home_team_abbrev": "WAS", @@ -30675,8 +28971,7 @@ "canonical_id": "game_nhl_2025_20260117_mtl_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Montreal Canadiens", "home_team_abbrev": "OTT", @@ -30693,8 +28988,7 @@ "canonical_id": "game_nhl_2025_20260117_car_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NJ", @@ -30711,8 +29005,7 @@ "canonical_id": "game_nba_2025_20260117_phx_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "New York Knicks", "away_team": "Phoenix Suns", "home_team_abbrev": "NYK", @@ -30729,8 +29022,7 @@ "canonical_id": "game_nba_2025_20260117_ind_det", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "Indiana Pacers", "home_team_abbrev": "DET", @@ -30747,8 +29039,7 @@ "canonical_id": "game_nba_2025_20260117_bos_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7:30p", + "game_datetime_utc": "2026-01-18T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Boston Celtics", "home_team_abbrev": "ATL", @@ -30765,8 +29056,7 @@ "canonical_id": "game_nba_2025_20260117_okc_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "8p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Miami Heat", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIA", @@ -30783,8 +29073,7 @@ "canonical_id": "game_nba_2025_20260117_min_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "SAS", @@ -30801,8 +29090,7 @@ "canonical_id": "game_nfl_2026_20260118_sf_sea", "sport": "NFL", "season": "2026", - "date": "2026-01-17", - "time": "5p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Seattle Seahawks", "away_team": "San Francisco 49ers", "home_team_abbrev": "SEA", @@ -30819,8 +29107,7 @@ "canonical_id": "game_nhl_2025_20260117_bos_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T01:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Boston Bruins", "home_team_abbrev": "CHI", @@ -30837,8 +29124,7 @@ "canonical_id": "game_nba_2025_20260117_cho_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "5:30p", + "game_datetime_utc": "2026-01-18T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Charlotte Hornets", "home_team_abbrev": "GSW", @@ -30855,8 +29141,7 @@ "canonical_id": "game_nba_2025_20260117_was_den", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Washington Wizards", "home_team_abbrev": "DEN", @@ -30873,8 +29158,7 @@ "canonical_id": "game_nba_2025_20260117_lal_por", "sport": "NBA", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "POR", @@ -30891,8 +29175,7 @@ "canonical_id": "game_nhl_2025_20260117_edm_van", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Edmonton Oilers", "home_team_abbrev": "VAN", @@ -30909,8 +29192,7 @@ "canonical_id": "game_nhl_2025_20260117_nsh_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Nashville Predators", "home_team_abbrev": "VGK", @@ -30927,8 +29209,7 @@ "canonical_id": "game_nhl_2025_20260117_la_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-17", - "time": "7p", + "game_datetime_utc": "2026-01-18T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Los Angeles Kings", "home_team_abbrev": "ANA", @@ -30945,8 +29226,7 @@ "canonical_id": "game_nba_2025_20260118_orl_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "11a", + "game_datetime_utc": "2026-01-18T17:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Orlando Magic", "home_team_abbrev": "MEM", @@ -30963,8 +29243,7 @@ "canonical_id": "game_nhl_2025_20260118_tb_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "1p", + "game_datetime_utc": "2026-01-18T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "DAL", @@ -30981,8 +29260,7 @@ "canonical_id": "game_nfl_2026_20260118_hou_ne", "sport": "NFL", "season": "2026", - "date": "2026-01-18", - "time": "3p", + "game_datetime_utc": "2026-01-18T20:00:00Z", "home_team": "New England Patriots", "away_team": "Houston Texans", "home_team_abbrev": "NE", @@ -30999,8 +29277,7 @@ "canonical_id": "game_nhl_2025_20260118_ott_det", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "5p", + "game_datetime_utc": "2026-01-18T22:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Ottawa Senators", "home_team_abbrev": "DET", @@ -31017,8 +29294,7 @@ "canonical_id": "game_nfl_2026_20260118_lar_chi", "sport": "NFL", "season": "2026", - "date": "2026-01-18", - "time": "5:30p", + "game_datetime_utc": "2026-01-18T23:30:00Z", "home_team": "Chicago Bears", "away_team": "Los Angeles Rams", "home_team_abbrev": "CHI", @@ -31035,8 +29311,7 @@ "canonical_id": "game_nba_2025_20260118_nop_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "HOU", @@ -31053,8 +29328,7 @@ "canonical_id": "game_nba_2025_20260118_brk_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Brooklyn Nets", "home_team_abbrev": "CHI", @@ -31071,8 +29345,7 @@ "canonical_id": "game_nba_2025_20260118_cho_den", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Charlotte Hornets", "home_team_abbrev": "DEN", @@ -31089,8 +29362,7 @@ "canonical_id": "game_nhl_2025_20260118_stl_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "St. Louis Blues", "home_team_abbrev": "EDM", @@ -31107,8 +29379,7 @@ "canonical_id": "game_nba_2025_20260118_por_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6p", + "game_datetime_utc": "2026-01-19T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Portland Blazers", "home_team_abbrev": "SAC", @@ -31125,8 +29396,7 @@ "canonical_id": "game_nba_2025_20260118_tor_lal", "sport": "NBA", "season": "2026", - "date": "2026-01-18", - "time": "6:30p", + "game_datetime_utc": "2026-01-19T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Toronto Raptors", "home_team_abbrev": "LAL", @@ -31143,8 +29413,7 @@ "canonical_id": "game_nba_2025_20260119_mil_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "1p", + "game_datetime_utc": "2026-01-19T18:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ATL", @@ -31161,8 +29430,7 @@ "canonical_id": "game_nhl_2025_20260119_buf_car", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "1:30p", + "game_datetime_utc": "2026-01-19T18:30:00Z", "home_team": "Carolina Hurricanes", "away_team": "Buffalo Sabres", "home_team_abbrev": "CAR", @@ -31179,8 +29447,7 @@ "canonical_id": "game_nba_2025_20260119_okc_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "1:30p", + "game_datetime_utc": "2026-01-19T19:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CLE", @@ -31197,8 +29464,7 @@ "canonical_id": "game_nba_2025_20260119_lac_was", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "3p", + "game_datetime_utc": "2026-01-19T20:00:00Z", "home_team": "Washington Wizards", "away_team": "Los Angeles Clippers", "home_team_abbrev": "WAS", @@ -31215,8 +29481,7 @@ "canonical_id": "game_nhl_2025_20260119_was_col", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "2p", + "game_datetime_utc": "2026-01-19T21:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Washington Capitals", "home_team_abbrev": "COL", @@ -31233,8 +29498,7 @@ "canonical_id": "game_nba_2025_20260119_dal_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "5p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "New York Knicks", "away_team": "Dallas Mavericks", "home_team_abbrev": "NYK", @@ -31251,8 +29515,7 @@ "canonical_id": "game_nba_2025_20260119_uta_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "4p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Utah Jazz", "home_team_abbrev": "SAS", @@ -31269,8 +29532,7 @@ "canonical_id": "game_nhl_2025_20260119_pit_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "2p", + "game_datetime_utc": "2026-01-19T22:00:00Z", "home_team": "Seattle Kraken", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "SEA", @@ -31287,8 +29549,7 @@ "canonical_id": "game_nhl_2025_20260119_sj_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "6p", + "game_datetime_utc": "2026-01-19T23:00:00Z", "home_team": "Florida Panthers", "away_team": "San Jose Sharks", "home_team_abbrev": "FLA", @@ -31305,8 +29566,7 @@ "canonical_id": "game_nba_2025_20260119_ind_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "4p", + "game_datetime_utc": "2026-01-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Indiana Pacers", "home_team_abbrev": "PHI", @@ -31323,8 +29583,7 @@ "canonical_id": "game_nba_2025_20260119_phx_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Phoenix Suns", "home_team_abbrev": "BKN", @@ -31341,8 +29600,7 @@ "canonical_id": "game_nhl_2025_20260119_min_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Minnesota Wild", "home_team_abbrev": "TOR", @@ -31359,8 +29617,7 @@ "canonical_id": "game_nba_2025_20260119_bos_det", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "8p", + "game_datetime_utc": "2026-01-20T01:00:00Z", "home_team": "Detroit Pistons", "away_team": "Boston Celtics", "home_team_abbrev": "DET", @@ -31377,8 +29634,7 @@ "canonical_id": "game_nhl_2025_20260119_phi_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "5p", + "game_datetime_utc": "2026-01-20T01:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Philadelphia Flyers", "home_team_abbrev": "VGK", @@ -31395,8 +29651,7 @@ "canonical_id": "game_nhl_2025_20260119_wpg_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7:30p", + "game_datetime_utc": "2026-01-20T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Winnipeg Jets", "home_team_abbrev": "CHI", @@ -31413,8 +29668,7 @@ "canonical_id": "game_nhl_2025_20260119_njd_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T02:00:00Z", "home_team": "Calgary Flames", "away_team": "New Jersey Devils", "home_team_abbrev": "CGY", @@ -31431,8 +29685,7 @@ "canonical_id": "game_nba_2025_20260119_mia_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Miami Heat", "home_team_abbrev": "GSW", @@ -31449,8 +29702,7 @@ "canonical_id": "game_nhl_2025_20260119_nyi_van", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New York Islanders", "home_team_abbrev": "VAN", @@ -31467,8 +29719,7 @@ "canonical_id": "game_nhl_2025_20260119_nyr_ana", "sport": "NHL", "season": "2026", - "date": "2026-01-19", - "time": "7p", + "game_datetime_utc": "2026-01-20T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New York Rangers", "home_team_abbrev": "ANA", @@ -31485,8 +29736,7 @@ "canonical_id": "game_nba_2025_20260120_phx_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "4p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Phoenix Suns", "home_team_abbrev": "PHI", @@ -31503,8 +29753,7 @@ "canonical_id": "game_nhl_2025_20260120_ott_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Ottawa Senators", "home_team_abbrev": "CBJ", @@ -31521,8 +29770,7 @@ "canonical_id": "game_nhl_2025_20260120_min_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Minnesota Wild", "home_team_abbrev": "MTL", @@ -31539,8 +29787,7 @@ "canonical_id": "game_nhl_2025_20260120_sj_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "San Jose Sharks", "home_team_abbrev": "TB", @@ -31557,8 +29804,7 @@ "canonical_id": "game_nhl_2025_20260120_bos_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "6:30p", + "game_datetime_utc": "2026-01-21T00:30:00Z", "home_team": "Dallas Stars", "away_team": "Boston Bruins", "home_team_abbrev": "DAL", @@ -31575,8 +29821,7 @@ "canonical_id": "game_nba_2025_20260120_lac_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Los Angeles Clippers", "home_team_abbrev": "CHI", @@ -31593,8 +29838,7 @@ "canonical_id": "game_nba_2025_20260120_sas_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Houston Rockets", "away_team": "San Antonio Spurs", "home_team_abbrev": "HOU", @@ -31611,8 +29855,7 @@ "canonical_id": "game_nhl_2025_20260120_stl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "St. Louis Blues", "home_team_abbrev": "WPG", @@ -31629,8 +29872,7 @@ "canonical_id": "game_nhl_2025_20260120_buf_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Buffalo Sabres", "home_team_abbrev": "NSH", @@ -31647,8 +29889,7 @@ "canonical_id": "game_nba_2025_20260120_min_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "UTA", @@ -31665,8 +29906,7 @@ "canonical_id": "game_nba_2025_20260120_lal_den", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "8p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DEN", @@ -31683,8 +29923,7 @@ "canonical_id": "game_nba_2025_20260120_tor_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Toronto Raptors", "home_team_abbrev": "GSW", @@ -31701,8 +29940,7 @@ "canonical_id": "game_nba_2025_20260120_mia_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Miami Heat", "home_team_abbrev": "SAC", @@ -31719,8 +29957,7 @@ "canonical_id": "game_nhl_2025_20260120_nyr_la", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "7p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "New York Rangers", "home_team_abbrev": "LA", @@ -31737,8 +29974,7 @@ "canonical_id": "game_nhl_2025_20260120_njd_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-20", - "time": "8p", + "game_datetime_utc": "2026-01-21T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "New Jersey Devils", "home_team_abbrev": "EDM", @@ -31755,8 +29991,7 @@ "canonical_id": "game_nba_2025_20260121_cle_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHA", @@ -31773,8 +30008,7 @@ "canonical_id": "game_nhl_2025_20260121_det_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Detroit Red Wings", "home_team_abbrev": "TOR", @@ -31791,8 +30025,7 @@ "canonical_id": "game_nba_2025_20260121_brk_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T00:30:00Z", "home_team": "New York Knicks", "away_team": "Brooklyn Nets", "home_team_abbrev": "NYK", @@ -31809,8 +30042,7 @@ "canonical_id": "game_nba_2025_20260121_ind_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Indiana Pacers", "home_team_abbrev": "BOS", @@ -31827,8 +30059,7 @@ "canonical_id": "game_nba_2025_20260121_atl_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Atlanta Hawks", "home_team_abbrev": "MEM", @@ -31845,8 +30076,7 @@ "canonical_id": "game_nba_2025_20260121_det_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Detroit Pistons", "home_team_abbrev": "NOP", @@ -31863,8 +30093,7 @@ "canonical_id": "game_nhl_2025_20260121_phi_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T02:00:00Z", "home_team": "Utah Club", "away_team": "Philadelphia Flyers", "home_team_abbrev": "ARI", @@ -31881,8 +30110,7 @@ "canonical_id": "game_nhl_2025_20260121_ana_col", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Anaheim Ducks", "home_team_abbrev": "COL", @@ -31899,8 +30127,7 @@ "canonical_id": "game_nba_2025_20260121_okc_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "8:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIL", @@ -31917,8 +30144,7 @@ "canonical_id": "game_nhl_2025_20260121_nyi_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "6:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Seattle Kraken", "away_team": "New York Islanders", "home_team_abbrev": "SEA", @@ -31935,8 +30161,7 @@ "canonical_id": "game_nhl_2025_20260121_pit_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7:30p", + "game_datetime_utc": "2026-01-22T02:30:00Z", "home_team": "Calgary Flames", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CGY", @@ -31953,8 +30178,7 @@ "canonical_id": "game_nba_2025_20260121_tor_sac", "sport": "NBA", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Toronto Raptors", "home_team_abbrev": "SAC", @@ -31971,8 +30195,7 @@ "canonical_id": "game_nhl_2025_20260121_was_van", "sport": "NHL", "season": "2026", - "date": "2026-01-21", - "time": "7p", + "game_datetime_utc": "2026-01-22T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Washington Capitals", "home_team_abbrev": "VAN", @@ -31989,8 +30212,7 @@ "canonical_id": "game_nba_2025_20260122_cho_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Charlotte Hornets", "home_team_abbrev": "ORL", @@ -32007,8 +30229,7 @@ "canonical_id": "game_nba_2025_20260122_hou_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "4p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Houston Rockets", "home_team_abbrev": "PHI", @@ -32025,8 +30246,7 @@ "canonical_id": "game_nba_2025_20260122_den_was", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Denver Nuggets", "home_team_abbrev": "WAS", @@ -32043,8 +30263,7 @@ "canonical_id": "game_nhl_2025_20260122_buf_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Buffalo Sabres", "home_team_abbrev": "MTL", @@ -32061,8 +30280,7 @@ "canonical_id": "game_nhl_2025_20260122_vgk_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Vegas Golden Knights", "home_team_abbrev": "BOS", @@ -32079,8 +30297,7 @@ "canonical_id": "game_nhl_2025_20260122_chi_car", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CAR", @@ -32097,8 +30314,7 @@ "canonical_id": "game_nhl_2025_20260122_dal_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Dallas Stars", "home_team_abbrev": "CBJ", @@ -32115,8 +30331,7 @@ "canonical_id": "game_nba_2025_20260122_gsw_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "6:30p", + "game_datetime_utc": "2026-01-23T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Golden State Warriors", "home_team_abbrev": "DAL", @@ -32133,8 +30348,7 @@ "canonical_id": "game_nba_2025_20260122_chi_min", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Chicago Bulls", "home_team_abbrev": "MIN", @@ -32151,8 +30365,7 @@ "canonical_id": "game_nhl_2025_20260122_fla_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Florida Panthers", "home_team_abbrev": "WPG", @@ -32169,8 +30382,7 @@ "canonical_id": "game_nhl_2025_20260122_ott_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Ottawa Senators", "home_team_abbrev": "NSH", @@ -32187,8 +30399,7 @@ "canonical_id": "game_nba_2025_20260122_sas_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T02:00:00Z", "home_team": "Utah Jazz", "away_team": "San Antonio Spurs", "home_team_abbrev": "UTA", @@ -32205,8 +30416,7 @@ "canonical_id": "game_nhl_2025_20260122_pit_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "EDM", @@ -32223,8 +30433,7 @@ "canonical_id": "game_nhl_2025_20260122_det_min", "sport": "NHL", "season": "2026", - "date": "2026-01-22", - "time": "8:30p", + "game_datetime_utc": "2026-01-23T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Detroit Red Wings", "home_team_abbrev": "MIN", @@ -32241,8 +30450,7 @@ "canonical_id": "game_nba_2025_20260122_mia_por", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Miami Heat", "home_team_abbrev": "POR", @@ -32259,8 +30467,7 @@ "canonical_id": "game_nba_2025_20260122_lal_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-22", - "time": "7p", + "game_datetime_utc": "2026-01-23T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "LAC", @@ -32277,8 +30484,7 @@ "canonical_id": "game_nba_2025_20260123_hou_det", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Houston Rockets", "home_team_abbrev": "DET", @@ -32295,8 +30501,7 @@ "canonical_id": "game_nhl_2025_20260123_tb_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "6p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CHI", @@ -32313,8 +30518,7 @@ "canonical_id": "game_nhl_2025_20260123_vgk_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Vegas Golden Knights", "home_team_abbrev": "TOR", @@ -32331,8 +30535,7 @@ "canonical_id": "game_nba_2025_20260123_sac_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "6:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Sacramento Kings", "home_team_abbrev": "CLE", @@ -32349,8 +30552,7 @@ "canonical_id": "game_nba_2025_20260123_bos_brk", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Boston Celtics", "home_team_abbrev": "BKN", @@ -32367,8 +30569,7 @@ "canonical_id": "game_nba_2025_20260123_phx_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7:30p", + "game_datetime_utc": "2026-01-24T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Phoenix Suns", "home_team_abbrev": "ATL", @@ -32385,8 +30586,7 @@ "canonical_id": "game_nba_2025_20260123_nop_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MEM", @@ -32403,8 +30603,7 @@ "canonical_id": "game_nba_2025_20260123_ind_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Indiana Pacers", "home_team_abbrev": "OKC", @@ -32421,8 +30620,7 @@ "canonical_id": "game_nhl_2025_20260123_stl_dal", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T01:00:00Z", "home_team": "Dallas Stars", "away_team": "St. Louis Blues", "home_team_abbrev": "DAL", @@ -32439,8 +30637,7 @@ "canonical_id": "game_nhl_2025_20260123_was_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Washington Capitals", "home_team_abbrev": "CGY", @@ -32457,8 +30654,7 @@ "canonical_id": "game_nhl_2025_20260123_phi_col", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Philadelphia Flyers", "home_team_abbrev": "COL", @@ -32475,8 +30671,7 @@ "canonical_id": "game_nba_2025_20260123_den_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "8:30p", + "game_datetime_utc": "2026-01-24T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Denver Nuggets", "home_team_abbrev": "MIL", @@ -32493,8 +30688,7 @@ "canonical_id": "game_nba_2025_20260123_tor_por", "sport": "NBA", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Toronto Raptors", "home_team_abbrev": "POR", @@ -32511,8 +30705,7 @@ "canonical_id": "game_nhl_2025_20260123_nyr_sj", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "New York Rangers", "home_team_abbrev": "SJ", @@ -32529,8 +30722,7 @@ "canonical_id": "game_nhl_2025_20260123_njd_van", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "New Jersey Devils", "home_team_abbrev": "VAN", @@ -32547,8 +30739,7 @@ "canonical_id": "game_nhl_2025_20260123_ana_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-23", - "time": "7p", + "game_datetime_utc": "2026-01-24T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Anaheim Ducks", "home_team_abbrev": "SEA", @@ -32565,8 +30756,7 @@ "canonical_id": "game_nhl_2025_20260124_buf_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "1p", + "game_datetime_utc": "2026-01-24T18:00:00Z", "home_team": "New York Islanders", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYI", @@ -32583,8 +30773,7 @@ "canonical_id": "game_nba_2025_20260124_nyk_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "12p", + "game_datetime_utc": "2026-01-24T20:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "New York Knicks", "home_team_abbrev": "PHI", @@ -32601,8 +30790,7 @@ "canonical_id": "game_nhl_2025_20260124_ari_nsh", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "2:30p", + "game_datetime_utc": "2026-01-24T20:30:00Z", "home_team": "Nashville Predators", "away_team": "Utah Club", "home_team_abbrev": "NSH", @@ -32619,8 +30807,7 @@ "canonical_id": "game_nba_2025_20260124_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "4:30p", + "game_datetime_utc": "2026-01-24T22:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -32637,8 +30824,7 @@ "canonical_id": "game_nba_2025_20260124_was_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "6p", + "game_datetime_utc": "2026-01-24T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Washington Wizards", "home_team_abbrev": "CHA", @@ -32655,8 +30841,7 @@ "canonical_id": "game_nba_2025_20260124_cle_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ORL", @@ -32673,8 +30858,7 @@ "canonical_id": "game_nhl_2025_20260124_det_wpg", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "6p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Detroit Red Wings", "home_team_abbrev": "WPG", @@ -32691,8 +30875,7 @@ "canonical_id": "game_nhl_2025_20260124_car_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "OTT", @@ -32709,8 +30892,7 @@ "canonical_id": "game_nhl_2025_20260124_mtl_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Montreal Canadiens", "home_team_abbrev": "BOS", @@ -32727,8 +30909,7 @@ "canonical_id": "game_nhl_2025_20260124_tb_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CBJ", @@ -32745,8 +30926,7 @@ "canonical_id": "game_nba_2025_20260124_bos_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Boston Celtics", "home_team_abbrev": "CHI", @@ -32763,8 +30943,7 @@ "canonical_id": "game_nhl_2025_20260124_la_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "7p", + "game_datetime_utc": "2026-01-25T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Los Angeles Kings", "home_team_abbrev": "STL", @@ -32781,8 +30960,7 @@ "canonical_id": "game_nba_2025_20260124_lal_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7:30p", + "game_datetime_utc": "2026-01-25T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DAL", @@ -32799,8 +30977,7 @@ "canonical_id": "game_nhl_2025_20260124_fla_min", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "8p", + "game_datetime_utc": "2026-01-25T02:00:00Z", "home_team": "Minnesota Wild", "away_team": "Florida Panthers", "home_team_abbrev": "MIN", @@ -32817,8 +30994,7 @@ "canonical_id": "game_nba_2025_20260124_mia_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-24", - "time": "7:30p", + "game_datetime_utc": "2026-01-25T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Miami Heat", "home_team_abbrev": "UTA", @@ -32835,8 +31011,7 @@ "canonical_id": "game_nhl_2025_20260124_was_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-24", - "time": "8p", + "game_datetime_utc": "2026-01-25T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Washington Capitals", "home_team_abbrev": "EDM", @@ -32853,8 +31028,7 @@ "canonical_id": "game_nhl_2025_20260125_col_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "1:30p", + "game_datetime_utc": "2026-01-25T18:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Colorado Avalanche", "home_team_abbrev": "TOR", @@ -32871,8 +31045,7 @@ "canonical_id": "game_nba_2025_20260125_sac_det", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "3p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Detroit Pistons", "away_team": "Sacramento Kings", "home_team_abbrev": "DET", @@ -32889,8 +31062,7 @@ "canonical_id": "game_nfl_2026_20260125_ne_den", "sport": "NFL", "season": "2026", - "date": "2026-01-25", - "time": "1p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Denver Broncos", "away_team": "New England Patriots", "home_team_abbrev": "DEN", @@ -32907,8 +31079,7 @@ "canonical_id": "game_nhl_2025_20260125_njd_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "12p", + "game_datetime_utc": "2026-01-25T20:00:00Z", "home_team": "Seattle Kraken", "away_team": "New Jersey Devils", "home_team_abbrev": "SEA", @@ -32925,8 +31096,7 @@ "canonical_id": "game_nba_2025_20260125_den_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "2:30p", + "game_datetime_utc": "2026-01-25T20:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -32943,8 +31113,7 @@ "canonical_id": "game_nhl_2025_20260125_vgk_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "5p", + "game_datetime_utc": "2026-01-25T22:00:00Z", "home_team": "Ottawa Senators", "away_team": "Vegas Golden Knights", "home_team_abbrev": "OTT", @@ -32961,8 +31130,7 @@ "canonical_id": "game_nba_2025_20260125_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "4:30p", + "game_datetime_utc": "2026-01-25T22:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -32979,8 +31147,7 @@ "canonical_id": "game_nhl_2025_20260125_pit_van", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "3p", + "game_datetime_utc": "2026-01-25T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "VAN", @@ -32997,8 +31164,7 @@ "canonical_id": "game_nfl_2026_20260125_lar_sea", "sport": "NFL", "season": "2026", - "date": "2026-01-25", - "time": "3:30p", + "game_datetime_utc": "2026-01-25T23:30:00Z", "home_team": "Seattle Seahawks", "away_team": "Los Angeles Rams", "home_team_abbrev": "SEA", @@ -33015,8 +31181,7 @@ "canonical_id": "game_nba_2025_20260125_tor_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Toronto Raptors", "home_team_abbrev": "OKC", @@ -33033,8 +31198,7 @@ "canonical_id": "game_nba_2025_20260125_dal_mil", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIL", @@ -33051,8 +31215,7 @@ "canonical_id": "game_nba_2025_20260125_nop_sas", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAS", @@ -33069,8 +31232,7 @@ "canonical_id": "game_nhl_2025_20260125_fla_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T00:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Florida Panthers", "home_team_abbrev": "CHI", @@ -33087,8 +31249,7 @@ "canonical_id": "game_nba_2025_20260125_mia_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "8p", + "game_datetime_utc": "2026-01-26T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Miami Heat", "home_team_abbrev": "PHX", @@ -33105,8 +31266,7 @@ "canonical_id": "game_nhl_2025_20260125_ana_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Anaheim Ducks", "home_team_abbrev": "CGY", @@ -33123,8 +31283,7 @@ "canonical_id": "game_nba_2025_20260125_brk_lac", "sport": "NBA", "season": "2026", - "date": "2026-01-25", - "time": "6p", + "game_datetime_utc": "2026-01-26T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Brooklyn Nets", "home_team_abbrev": "LAC", @@ -33141,8 +31300,7 @@ "canonical_id": "game_nba_2025_20260126_orl_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "6p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Orlando Magic", "home_team_abbrev": "CLE", @@ -33159,8 +31317,7 @@ "canonical_id": "game_nba_2025_20260126_phi_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHA", @@ -33177,8 +31334,7 @@ "canonical_id": "game_nhl_2025_20260126_nyi_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Islanders", "home_team_abbrev": "PHI", @@ -33195,8 +31351,7 @@ "canonical_id": "game_nhl_2025_20260126_ari_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Utah Club", "home_team_abbrev": "TB", @@ -33213,8 +31368,7 @@ "canonical_id": "game_nhl_2025_20260126_bos_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "New York Rangers", "away_team": "Boston Bruins", "home_team_abbrev": "NYR", @@ -33231,8 +31385,7 @@ "canonical_id": "game_nhl_2025_20260126_la_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Los Angeles Kings", "home_team_abbrev": "CBJ", @@ -33249,8 +31402,7 @@ "canonical_id": "game_nba_2025_20260126_ind_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7:30p", + "game_datetime_utc": "2026-01-27T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Indiana Pacers", "home_team_abbrev": "ATL", @@ -33267,8 +31419,7 @@ "canonical_id": "game_nba_2025_20260126_por_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "8p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Boston Celtics", "away_team": "Portland Blazers", "home_team_abbrev": "BOS", @@ -33285,8 +31436,7 @@ "canonical_id": "game_nba_2025_20260126_lal_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CHI", @@ -33303,8 +31453,7 @@ "canonical_id": "game_nba_2025_20260126_mem_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "7p", + "game_datetime_utc": "2026-01-27T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "HOU", @@ -33321,8 +31470,7 @@ "canonical_id": "game_nhl_2025_20260126_ana_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-26", - "time": "6:30p", + "game_datetime_utc": "2026-01-27T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Anaheim Ducks", "home_team_abbrev": "EDM", @@ -33339,8 +31487,7 @@ "canonical_id": "game_nba_2025_20260126_gsw_min", "sport": "NBA", "season": "2026", - "date": "2026-01-26", - "time": "8:30p", + "game_datetime_utc": "2026-01-27T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Golden State Warriors", "home_team_abbrev": "MIN", @@ -33357,8 +31504,7 @@ "canonical_id": "game_nba_2025_20260127_por_was", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Portland Blazers", "home_team_abbrev": "WAS", @@ -33375,8 +31521,7 @@ "canonical_id": "game_nhl_2025_20260127_wpg_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Winnipeg Jets", "home_team_abbrev": "NJ", @@ -33393,8 +31538,7 @@ "canonical_id": "game_nhl_2025_20260127_vgk_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Vegas Golden Knights", "home_team_abbrev": "MTL", @@ -33411,8 +31555,7 @@ "canonical_id": "game_nhl_2025_20260127_buf_tor", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Buffalo Sabres", "home_team_abbrev": "TOR", @@ -33429,8 +31572,7 @@ "canonical_id": "game_nhl_2025_20260127_nsh_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Nashville Predators", "home_team_abbrev": "BOS", @@ -33447,8 +31589,7 @@ "canonical_id": "game_nhl_2025_20260127_ari_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Utah Club", "home_team_abbrev": "FLA", @@ -33465,8 +31606,7 @@ "canonical_id": "game_nhl_2025_20260127_la_det", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Los Angeles Kings", "home_team_abbrev": "DET", @@ -33483,8 +31623,7 @@ "canonical_id": "game_nba_2025_20260127_sac_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7:30p", + "game_datetime_utc": "2026-01-28T00:30:00Z", "home_team": "New York Knicks", "away_team": "Sacramento Kings", "home_team_abbrev": "NYK", @@ -33501,8 +31640,7 @@ "canonical_id": "game_nba_2025_20260127_nop_okc", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New Orleans Pelicans", "home_team_abbrev": "OKC", @@ -33519,8 +31657,7 @@ "canonical_id": "game_nba_2025_20260127_mil_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "5p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHI", @@ -33537,8 +31674,7 @@ "canonical_id": "game_nhl_2025_20260127_dal_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Dallas Stars", "home_team_abbrev": "STL", @@ -33555,8 +31691,7 @@ "canonical_id": "game_nhl_2025_20260127_chi_min", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MIN", @@ -33573,8 +31708,7 @@ "canonical_id": "game_nba_2025_20260127_det_den", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Detroit Pistons", "home_team_abbrev": "DEN", @@ -33591,8 +31725,7 @@ "canonical_id": "game_nba_2025_20260127_brk_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "9p", + "game_datetime_utc": "2026-01-28T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHX", @@ -33609,8 +31742,7 @@ "canonical_id": "game_nba_2025_20260127_lac_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-27", - "time": "8p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Utah Jazz", "away_team": "Los Angeles Clippers", "home_team_abbrev": "UTA", @@ -33627,8 +31759,7 @@ "canonical_id": "game_nhl_2025_20260127_sj_van", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "San Jose Sharks", "home_team_abbrev": "VAN", @@ -33645,8 +31776,7 @@ "canonical_id": "game_nhl_2025_20260127_was_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-27", - "time": "7p", + "game_datetime_utc": "2026-01-28T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Washington Capitals", "home_team_abbrev": "SEA", @@ -33663,8 +31793,7 @@ "canonical_id": "game_nba_2025_20260128_chi_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Chicago Bulls", "home_team_abbrev": "IND", @@ -33681,8 +31810,7 @@ "canonical_id": "game_nba_2025_20260128_lal_cle", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "6p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "CLE", @@ -33699,8 +31827,7 @@ "canonical_id": "game_nhl_2025_20260128_nyr_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T00:00:00Z", "home_team": "New York Islanders", "away_team": "New York Rangers", "home_team_abbrev": "NYI", @@ -33717,8 +31844,7 @@ "canonical_id": "game_nba_2025_20260128_nyk_tor", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -33735,8 +31861,7 @@ "canonical_id": "game_nba_2025_20260128_atl_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Atlanta Hawks", "home_team_abbrev": "BOS", @@ -33753,8 +31878,7 @@ "canonical_id": "game_nba_2025_20260128_orl_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Miami Heat", "away_team": "Orlando Magic", "home_team_abbrev": "MIA", @@ -33771,8 +31895,7 @@ "canonical_id": "game_nhl_2025_20260128_col_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Ottawa Senators", "away_team": "Colorado Avalanche", "home_team_abbrev": "OTT", @@ -33789,8 +31912,7 @@ "canonical_id": "game_nhl_2025_20260128_phi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T00:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Philadelphia Flyers", "home_team_abbrev": "CBJ", @@ -33807,8 +31929,7 @@ "canonical_id": "game_nba_2025_20260128_cho_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Charlotte Hornets", "home_team_abbrev": "MEM", @@ -33825,8 +31946,7 @@ "canonical_id": "game_nba_2025_20260128_min_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7:30p", + "game_datetime_utc": "2026-01-29T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DAL", @@ -33843,8 +31963,7 @@ "canonical_id": "game_nba_2025_20260128_gsw_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "7p", + "game_datetime_utc": "2026-01-29T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Golden State Warriors", "home_team_abbrev": "UTA", @@ -33861,8 +31980,7 @@ "canonical_id": "game_nba_2025_20260128_sas_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-28", - "time": "8:30p", + "game_datetime_utc": "2026-01-29T02:30:00Z", "home_team": "Houston Rockets", "away_team": "San Antonio Spurs", "home_team_abbrev": "HOU", @@ -33879,8 +31997,7 @@ "canonical_id": "game_nba_2025_20260129_mil_was", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Milwaukee Bucks", "home_team_abbrev": "WAS", @@ -33897,8 +32014,7 @@ "canonical_id": "game_nba_2025_20260129_sac_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "4p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Sacramento Kings", "home_team_abbrev": "PHI", @@ -33915,8 +32031,7 @@ "canonical_id": "game_nhl_2025_20260129_ari_car", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Utah Club", "home_team_abbrev": "CAR", @@ -33933,8 +32048,7 @@ "canonical_id": "game_nhl_2025_20260129_chi_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Chicago Blackhawks", "home_team_abbrev": "PIT", @@ -33951,8 +32065,7 @@ "canonical_id": "game_nhl_2025_20260129_nyi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "New York Rangers", "away_team": "New York Islanders", "home_team_abbrev": "NYR", @@ -33969,8 +32082,7 @@ "canonical_id": "game_nhl_2025_20260129_nsh_njd", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Nashville Predators", "home_team_abbrev": "NJ", @@ -33987,8 +32099,7 @@ "canonical_id": "game_nhl_2025_20260129_col_mtl", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Colorado Avalanche", "home_team_abbrev": "MTL", @@ -34005,8 +32116,7 @@ "canonical_id": "game_nhl_2025_20260129_la_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Los Angeles Kings", "home_team_abbrev": "BUF", @@ -34023,8 +32133,7 @@ "canonical_id": "game_nhl_2025_20260129_phi_bos", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "BOS", @@ -34041,8 +32150,7 @@ "canonical_id": "game_nhl_2025_20260129_wpg_tb", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Winnipeg Jets", "home_team_abbrev": "TB", @@ -34059,8 +32167,7 @@ "canonical_id": "game_nhl_2025_20260129_was_det", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7:30p", + "game_datetime_utc": "2026-01-30T00:30:00Z", "home_team": "Detroit Red Wings", "away_team": "Washington Capitals", "home_team_abbrev": "DET", @@ -34077,8 +32184,7 @@ "canonical_id": "game_nba_2025_20260129_hou_atl", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "8p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Houston Rockets", "home_team_abbrev": "ATL", @@ -34095,8 +32201,7 @@ "canonical_id": "game_nba_2025_20260129_mia_chi", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Miami Heat", "home_team_abbrev": "CHI", @@ -34113,8 +32218,7 @@ "canonical_id": "game_nhl_2025_20260129_cgy_min", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "Minnesota Wild", "away_team": "Calgary Flames", "home_team_abbrev": "MIN", @@ -34131,8 +32235,7 @@ "canonical_id": "game_nhl_2025_20260129_fla_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Florida Panthers", "home_team_abbrev": "STL", @@ -34149,8 +32252,7 @@ "canonical_id": "game_nba_2025_20260129_cho_dal", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7:30p", + "game_datetime_utc": "2026-01-30T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Charlotte Hornets", "home_team_abbrev": "DAL", @@ -34167,8 +32269,7 @@ "canonical_id": "game_nba_2025_20260129_det_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "9p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Detroit Pistons", "home_team_abbrev": "PHX", @@ -34185,8 +32286,7 @@ "canonical_id": "game_nba_2025_20260129_brk_den", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Brooklyn Nets", "home_team_abbrev": "DEN", @@ -34203,8 +32303,7 @@ "canonical_id": "game_nhl_2025_20260129_sj_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "San Jose Sharks", "home_team_abbrev": "EDM", @@ -34221,8 +32320,7 @@ "canonical_id": "game_nba_2025_20260129_okc_min", "sport": "NBA", "season": "2026", - "date": "2026-01-29", - "time": "8:30p", + "game_datetime_utc": "2026-01-30T02:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "MIN", @@ -34239,8 +32337,7 @@ "canonical_id": "game_nhl_2025_20260129_tor_sea", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "SEA", @@ -34257,8 +32354,7 @@ "canonical_id": "game_nhl_2025_20260129_dal_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Dallas Stars", "home_team_abbrev": "VGK", @@ -34275,8 +32371,7 @@ "canonical_id": "game_nhl_2025_20260129_ana_van", "sport": "NHL", "season": "2026", - "date": "2026-01-29", - "time": "7p", + "game_datetime_utc": "2026-01-30T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Anaheim Ducks", "home_team_abbrev": "VAN", @@ -34293,8 +32388,7 @@ "canonical_id": "game_nba_2025_20260130_lal_was", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Los Angeles Lakers", "home_team_abbrev": "WAS", @@ -34311,8 +32405,7 @@ "canonical_id": "game_nba_2025_20260130_tor_orl", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Toronto Raptors", "home_team_abbrev": "ORL", @@ -34329,8 +32422,7 @@ "canonical_id": "game_nba_2025_20260130_por_nyk", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "New York Knicks", "away_team": "Portland Blazers", "home_team_abbrev": "NYK", @@ -34347,8 +32439,7 @@ "canonical_id": "game_nba_2025_20260130_sac_bos", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Sacramento Kings", "home_team_abbrev": "BOS", @@ -34365,8 +32456,7 @@ "canonical_id": "game_nba_2025_20260130_mem_nop", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "6:30p", + "game_datetime_utc": "2026-01-31T00:30:00Z", "home_team": "New Orleans Pelicans", "away_team": "Memphis Grizzlies", "home_team_abbrev": "NOP", @@ -34383,8 +32473,7 @@ "canonical_id": "game_nhl_2025_20260130_cbj_chi", "sport": "NHL", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CHI", @@ -34401,8 +32490,7 @@ "canonical_id": "game_nba_2025_20260130_lac_den", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DEN", @@ -34419,8 +32507,7 @@ "canonical_id": "game_nba_2025_20260130_cle_phx", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "9p", + "game_datetime_utc": "2026-01-31T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "PHX", @@ -34437,8 +32524,7 @@ "canonical_id": "game_nba_2025_20260130_brk_uta", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7:30p", + "game_datetime_utc": "2026-01-31T02:30:00Z", "home_team": "Utah Jazz", "away_team": "Brooklyn Nets", "home_team_abbrev": "UTA", @@ -34455,8 +32541,7 @@ "canonical_id": "game_nba_2025_20260130_det_gsw", "sport": "NBA", "season": "2026", - "date": "2026-01-30", - "time": "7p", + "game_datetime_utc": "2026-01-31T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Detroit Pistons", "home_team_abbrev": "GSW", @@ -34473,8 +32558,7 @@ "canonical_id": "game_nhl_2025_20260131_la_phi", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "12:30p", + "game_datetime_utc": "2026-01-31T17:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Los Angeles Kings", "home_team_abbrev": "PHI", @@ -34491,8 +32575,7 @@ "canonical_id": "game_nhl_2025_20260131_col_det", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "1p", + "game_datetime_utc": "2026-01-31T18:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Colorado Avalanche", "home_team_abbrev": "DET", @@ -34509,8 +32592,7 @@ "canonical_id": "game_nba_2025_20260131_sas_cho", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "3p", + "game_datetime_utc": "2026-01-31T20:00:00Z", "home_team": "Charlotte Hornets", "away_team": "San Antonio Spurs", "home_team_abbrev": "CHA", @@ -34527,8 +32609,7 @@ "canonical_id": "game_nhl_2025_20260131_nyr_pit", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "3:30p", + "game_datetime_utc": "2026-01-31T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New York Rangers", "home_team_abbrev": "PIT", @@ -34545,8 +32626,7 @@ "canonical_id": "game_nhl_2025_20260131_sj_cgy", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "2p", + "game_datetime_utc": "2026-01-31T21:00:00Z", "home_team": "Calgary Flames", "away_team": "San Jose Sharks", "home_team_abbrev": "CGY", @@ -34563,8 +32643,7 @@ "canonical_id": "game_nhl_2025_20260131_wpg_fla", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "4p", + "game_datetime_utc": "2026-01-31T21:00:00Z", "home_team": "Florida Panthers", "away_team": "Winnipeg Jets", "home_team_abbrev": "FLA", @@ -34581,8 +32660,7 @@ "canonical_id": "game_nhl_2025_20260131_car_was", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "5p", + "game_datetime_utc": "2026-01-31T22:00:00Z", "home_team": "Washington Capitals", "away_team": "Carolina Hurricanes", "home_team_abbrev": "WAS", @@ -34599,8 +32677,7 @@ "canonical_id": "game_nba_2025_20260131_atl_ind", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Atlanta Hawks", "home_team_abbrev": "IND", @@ -34617,8 +32694,7 @@ "canonical_id": "game_nhl_2025_20260131_cbj_stl", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "6p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "STL", @@ -34635,8 +32711,7 @@ "canonical_id": "game_nhl_2025_20260131_tor_van", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "4p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "VAN", @@ -34653,8 +32728,7 @@ "canonical_id": "game_nhl_2025_20260131_njd_ott", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "New Jersey Devils", "home_team_abbrev": "OTT", @@ -34671,8 +32745,7 @@ "canonical_id": "game_nhl_2025_20260131_nsh_nyi", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "New York Islanders", "away_team": "Nashville Predators", "home_team_abbrev": "NYI", @@ -34689,8 +32762,7 @@ "canonical_id": "game_nhl_2025_20260131_mtl_buf", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Montreal Canadiens", "home_team_abbrev": "BUF", @@ -34707,8 +32779,7 @@ "canonical_id": "game_nba_2025_20260131_nop_phi", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "4:30p", + "game_datetime_utc": "2026-02-01T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHI", @@ -34725,8 +32796,7 @@ "canonical_id": "game_nba_2025_20260131_min_mem", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MEM", @@ -34743,8 +32813,7 @@ "canonical_id": "game_nba_2025_20260131_chi_mia", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "8p", + "game_datetime_utc": "2026-02-01T01:00:00Z", "home_team": "Miami Heat", "away_team": "Chicago Bulls", "home_team_abbrev": "MIA", @@ -34761,8 +32830,7 @@ "canonical_id": "game_nba_2025_20260131_dal_hou", "sport": "NBA", "season": "2026", - "date": "2026-01-31", - "time": "7:30p", + "game_datetime_utc": "2026-02-01T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Dallas Mavericks", "home_team_abbrev": "HOU", @@ -34779,8 +32847,7 @@ "canonical_id": "game_nhl_2025_20260131_dal_ari", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T02:00:00Z", "home_team": "Utah Club", "away_team": "Dallas Stars", "home_team_abbrev": "ARI", @@ -34797,8 +32864,7 @@ "canonical_id": "game_nhl_2025_20260131_min_edm", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "8p", + "game_datetime_utc": "2026-02-01T03:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Minnesota Wild", "home_team_abbrev": "EDM", @@ -34815,8 +32881,7 @@ "canonical_id": "game_nhl_2025_20260131_sea_vgk", "sport": "NHL", "season": "2026", - "date": "2026-01-31", - "time": "7p", + "game_datetime_utc": "2026-02-01T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Seattle Kraken", "home_team_abbrev": "VGK", @@ -34833,8 +32898,7 @@ "canonical_id": "game_nhl_2025_20260201_la_car", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "3p", + "game_datetime_utc": "2026-02-01T20:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Los Angeles Kings", "home_team_abbrev": "CAR", @@ -34851,8 +32915,7 @@ "canonical_id": "game_nba_2025_20260201_mil_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "3:30p", + "game_datetime_utc": "2026-02-01T20:30:00Z", "home_team": "Boston Celtics", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BOS", @@ -34869,8 +32932,7 @@ "canonical_id": "game_nba_2025_20260201_orl_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "3p", + "game_datetime_utc": "2026-02-01T21:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Orlando Magic", "home_team_abbrev": "SAS", @@ -34887,8 +32949,7 @@ "canonical_id": "game_nba_2025_20260201_uta_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Utah Jazz", "home_team_abbrev": "TOR", @@ -34905,8 +32966,7 @@ "canonical_id": "game_nba_2025_20260201_brk_det", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Brooklyn Nets", "home_team_abbrev": "DET", @@ -34923,8 +32983,7 @@ "canonical_id": "game_nba_2025_20260201_chi_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Miami Heat", "away_team": "Chicago Bulls", "home_team_abbrev": "MIA", @@ -34941,8 +33000,7 @@ "canonical_id": "game_nba_2025_20260201_sac_was", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Sacramento Kings", "home_team_abbrev": "WAS", @@ -34959,8 +33017,7 @@ "canonical_id": "game_nhl_2025_20260201_bos_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "6:30p", + "game_datetime_utc": "2026-02-01T23:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Boston Bruins", "home_team_abbrev": "TB", @@ -34977,8 +33034,7 @@ "canonical_id": "game_nba_2025_20260201_lal_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "7p", + "game_datetime_utc": "2026-02-02T00:00:00Z", "home_team": "New York Knicks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "NYK", @@ -34995,8 +33051,7 @@ "canonical_id": "game_nba_2025_20260201_lac_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "8p", + "game_datetime_utc": "2026-02-02T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Clippers", "home_team_abbrev": "PHX", @@ -35013,8 +33068,7 @@ "canonical_id": "game_nba_2025_20260201_cle_por", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "6p", + "game_datetime_utc": "2026-02-02T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "POR", @@ -35031,8 +33085,7 @@ "canonical_id": "game_nba_2025_20260201_okc_den", "sport": "NBA", "season": "2026", - "date": "2026-02-01", - "time": "7:30p", + "game_datetime_utc": "2026-02-02T02:30:00Z", "home_team": "Denver Nuggets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DEN", @@ -35049,8 +33102,7 @@ "canonical_id": "game_nhl_2025_20260201_vgk_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-01", - "time": "6:30p", + "game_datetime_utc": "2026-02-02T02:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "ANA", @@ -35067,8 +33119,7 @@ "canonical_id": "game_nba_2025_20260202_nop_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "CHA", @@ -35085,8 +33136,7 @@ "canonical_id": "game_nba_2025_20260202_hou_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Houston Rockets", "home_team_abbrev": "IND", @@ -35103,8 +33153,7 @@ "canonical_id": "game_nhl_2025_20260202_ott_pit", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Ottawa Senators", "home_team_abbrev": "PIT", @@ -35121,8 +33170,7 @@ "canonical_id": "game_nhl_2025_20260202_buf_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Buffalo Sabres", "home_team_abbrev": "FLA", @@ -35139,8 +33187,7 @@ "canonical_id": "game_nhl_2025_20260202_nyi_was", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T00:00:00Z", "home_team": "Washington Capitals", "away_team": "New York Islanders", "home_team_abbrev": "WAS", @@ -35157,8 +33204,7 @@ "canonical_id": "game_nba_2025_20260202_min_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "6:30p", + "game_datetime_utc": "2026-02-03T00:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "MEM", @@ -35175,8 +33221,7 @@ "canonical_id": "game_nhl_2025_20260202_mtl_min", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "6:30p", + "game_datetime_utc": "2026-02-03T00:30:00Z", "home_team": "Minnesota Wild", "away_team": "Montreal Canadiens", "home_team_abbrev": "MIN", @@ -35193,8 +33238,7 @@ "canonical_id": "game_nhl_2025_20260202_stl_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T01:00:00Z", "home_team": "Nashville Predators", "away_team": "St. Louis Blues", "home_team_abbrev": "NSH", @@ -35211,8 +33255,7 @@ "canonical_id": "game_nhl_2025_20260202_wpg_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T01:30:00Z", "home_team": "Dallas Stars", "away_team": "Winnipeg Jets", "home_team_abbrev": "DAL", @@ -35229,8 +33272,7 @@ "canonical_id": "game_nhl_2025_20260202_sj_chi", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "San Jose Sharks", "home_team_abbrev": "CHI", @@ -35247,8 +33289,7 @@ "canonical_id": "game_nhl_2025_20260202_det_col", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Detroit Red Wings", "home_team_abbrev": "COL", @@ -35265,8 +33306,7 @@ "canonical_id": "game_nhl_2025_20260202_van_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "7:30p", + "game_datetime_utc": "2026-02-03T02:30:00Z", "home_team": "Utah Club", "away_team": "Vancouver Canucks", "home_team_abbrev": "ARI", @@ -35283,8 +33323,7 @@ "canonical_id": "game_nba_2025_20260202_phi_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-02", - "time": "7p", + "game_datetime_utc": "2026-02-03T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "LAC", @@ -35301,8 +33340,7 @@ "canonical_id": "game_nhl_2025_20260202_tor_cgy", "sport": "NHL", "season": "2026", - "date": "2026-02-02", - "time": "8p", + "game_datetime_utc": "2026-02-03T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "CGY", @@ -35319,8 +33357,7 @@ "canonical_id": "game_nba_2025_20260203_nyk_was", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Washington Wizards", "away_team": "New York Knicks", "home_team_abbrev": "WAS", @@ -35337,8 +33374,7 @@ "canonical_id": "game_nba_2025_20260203_den_det", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Denver Nuggets", "home_team_abbrev": "DET", @@ -35355,8 +33391,7 @@ "canonical_id": "game_nba_2025_20260203_uta_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Utah Jazz", "home_team_abbrev": "IND", @@ -35373,8 +33408,7 @@ "canonical_id": "game_nhl_2025_20260203_cbj_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NJ", @@ -35391,8 +33425,7 @@ "canonical_id": "game_nhl_2025_20260203_ott_car", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Ottawa Senators", "home_team_abbrev": "CAR", @@ -35409,8 +33442,7 @@ "canonical_id": "game_nhl_2025_20260203_was_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Washington Capitals", "home_team_abbrev": "PHI", @@ -35427,8 +33459,7 @@ "canonical_id": "game_nba_2025_20260203_atl_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Miami Heat", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIA", @@ -35445,8 +33476,7 @@ "canonical_id": "game_nba_2025_20260203_lal_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "BKN", @@ -35463,8 +33493,7 @@ "canonical_id": "game_nhl_2025_20260203_buf_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Buffalo Sabres", "home_team_abbrev": "TB", @@ -35481,8 +33510,7 @@ "canonical_id": "game_nhl_2025_20260203_pit_nyi", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7:30p", + "game_datetime_utc": "2026-02-04T00:30:00Z", "home_team": "New York Islanders", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYI", @@ -35499,8 +33527,7 @@ "canonical_id": "game_nba_2025_20260203_chi_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Chicago Bulls", "home_team_abbrev": "MIL", @@ -35517,8 +33544,7 @@ "canonical_id": "game_nba_2025_20260203_bos_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Boston Celtics", "home_team_abbrev": "DAL", @@ -35535,8 +33561,7 @@ "canonical_id": "game_nba_2025_20260203_orl_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Orlando Magic", "home_team_abbrev": "OKC", @@ -35553,8 +33578,7 @@ "canonical_id": "game_nhl_2025_20260203_tor_edm", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "6:30p", + "game_datetime_utc": "2026-02-04T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "EDM", @@ -35571,8 +33595,7 @@ "canonical_id": "game_nba_2025_20260203_phi_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Philadelphia 76ers", "home_team_abbrev": "GSW", @@ -35589,8 +33612,7 @@ "canonical_id": "game_nhl_2025_20260203_sea_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-03", - "time": "7p", + "game_datetime_utc": "2026-02-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Seattle Kraken", "home_team_abbrev": "ANA", @@ -35607,8 +33629,7 @@ "canonical_id": "game_nba_2025_20260203_phx_por", "sport": "NBA", "season": "2026", - "date": "2026-02-03", - "time": "8p", + "game_datetime_utc": "2026-02-04T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Phoenix Suns", "home_team_abbrev": "POR", @@ -35625,8 +33646,7 @@ "canonical_id": "game_nba_2025_20260204_den_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "New York Knicks", "away_team": "Denver Nuggets", "home_team_abbrev": "NYK", @@ -35643,8 +33663,7 @@ "canonical_id": "game_nhl_2025_20260204_bos_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Boston Bruins", "home_team_abbrev": "FLA", @@ -35661,8 +33680,7 @@ "canonical_id": "game_nhl_2025_20260204_chi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "CBJ", @@ -35679,8 +33697,7 @@ "canonical_id": "game_nhl_2025_20260204_mtl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "6p", + "game_datetime_utc": "2026-02-05T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Montreal Canadiens", "home_team_abbrev": "WPG", @@ -35697,8 +33714,7 @@ "canonical_id": "game_nba_2025_20260204_min_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7:30p", + "game_datetime_utc": "2026-02-05T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "TOR", @@ -35715,8 +33731,7 @@ "canonical_id": "game_nba_2025_20260204_nop_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIL", @@ -35733,8 +33748,7 @@ "canonical_id": "game_nba_2025_20260204_bos_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Boston Celtics", "home_team_abbrev": "HOU", @@ -35751,8 +33765,7 @@ "canonical_id": "game_nhl_2025_20260204_min_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Minnesota Wild", "home_team_abbrev": "NSH", @@ -35769,8 +33782,7 @@ "canonical_id": "game_nhl_2025_20260204_det_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T02:00:00Z", "home_team": "Utah Club", "away_team": "Detroit Red Wings", "home_team_abbrev": "ARI", @@ -35787,8 +33799,7 @@ "canonical_id": "game_nhl_2025_20260204_sj_col", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "San Jose Sharks", "home_team_abbrev": "COL", @@ -35805,8 +33816,7 @@ "canonical_id": "game_nba_2025_20260204_okc_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "8:30p", + "game_datetime_utc": "2026-02-05T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "SAS", @@ -35823,8 +33833,7 @@ "canonical_id": "game_nhl_2025_20260204_stl_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "8:30p", + "game_datetime_utc": "2026-02-05T02:30:00Z", "home_team": "Dallas Stars", "away_team": "St. Louis Blues", "home_team_abbrev": "DAL", @@ -35841,8 +33850,7 @@ "canonical_id": "game_nba_2025_20260204_mem_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Memphis Grizzlies", "home_team_abbrev": "SAC", @@ -35859,8 +33867,7 @@ "canonical_id": "game_nhl_2025_20260204_van_vgk", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Vancouver Canucks", "home_team_abbrev": "VGK", @@ -35877,8 +33884,7 @@ "canonical_id": "game_nhl_2025_20260204_edm_cgy", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "8p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Edmonton Oilers", "home_team_abbrev": "CGY", @@ -35895,8 +33901,7 @@ "canonical_id": "game_nhl_2025_20260204_sea_la", "sport": "NHL", "season": "2026", - "date": "2026-02-04", - "time": "7p", + "game_datetime_utc": "2026-02-05T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Seattle Kraken", "home_team_abbrev": "LA", @@ -35913,8 +33918,7 @@ "canonical_id": "game_nba_2025_20260204_cle_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-04", - "time": "7:30p", + "game_datetime_utc": "2026-02-05T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "LAC", @@ -35931,8 +33935,7 @@ "canonical_id": "game_nba_2025_20260205_was_det", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Washington Wizards", "home_team_abbrev": "DET", @@ -35949,8 +33952,7 @@ "canonical_id": "game_nba_2025_20260205_brk_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Brooklyn Nets", "home_team_abbrev": "ORL", @@ -35967,8 +33969,7 @@ "canonical_id": "game_nhl_2025_20260205_car_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYR", @@ -35985,8 +33986,7 @@ "canonical_id": "game_nhl_2025_20260205_nsh_was", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Nashville Predators", "home_team_abbrev": "WAS", @@ -36003,8 +34003,7 @@ "canonical_id": "game_nhl_2025_20260205_ott_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Ottawa Senators", "home_team_abbrev": "PHI", @@ -36021,8 +34020,7 @@ "canonical_id": "game_nhl_2025_20260205_pit_buf", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BUF", @@ -36039,8 +34037,7 @@ "canonical_id": "game_nhl_2025_20260205_nyi_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Islanders", "home_team_abbrev": "NJ", @@ -36057,8 +34054,7 @@ "canonical_id": "game_nba_2025_20260205_chi_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Chicago Bulls", "home_team_abbrev": "TOR", @@ -36075,8 +34071,7 @@ "canonical_id": "game_nba_2025_20260205_uta_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Utah Jazz", "home_team_abbrev": "ATL", @@ -36093,8 +34088,7 @@ "canonical_id": "game_nhl_2025_20260205_fla_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Florida Panthers", "home_team_abbrev": "TB", @@ -36111,8 +34105,7 @@ "canonical_id": "game_nba_2025_20260205_cho_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Charlotte Hornets", "home_team_abbrev": "HOU", @@ -36129,8 +34122,7 @@ "canonical_id": "game_nba_2025_20260205_sas_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7:30p", + "game_datetime_utc": "2026-02-06T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "San Antonio Spurs", "home_team_abbrev": "DAL", @@ -36147,8 +34139,7 @@ "canonical_id": "game_nba_2025_20260205_phi_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "LAL", @@ -36165,8 +34156,7 @@ "canonical_id": "game_nba_2025_20260205_gsw_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-05", - "time": "10p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Golden State Warriors", "home_team_abbrev": "PHX", @@ -36183,8 +34173,7 @@ "canonical_id": "game_nhl_2025_20260205_la_vgk", "sport": "NHL", "season": "2026", - "date": "2026-02-05", - "time": "7p", + "game_datetime_utc": "2026-02-06T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Los Angeles Kings", "home_team_abbrev": "VGK", @@ -36201,8 +34190,7 @@ "canonical_id": "game_nba_2025_20260206_nyk_det", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7:30p", + "game_datetime_utc": "2026-02-07T00:30:00Z", "home_team": "Detroit Pistons", "away_team": "New York Knicks", "home_team_abbrev": "DET", @@ -36219,8 +34207,7 @@ "canonical_id": "game_nba_2025_20260206_mia_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7:30p", + "game_datetime_utc": "2026-02-07T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Miami Heat", "home_team_abbrev": "BOS", @@ -36237,8 +34224,7 @@ "canonical_id": "game_nba_2025_20260206_nop_min", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIN", @@ -36255,8 +34241,7 @@ "canonical_id": "game_nba_2025_20260206_ind_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Indiana Pacers", "home_team_abbrev": "MIL", @@ -36273,8 +34258,7 @@ "canonical_id": "game_nba_2025_20260206_lac_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAC", @@ -36291,8 +34275,7 @@ "canonical_id": "game_nba_2025_20260206_mem_por", "sport": "NBA", "season": "2026", - "date": "2026-02-06", - "time": "7p", + "game_datetime_utc": "2026-02-07T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "POR", @@ -36309,8 +34292,7 @@ "canonical_id": "game_nba_2025_20260207_was_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "3p", + "game_datetime_utc": "2026-02-07T20:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Washington Wizards", "home_team_abbrev": "BKN", @@ -36327,8 +34309,7 @@ "canonical_id": "game_nba_2025_20260207_hou_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "2:30p", + "game_datetime_utc": "2026-02-07T20:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Houston Rockets", "home_team_abbrev": "OKC", @@ -36345,8 +34326,7 @@ "canonical_id": "game_nba_2025_20260207_dal_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "5p", + "game_datetime_utc": "2026-02-07T23:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAS", @@ -36363,8 +34343,7 @@ "canonical_id": "game_nba_2025_20260207_uta_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Utah Jazz", "home_team_abbrev": "ORL", @@ -36381,8 +34360,7 @@ "canonical_id": "game_nba_2025_20260207_cho_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7:30p", + "game_datetime_utc": "2026-02-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Charlotte Hornets", "home_team_abbrev": "ATL", @@ -36399,8 +34377,7 @@ "canonical_id": "game_nba_2025_20260207_den_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Denver Nuggets", "home_team_abbrev": "CHI", @@ -36417,8 +34394,7 @@ "canonical_id": "game_nba_2025_20260207_gsw_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "5:30p", + "game_datetime_utc": "2026-02-08T01:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAL", @@ -36435,8 +34411,7 @@ "canonical_id": "game_nba_2025_20260207_phi_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "9p", + "game_datetime_utc": "2026-02-08T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Philadelphia 76ers", "home_team_abbrev": "PHX", @@ -36453,8 +34428,7 @@ "canonical_id": "game_nba_2025_20260207_cle_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "SAC", @@ -36471,8 +34445,7 @@ "canonical_id": "game_nba_2025_20260207_mem_por", "sport": "NBA", "season": "2026", - "date": "2026-02-07", - "time": "7p", + "game_datetime_utc": "2026-02-08T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "POR", @@ -36489,8 +34462,7 @@ "canonical_id": "game_nba_2025_20260208_nyk_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "12:30p", + "game_datetime_utc": "2026-02-08T17:30:00Z", "home_team": "Boston Celtics", "away_team": "New York Knicks", "home_team_abbrev": "BOS", @@ -36507,8 +34479,7 @@ "canonical_id": "game_nba_2025_20260208_mia_was", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "2p", + "game_datetime_utc": "2026-02-08T19:00:00Z", "home_team": "Washington Wizards", "away_team": "Miami Heat", "home_team_abbrev": "WAS", @@ -36525,8 +34496,7 @@ "canonical_id": "game_nba_2025_20260208_lac_min", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "2p", + "game_datetime_utc": "2026-02-08T20:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIN", @@ -36543,8 +34513,7 @@ "canonical_id": "game_nba_2025_20260208_ind_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-08", - "time": "3p", + "game_datetime_utc": "2026-02-08T20:00:00Z", "home_team": "Toronto Raptors", "away_team": "Indiana Pacers", "home_team_abbrev": "TOR", @@ -36561,8 +34530,7 @@ "canonical_id": "game_nba_2025_20260209_det_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Detroit Pistons", "home_team_abbrev": "CHA", @@ -36579,8 +34547,7 @@ "canonical_id": "game_nba_2025_20260209_chi_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Chicago Bulls", "home_team_abbrev": "BKN", @@ -36597,8 +34564,7 @@ "canonical_id": "game_nba_2025_20260209_uta_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Miami Heat", "away_team": "Utah Jazz", "home_team_abbrev": "MIA", @@ -36615,8 +34581,7 @@ "canonical_id": "game_nba_2025_20260209_mil_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7:30p", + "game_datetime_utc": "2026-02-10T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ORL", @@ -36633,8 +34598,7 @@ "canonical_id": "game_nba_2025_20260209_sac_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Sacramento Kings", "home_team_abbrev": "NOP", @@ -36651,8 +34615,7 @@ "canonical_id": "game_nba_2025_20260209_atl_min", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIN", @@ -36669,8 +34632,7 @@ "canonical_id": "game_nba_2025_20260209_cle_den", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DEN", @@ -36687,8 +34649,7 @@ "canonical_id": "game_nba_2025_20260209_phi_por", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "POR", @@ -36705,8 +34666,7 @@ "canonical_id": "game_nba_2025_20260209_okc_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAL", @@ -36723,8 +34683,7 @@ "canonical_id": "game_nba_2025_20260209_mem_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-09", - "time": "7p", + "game_datetime_utc": "2026-02-10T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Memphis Grizzlies", "home_team_abbrev": "GSW", @@ -36741,8 +34700,7 @@ "canonical_id": "game_nba_2025_20260210_ind_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7:30p", + "game_datetime_utc": "2026-02-11T00:30:00Z", "home_team": "New York Knicks", "away_team": "Indiana Pacers", "home_team_abbrev": "NYK", @@ -36759,8 +34717,7 @@ "canonical_id": "game_nba_2025_20260210_lac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7p", + "game_datetime_utc": "2026-02-11T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -36777,8 +34734,7 @@ "canonical_id": "game_nba_2025_20260210_dal_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "9p", + "game_datetime_utc": "2026-02-11T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHX", @@ -36795,8 +34751,7 @@ "canonical_id": "game_nba_2025_20260210_sas_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-10", - "time": "7:30p", + "game_datetime_utc": "2026-02-11T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAL", @@ -36813,8 +34768,7 @@ "canonical_id": "game_nba_2025_20260211_atl_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Atlanta Hawks", "home_team_abbrev": "CHA", @@ -36831,8 +34785,7 @@ "canonical_id": "game_nba_2025_20260211_mil_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ORL", @@ -36849,8 +34802,7 @@ "canonical_id": "game_nba_2025_20260211_was_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "6p", + "game_datetime_utc": "2026-02-12T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Washington Wizards", "home_team_abbrev": "CLE", @@ -36867,8 +34819,7 @@ "canonical_id": "game_nba_2025_20260211_det_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Detroit Pistons", "home_team_abbrev": "TOR", @@ -36885,8 +34836,7 @@ "canonical_id": "game_nba_2025_20260211_chi_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Chicago Bulls", "home_team_abbrev": "BOS", @@ -36903,8 +34853,7 @@ "canonical_id": "game_nba_2025_20260211_ind_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Indiana Pacers", "home_team_abbrev": "BKN", @@ -36921,8 +34870,7 @@ "canonical_id": "game_nba_2025_20260211_nyk_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "4:30p", + "game_datetime_utc": "2026-02-12T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "New York Knicks", "home_team_abbrev": "PHI", @@ -36939,8 +34887,7 @@ "canonical_id": "game_nba_2025_20260211_mia_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Miami Heat", "home_team_abbrev": "NOP", @@ -36957,8 +34904,7 @@ "canonical_id": "game_nba_2025_20260211_por_min", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Portland Blazers", "home_team_abbrev": "MIN", @@ -36975,8 +34921,7 @@ "canonical_id": "game_nba_2025_20260211_lac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Clippers", "home_team_abbrev": "HOU", @@ -36993,8 +34938,7 @@ "canonical_id": "game_nba_2025_20260211_okc_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "9p", + "game_datetime_utc": "2026-02-12T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHX", @@ -37011,8 +34955,7 @@ "canonical_id": "game_nba_2025_20260211_sac_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Sacramento Kings", "home_team_abbrev": "UTA", @@ -37029,8 +34972,7 @@ "canonical_id": "game_nba_2025_20260211_mem_den", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "8p", + "game_datetime_utc": "2026-02-12T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DEN", @@ -37047,8 +34989,7 @@ "canonical_id": "game_nba_2025_20260211_sas_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-11", - "time": "7p", + "game_datetime_utc": "2026-02-12T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "San Antonio Spurs", "home_team_abbrev": "GSW", @@ -37065,8 +35006,7 @@ "canonical_id": "game_nba_2025_20260212_mil_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "6:30p", + "game_datetime_utc": "2026-02-13T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Milwaukee Bucks", "home_team_abbrev": "OKC", @@ -37083,8 +35023,7 @@ "canonical_id": "game_nba_2025_20260212_por_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "7p", + "game_datetime_utc": "2026-02-13T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Portland Blazers", "home_team_abbrev": "UTA", @@ -37101,8 +35040,7 @@ "canonical_id": "game_nba_2025_20260212_dal_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-12", - "time": "7p", + "game_datetime_utc": "2026-02-13T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAL", @@ -37119,8 +35057,7 @@ "canonical_id": "game_nba_2025_20260219_brk_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "6p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Brooklyn Nets", "home_team_abbrev": "CLE", @@ -37137,8 +35074,7 @@ "canonical_id": "game_nba_2025_20260219_atl_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "4p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Atlanta Hawks", "home_team_abbrev": "PHI", @@ -37155,8 +35091,7 @@ "canonical_id": "game_nba_2025_20260219_ind_was", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Indiana Pacers", "home_team_abbrev": "WAS", @@ -37173,8 +35108,7 @@ "canonical_id": "game_nba_2025_20260219_hou_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Houston Rockets", "home_team_abbrev": "CHA", @@ -37191,8 +35125,7 @@ "canonical_id": "game_nba_2025_20260219_det_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T00:30:00Z", "home_team": "New York Knicks", "away_team": "Detroit Pistons", "home_team_abbrev": "NYK", @@ -37209,8 +35142,7 @@ "canonical_id": "game_nba_2025_20260219_tor_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Toronto Raptors", "home_team_abbrev": "CHI", @@ -37227,8 +35159,7 @@ "canonical_id": "game_nba_2025_20260219_phx_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T01:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Phoenix Suns", "home_team_abbrev": "SAS", @@ -37245,8 +35176,7 @@ "canonical_id": "game_nba_2025_20260219_bos_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Boston Celtics", "home_team_abbrev": "GSW", @@ -37263,8 +35193,7 @@ "canonical_id": "game_nba_2025_20260219_orl_sac", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7p", + "game_datetime_utc": "2026-02-20T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "Orlando Magic", "home_team_abbrev": "SAC", @@ -37281,8 +35210,7 @@ "canonical_id": "game_nba_2025_20260219_den_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-19", - "time": "7:30p", + "game_datetime_utc": "2026-02-20T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAC", @@ -37299,8 +35227,7 @@ "canonical_id": "game_nba_2025_20260220_uta_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "6p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Utah Jazz", "home_team_abbrev": "MEM", @@ -37317,8 +35244,7 @@ "canonical_id": "game_nba_2025_20260220_cle_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHA", @@ -37335,8 +35261,7 @@ "canonical_id": "game_nba_2025_20260220_ind_was", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Indiana Pacers", "home_team_abbrev": "WAS", @@ -37353,8 +35278,7 @@ "canonical_id": "game_nba_2025_20260220_dal_min", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "6:30p", + "game_datetime_utc": "2026-02-21T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIN", @@ -37371,8 +35295,7 @@ "canonical_id": "game_nba_2025_20260220_mia_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7:30p", + "game_datetime_utc": "2026-02-21T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Miami Heat", "home_team_abbrev": "ATL", @@ -37389,8 +35312,7 @@ "canonical_id": "game_nba_2025_20260220_mil_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Milwaukee Bucks", "home_team_abbrev": "NOP", @@ -37407,8 +35329,7 @@ "canonical_id": "game_nba_2025_20260220_brk_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T01:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Brooklyn Nets", "home_team_abbrev": "OKC", @@ -37425,8 +35346,7 @@ "canonical_id": "game_nba_2025_20260220_den_por", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T03:00:00Z", "home_team": "Portland Blazers", "away_team": "Denver Nuggets", "home_team_abbrev": "POR", @@ -37443,8 +35363,7 @@ "canonical_id": "game_nba_2025_20260220_lac_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-20", - "time": "7p", + "game_datetime_utc": "2026-02-21T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "LAL", @@ -37461,8 +35380,7 @@ "canonical_id": "game_mls_2026_20260221_clt_stl", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "1:30p", + "game_datetime_utc": "2026-02-21T19:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "STL", @@ -37479,8 +35397,7 @@ "canonical_id": "game_mls_2026_20260221_atl_cin", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "4:45p", + "game_datetime_utc": "2026-02-21T21:45:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CIN", @@ -37497,8 +35414,7 @@ "canonical_id": "game_nba_2025_20260221_orl_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "5p", + "game_datetime_utc": "2026-02-21T22:00:00Z", "home_team": "Phoenix Suns", "away_team": "Orlando Magic", "home_team_abbrev": "PHX", @@ -37515,8 +35431,7 @@ "canonical_id": "game_nba_2025_20260221_phi_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "6p", + "game_datetime_utc": "2026-02-22T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Philadelphia 76ers", "home_team_abbrev": "NOP", @@ -37533,8 +35448,7 @@ "canonical_id": "game_mls_2026_20260222_slc_van", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "4:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "VAN", @@ -37551,8 +35465,7 @@ "canonical_id": "game_mls_2026_20260222_phi_dc", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Washington D.C. United", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "DC", @@ -37569,8 +35482,7 @@ "canonical_id": "game_mls_2026_20260222_ny_orl", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T00:30:00Z", "home_team": "Orlando Orlando City", "away_team": "New York New York Red Bulls", "home_team_abbrev": "ORL", @@ -37587,8 +35499,7 @@ "canonical_id": "game_nba_2025_20260221_mem_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "8p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "Miami Heat", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIA", @@ -37605,8 +35516,7 @@ "canonical_id": "game_nba_2025_20260221_det_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "7p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Detroit Pistons", "home_team_abbrev": "CHI", @@ -37623,8 +35533,7 @@ "canonical_id": "game_nba_2025_20260221_sac_sas", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "7p", + "game_datetime_utc": "2026-02-22T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Sacramento Kings", "home_team_abbrev": "SAS", @@ -37641,8 +35550,7 @@ "canonical_id": "game_mls_2026_20260222_tor_dal", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Toronto Toronto FC", "home_team_abbrev": "DAL", @@ -37659,8 +35567,7 @@ "canonical_id": "game_mls_2026_20260222_min_aus", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Austin Austin FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "AUS", @@ -37677,8 +35584,7 @@ "canonical_id": "game_mls_2026_20260222_chi_hou", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "HOU", @@ -37695,8 +35601,7 @@ "canonical_id": "game_mls_2026_20260222_ne_nsh", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New England New England Revolution", "home_team_abbrev": "NSH", @@ -37713,8 +35618,7 @@ "canonical_id": "game_nba_2025_20260221_hou_nyk", "sport": "NBA", "season": "2026", - "date": "2026-02-21", - "time": "8:30p", + "game_datetime_utc": "2026-02-22T01:30:00Z", "home_team": "New York Knicks", "away_team": "Houston Rockets", "home_team_abbrev": "NYK", @@ -37731,8 +35635,7 @@ "canonical_id": "game_mls_2026_20260222_mia_lafc", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "6:30p", + "game_datetime_utc": "2026-02-22T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "LAFC", @@ -37749,8 +35652,7 @@ "canonical_id": "game_mls_2026_20260222_skc_sj", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SJ", @@ -37767,8 +35669,7 @@ "canonical_id": "game_mls_2026_20260222_clb_por", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "POR", @@ -37785,8 +35686,7 @@ "canonical_id": "game_mls_2026_20260222_mtl_sd", "sport": "MLS", "season": "2026", - "date": "2026-02-21", - "time": "7:30p", + "game_datetime_utc": "2026-02-22T03:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "SD", @@ -37803,8 +35703,7 @@ "canonical_id": "game_nba_2025_20260222_cle_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "12p", + "game_datetime_utc": "2026-02-22T18:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "OKC", @@ -37821,8 +35720,7 @@ "canonical_id": "game_nba_2025_20260222_brk_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "3:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Brooklyn Nets", "home_team_abbrev": "ATL", @@ -37839,8 +35737,7 @@ "canonical_id": "game_nba_2025_20260222_tor_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "2:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Toronto Raptors", "home_team_abbrev": "MIL", @@ -37857,8 +35754,7 @@ "canonical_id": "game_nba_2025_20260222_den_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "12:30p", + "game_datetime_utc": "2026-02-22T20:30:00Z", "home_team": "Golden State Warriors", "away_team": "Denver Nuggets", "home_team_abbrev": "GSW", @@ -37875,8 +35771,7 @@ "canonical_id": "game_nba_2025_20260222_dal_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "5p", + "game_datetime_utc": "2026-02-22T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Dallas Mavericks", "home_team_abbrev": "IND", @@ -37893,8 +35788,7 @@ "canonical_id": "game_nba_2025_20260222_cho_was", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-22T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Charlotte Hornets", "home_team_abbrev": "WAS", @@ -37911,8 +35805,7 @@ "canonical_id": "game_nba_2025_20260222_bos_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "3:30p", + "game_datetime_utc": "2026-02-22T23:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Boston Celtics", "home_team_abbrev": "LAL", @@ -37929,8 +35822,7 @@ "canonical_id": "game_mls_2026_20260223_nyc_lag", "sport": "MLS", "season": "2026", - "date": "2026-02-22", - "time": "4p", + "game_datetime_utc": "2026-02-23T00:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "New York New York City FC", "home_team_abbrev": "LAG", @@ -37947,8 +35839,7 @@ "canonical_id": "game_nba_2025_20260222_phi_min", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-23T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIN", @@ -37965,8 +35856,7 @@ "canonical_id": "game_nba_2025_20260222_por_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "8p", + "game_datetime_utc": "2026-02-23T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Portland Blazers", "home_team_abbrev": "PHX", @@ -37983,8 +35873,7 @@ "canonical_id": "game_nba_2025_20260222_nyk_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "7p", + "game_datetime_utc": "2026-02-23T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "New York Knicks", "home_team_abbrev": "CHI", @@ -38001,8 +35890,7 @@ "canonical_id": "game_nba_2025_20260222_orl_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-22", - "time": "6p", + "game_datetime_utc": "2026-02-23T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Orlando Magic", "home_team_abbrev": "LAC", @@ -38019,8 +35907,7 @@ "canonical_id": "game_mls_2026_20260223_col_sea", "sport": "MLS", "season": "2026", - "date": "2026-02-22", - "time": "6:15p", + "game_datetime_utc": "2026-02-23T02:15:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SEA", @@ -38037,8 +35924,7 @@ "canonical_id": "game_nba_2025_20260223_sas_det", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "7p", + "game_datetime_utc": "2026-02-24T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "San Antonio Spurs", "home_team_abbrev": "DET", @@ -38055,8 +35941,7 @@ "canonical_id": "game_nba_2025_20260223_sac_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "7p", + "game_datetime_utc": "2026-02-24T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Sacramento Kings", "home_team_abbrev": "MEM", @@ -38073,8 +35958,7 @@ "canonical_id": "game_nba_2025_20260223_uta_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-23", - "time": "8:30p", + "game_datetime_utc": "2026-02-24T02:30:00Z", "home_team": "Houston Rockets", "away_team": "Utah Jazz", "home_team_abbrev": "HOU", @@ -38091,8 +35975,7 @@ "canonical_id": "game_nba_2025_20260224_phi_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "IND", @@ -38109,8 +35992,7 @@ "canonical_id": "game_nba_2025_20260224_was_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Washington Wizards", "home_team_abbrev": "ATL", @@ -38127,8 +36009,7 @@ "canonical_id": "game_nba_2025_20260224_okc_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "TOR", @@ -38145,8 +36026,7 @@ "canonical_id": "game_nba_2025_20260224_dal_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Dallas Mavericks", "home_team_abbrev": "BKN", @@ -38163,8 +36043,7 @@ "canonical_id": "game_nba_2025_20260224_cho_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Charlotte Hornets", "home_team_abbrev": "CHI", @@ -38181,8 +36060,7 @@ "canonical_id": "game_nba_2025_20260224_nyk_cle", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "New York Knicks", "home_team_abbrev": "CLE", @@ -38199,8 +36077,7 @@ "canonical_id": "game_nba_2025_20260224_mia_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Miami Heat", "home_team_abbrev": "MIL", @@ -38217,8 +36094,7 @@ "canonical_id": "game_nba_2025_20260224_gsw_nop", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7p", + "game_datetime_utc": "2026-02-25T01:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Golden State Warriors", "home_team_abbrev": "NOP", @@ -38235,8 +36111,7 @@ "canonical_id": "game_nba_2025_20260224_bos_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "9p", + "game_datetime_utc": "2026-02-25T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Boston Celtics", "home_team_abbrev": "PHX", @@ -38253,8 +36128,7 @@ "canonical_id": "game_nba_2025_20260224_orl_lal", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "7:30p", + "game_datetime_utc": "2026-02-25T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Orlando Magic", "home_team_abbrev": "LAL", @@ -38271,8 +36145,7 @@ "canonical_id": "game_nba_2025_20260224_min_por", "sport": "NBA", "season": "2026", - "date": "2026-02-24", - "time": "8p", + "game_datetime_utc": "2026-02-25T04:00:00Z", "home_team": "Portland Blazers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "POR", @@ -38289,8 +36162,7 @@ "canonical_id": "game_nba_2025_20260225_okc_det", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DET", @@ -38307,8 +36179,7 @@ "canonical_id": "game_nhl_2025_20260225_phi_was", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WAS", @@ -38325,8 +36196,7 @@ "canonical_id": "game_nhl_2025_20260225_buf_njd", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Buffalo Sabres", "home_team_abbrev": "NJ", @@ -38343,8 +36213,7 @@ "canonical_id": "game_nba_2025_20260225_sas_tor", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "San Antonio Spurs", "home_team_abbrev": "TOR", @@ -38361,8 +36230,7 @@ "canonical_id": "game_nba_2025_20260225_gsw_mem", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "6:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Memphis Grizzlies", "away_team": "Golden State Warriors", "home_team_abbrev": "MEM", @@ -38379,8 +36247,7 @@ "canonical_id": "game_nhl_2025_20260225_tor_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T00:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "TB", @@ -38397,8 +36264,7 @@ "canonical_id": "game_nba_2025_20260225_sac_hou", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Sacramento Kings", "home_team_abbrev": "HOU", @@ -38415,8 +36281,7 @@ "canonical_id": "game_nba_2025_20260225_cle_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIL", @@ -38433,8 +36298,7 @@ "canonical_id": "game_nhl_2025_20260225_sea_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Seattle Kraken", "home_team_abbrev": "DAL", @@ -38451,8 +36315,7 @@ "canonical_id": "game_nhl_2025_20260225_col_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T02:00:00Z", "home_team": "Utah Club", "away_team": "Colorado Avalanche", "home_team_abbrev": "ARI", @@ -38469,8 +36332,7 @@ "canonical_id": "game_nba_2025_20260225_bos_den", "sport": "NBA", "season": "2026", - "date": "2026-02-25", - "time": "8p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Boston Celtics", "home_team_abbrev": "DEN", @@ -38487,8 +36349,7 @@ "canonical_id": "game_nhl_2025_20260225_wpg_van", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Winnipeg Jets", "home_team_abbrev": "VAN", @@ -38505,8 +36366,7 @@ "canonical_id": "game_nhl_2025_20260225_vgk_la", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7p", + "game_datetime_utc": "2026-02-26T03:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "LA", @@ -38523,8 +36383,7 @@ "canonical_id": "game_nhl_2025_20260225_edm_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-25", - "time": "7:30p", + "game_datetime_utc": "2026-02-26T03:30:00Z", "home_team": "Anaheim Ducks", "away_team": "Edmonton Oilers", "home_team_abbrev": "ANA", @@ -38541,8 +36400,7 @@ "canonical_id": "game_nba_2025_20260226_cho_ind", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Charlotte Hornets", "home_team_abbrev": "IND", @@ -38559,8 +36417,7 @@ "canonical_id": "game_nba_2025_20260226_mia_phi", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "4p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Miami Heat", "home_team_abbrev": "PHI", @@ -38577,8 +36434,7 @@ "canonical_id": "game_nhl_2025_20260226_det_ott", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Ottawa Senators", "away_team": "Detroit Red Wings", "home_team_abbrev": "OTT", @@ -38595,8 +36451,7 @@ "canonical_id": "game_nhl_2025_20260226_cbj_bos", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BOS", @@ -38613,8 +36468,7 @@ "canonical_id": "game_nhl_2025_20260226_tor_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "FLA", @@ -38631,8 +36485,7 @@ "canonical_id": "game_nhl_2025_20260226_nyi_mtl", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Islanders", "home_team_abbrev": "MTL", @@ -38649,8 +36502,7 @@ "canonical_id": "game_nhl_2025_20260226_njd_pit", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "New Jersey Devils", "home_team_abbrev": "PIT", @@ -38667,8 +36519,7 @@ "canonical_id": "game_nhl_2025_20260226_tb_car", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CAR", @@ -38685,8 +36536,7 @@ "canonical_id": "game_nba_2025_20260226_sas_brk", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Brooklyn Nets", "away_team": "San Antonio Spurs", "home_team_abbrev": "BKN", @@ -38703,8 +36553,7 @@ "canonical_id": "game_nba_2025_20260226_hou_orl", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Orlando Magic", "away_team": "Houston Rockets", "home_team_abbrev": "ORL", @@ -38721,8 +36570,7 @@ "canonical_id": "game_nba_2025_20260226_was_atl", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Washington Wizards", "home_team_abbrev": "ATL", @@ -38739,8 +36587,7 @@ "canonical_id": "game_nba_2025_20260226_por_chi", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Portland Blazers", "home_team_abbrev": "CHI", @@ -38757,8 +36604,7 @@ "canonical_id": "game_nhl_2025_20260226_sea_stl", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "St. Louis Blues", "away_team": "Seattle Kraken", "home_team_abbrev": "STL", @@ -38775,8 +36621,7 @@ "canonical_id": "game_nhl_2025_20260226_chi_nsh", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NSH", @@ -38793,8 +36638,7 @@ "canonical_id": "game_nhl_2025_20260226_phi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "8p", + "game_datetime_utc": "2026-02-27T01:00:00Z", "home_team": "New York Rangers", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYR", @@ -38811,8 +36655,7 @@ "canonical_id": "game_nba_2025_20260226_sac_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Sacramento Kings", "home_team_abbrev": "DAL", @@ -38829,8 +36672,7 @@ "canonical_id": "game_nba_2025_20260226_lal_phx", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "9p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Los Angeles Lakers", "home_team_abbrev": "PHX", @@ -38847,8 +36689,7 @@ "canonical_id": "game_nba_2025_20260226_nop_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Utah Jazz", "away_team": "New Orleans Pelicans", "home_team_abbrev": "UTA", @@ -38865,8 +36706,7 @@ "canonical_id": "game_nhl_2025_20260226_min_col", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Minnesota Wild", "home_team_abbrev": "COL", @@ -38883,8 +36723,7 @@ "canonical_id": "game_nba_2025_20260226_min_lac", "sport": "NBA", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAC", @@ -38901,8 +36740,7 @@ "canonical_id": "game_nhl_2025_20260226_cgy_sj", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7p", + "game_datetime_utc": "2026-02-27T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Calgary Flames", "home_team_abbrev": "SJ", @@ -38919,8 +36757,7 @@ "canonical_id": "game_nhl_2025_20260226_edm_la", "sport": "NHL", "season": "2026", - "date": "2026-02-26", - "time": "7:30p", + "game_datetime_utc": "2026-02-27T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Edmonton Oilers", "home_team_abbrev": "LA", @@ -38937,8 +36774,7 @@ "canonical_id": "game_nba_2025_20260227_cle_det", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DET", @@ -38955,8 +36791,7 @@ "canonical_id": "game_nhl_2025_20260227_vgk_was", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WAS", @@ -38973,8 +36808,7 @@ "canonical_id": "game_nhl_2025_20260227_buf_fla", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T00:00:00Z", "home_team": "Florida Panthers", "away_team": "Buffalo Sabres", "home_team_abbrev": "FLA", @@ -38991,8 +36825,7 @@ "canonical_id": "game_nba_2025_20260227_brk_bos", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7:30p", + "game_datetime_utc": "2026-02-28T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Brooklyn Nets", "home_team_abbrev": "BOS", @@ -39009,8 +36842,7 @@ "canonical_id": "game_nba_2025_20260227_nyk_mil", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "New York Knicks", "home_team_abbrev": "MIL", @@ -39027,8 +36859,7 @@ "canonical_id": "game_nba_2025_20260227_mem_dal", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "7:30p", + "game_datetime_utc": "2026-02-28T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DAL", @@ -39045,8 +36876,7 @@ "canonical_id": "game_nhl_2025_20260227_min_ari", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T02:00:00Z", "home_team": "Utah Club", "away_team": "Minnesota Wild", "home_team_abbrev": "ARI", @@ -39063,8 +36893,7 @@ "canonical_id": "game_nba_2025_20260227_den_okc", "sport": "NBA", "season": "2026", - "date": "2026-02-27", - "time": "8:30p", + "game_datetime_utc": "2026-02-28T02:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Denver Nuggets", "home_team_abbrev": "OKC", @@ -39081,8 +36910,7 @@ "canonical_id": "game_nhl_2025_20260227_wpg_ana", "sport": "NHL", "season": "2026", - "date": "2026-02-27", - "time": "7p", + "game_datetime_utc": "2026-02-28T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Winnipeg Jets", "home_team_abbrev": "ANA", @@ -39099,8 +36927,7 @@ "canonical_id": "game_nhl_2025_20260228_pit_nyr", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "12:30p", + "game_datetime_utc": "2026-02-28T17:30:00Z", "home_team": "New York Rangers", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYR", @@ -39117,8 +36944,7 @@ "canonical_id": "game_nba_2025_20260228_por_cho", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "1p", + "game_datetime_utc": "2026-02-28T18:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Portland Blazers", "home_team_abbrev": "CHA", @@ -39135,8 +36961,7 @@ "canonical_id": "game_mls_2026_20260228_mtl_chi", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "1:30p", + "game_datetime_utc": "2026-02-28T19:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CHI", @@ -39153,8 +36978,7 @@ "canonical_id": "game_mls_2026_20260228_ne_ny", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "2:30p", + "game_datetime_utc": "2026-02-28T19:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "New England New England Revolution", "home_team_abbrev": "RB", @@ -39171,8 +36995,7 @@ "canonical_id": "game_nba_2025_20260228_hou_mia", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "3p", + "game_datetime_utc": "2026-02-28T20:00:00Z", "home_team": "Miami Heat", "away_team": "Houston Rockets", "home_team_abbrev": "MIA", @@ -39189,8 +37012,7 @@ "canonical_id": "game_nhl_2025_20260228_bos_phi", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "3p", + "game_datetime_utc": "2026-02-28T20:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Boston Bruins", "home_team_abbrev": "PHI", @@ -39207,8 +37029,7 @@ "canonical_id": "game_nhl_2025_20260228_edm_sj", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "1p", + "game_datetime_utc": "2026-02-28T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Edmonton Oilers", "home_team_abbrev": "SJ", @@ -39225,8 +37046,7 @@ "canonical_id": "game_mls_2026_20260228_por_col", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "2:30p", + "game_datetime_utc": "2026-02-28T21:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Portland Portland Timbers", "home_team_abbrev": "COL", @@ -39243,8 +37063,7 @@ "canonical_id": "game_mls_2026_20260228_cin_min", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "3:30p", + "game_datetime_utc": "2026-02-28T21:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MIN", @@ -39261,8 +37080,7 @@ "canonical_id": "game_nhl_2025_20260228_njd_stl", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-02-28T22:00:00Z", "home_team": "St. Louis Blues", "away_team": "New Jersey Devils", "home_team_abbrev": "STL", @@ -39279,8 +37097,7 @@ "canonical_id": "game_nhl_2025_20260228_nyi_cbj", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "6p", + "game_datetime_utc": "2026-02-28T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Islanders", "home_team_abbrev": "CBJ", @@ -39297,8 +37114,7 @@ "canonical_id": "game_nhl_2025_20260228_chi_col", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-02-28T23:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Chicago Blackhawks", "home_team_abbrev": "COL", @@ -39315,8 +37131,7 @@ "canonical_id": "game_nba_2025_20260228_tor_was", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Toronto Raptors", "home_team_abbrev": "WAS", @@ -39333,8 +37148,7 @@ "canonical_id": "game_nhl_2025_20260228_was_mtl", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Washington Capitals", "home_team_abbrev": "MTL", @@ -39351,8 +37165,7 @@ "canonical_id": "game_nhl_2025_20260228_cgy_la", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "4p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Calgary Flames", "home_team_abbrev": "LA", @@ -39369,8 +37182,7 @@ "canonical_id": "game_nhl_2025_20260228_buf_tb", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Buffalo Sabres", "home_team_abbrev": "TB", @@ -39387,8 +37199,7 @@ "canonical_id": "game_nhl_2025_20260228_det_car", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Detroit Red Wings", "home_team_abbrev": "CAR", @@ -39405,8 +37216,7 @@ "canonical_id": "game_nhl_2025_20260228_ott_tor", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Ottawa Senators", "home_team_abbrev": "TOR", @@ -39423,8 +37233,7 @@ "canonical_id": "game_mls_2026_20260301_sea_slc", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-01T00:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SLC", @@ -39441,8 +37250,7 @@ "canonical_id": "game_mls_2026_20260301_atl_sj", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "4:30p", + "game_datetime_utc": "2026-03-01T00:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "SJ", @@ -39459,8 +37267,7 @@ "canonical_id": "game_nhl_2025_20260228_nsh_dal", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Nashville Predators", "home_team_abbrev": "DAL", @@ -39477,8 +37284,7 @@ "canonical_id": "game_mls_2026_20260301_lafc_hou", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "HOU", @@ -39495,8 +37301,7 @@ "canonical_id": "game_mls_2026_20260301_clb_skc", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "SKC", @@ -39513,8 +37318,7 @@ "canonical_id": "game_mls_2026_20260301_nsh_dal", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Nashville Nashville SC", "home_team_abbrev": "DAL", @@ -39531,8 +37335,7 @@ "canonical_id": "game_nba_2025_20260228_lal_gsw", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-01T01:30:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "GSW", @@ -39549,8 +37352,7 @@ "canonical_id": "game_mls_2026_20260301_tor_van", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "6:30p", + "game_datetime_utc": "2026-03-01T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Toronto Toronto FC", "home_team_abbrev": "VAN", @@ -39567,8 +37369,7 @@ "canonical_id": "game_nba_2025_20260228_nop_uta", "sport": "NBA", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T02:30:00Z", "home_team": "Utah Jazz", "away_team": "New Orleans Pelicans", "home_team_abbrev": "UTA", @@ -39585,8 +37386,7 @@ "canonical_id": "game_nhl_2025_20260228_van_sea", "sport": "NHL", "season": "2026", - "date": "2026-02-28", - "time": "7p", + "game_datetime_utc": "2026-03-01T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vancouver Canucks", "home_team_abbrev": "SEA", @@ -39603,8 +37403,7 @@ "canonical_id": "game_mls_2026_20260301_clt_lag", "sport": "MLS", "season": "2026", - "date": "2026-02-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-01T03:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "LAG", @@ -39621,8 +37420,7 @@ "canonical_id": "game_nba_2025_20260301_sas_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T18:00:00Z", "home_team": "New York Knicks", "away_team": "San Antonio Spurs", "home_team_abbrev": "NYK", @@ -39639,8 +37437,7 @@ "canonical_id": "game_nhl_2025_20260301_vgk_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T18:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Vegas Golden Knights", "home_team_abbrev": "PIT", @@ -39657,8 +37454,7 @@ "canonical_id": "game_mlb_2026_20260301_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -39675,8 +37471,7 @@ "canonical_id": "game_mlb_2026_20260301_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -39693,8 +37488,7 @@ "canonical_id": "game_mlb_2026_20260301_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -39711,8 +37505,7 @@ "canonical_id": "game_mlb_2026_20260301_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -39729,8 +37522,7 @@ "canonical_id": "game_mlb_2026_20260301_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -39747,8 +37539,7 @@ "canonical_id": "game_mlb_2026_20260301_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -39765,8 +37556,7 @@ "canonical_id": "game_mlb_2026_20260301_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -39783,8 +37573,7 @@ "canonical_id": "game_mlb_2026_20260301_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T18:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -39801,8 +37590,7 @@ "canonical_id": "game_mls_2026_20260301_dc_aus", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "1:30p", + "game_datetime_utc": "2026-03-01T19:30:00Z", "home_team": "Austin Austin FC", "away_team": "Washington D.C. United", "home_team_abbrev": "AUS", @@ -39819,8 +37607,7 @@ "canonical_id": "game_mlb_2026_20260301_chw_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -39837,8 +37624,7 @@ "canonical_id": "game_mlb_2026_20260301_cin_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cincinnati Reds", "home_team_abbrev": "OAK", @@ -39855,8 +37641,7 @@ "canonical_id": "game_mlb_2026_20260301_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -39873,8 +37658,7 @@ "canonical_id": "game_mlb_2026_20260301_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -39891,8 +37675,7 @@ "canonical_id": "game_mlb_2026_20260301_col_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Colorado Rockies", "home_team_abbrev": "CLE", @@ -39909,8 +37692,7 @@ "canonical_id": "game_mlb_2026_20260301_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:05p", + "game_datetime_utc": "2026-03-01T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -39927,8 +37709,7 @@ "canonical_id": "game_mlb_2026_20260301_cle_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -39945,8 +37726,7 @@ "canonical_id": "game_mlb_2026_20260301_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-01", - "time": "1:10p", + "game_datetime_utc": "2026-03-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -39963,8 +37743,7 @@ "canonical_id": "game_nba_2025_20260301_mil_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "2:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Chicago Bulls", "away_team": "Milwaukee Bucks", "home_team_abbrev": "CHI", @@ -39981,8 +37760,7 @@ "canonical_id": "game_nba_2025_20260301_min_den", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "1:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Denver Nuggets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DEN", @@ -39999,8 +37777,7 @@ "canonical_id": "game_nba_2025_20260301_cle_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "3:30p", + "game_datetime_utc": "2026-03-01T20:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "BKN", @@ -40017,8 +37794,7 @@ "canonical_id": "game_nhl_2025_20260301_wpg_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "1p", + "game_datetime_utc": "2026-03-01T21:00:00Z", "home_team": "San Jose Sharks", "away_team": "Winnipeg Jets", "home_team_abbrev": "SJ", @@ -40035,8 +37811,7 @@ "canonical_id": "game_nhl_2025_20260301_chi_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "2p", + "game_datetime_utc": "2026-03-01T21:00:00Z", "home_team": "Utah Club", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ARI", @@ -40053,8 +37828,7 @@ "canonical_id": "game_mls_2026_20260301_nyc_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "4:30p", + "game_datetime_utc": "2026-03-01T21:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New York New York City FC", "home_team_abbrev": "PHI", @@ -40071,8 +37845,7 @@ "canonical_id": "game_nba_2025_20260301_mem_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "5p", + "game_datetime_utc": "2026-03-01T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "IND", @@ -40089,8 +37862,7 @@ "canonical_id": "game_nhl_2025_20260301_stl_min", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "4p", + "game_datetime_utc": "2026-03-01T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "St. Louis Blues", "home_team_abbrev": "MIN", @@ -40107,8 +37879,7 @@ "canonical_id": "game_nba_2025_20260301_phi_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Philadelphia 76ers", "home_team_abbrev": "BOS", @@ -40125,8 +37896,7 @@ "canonical_id": "game_nba_2025_20260301_det_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Detroit Pistons", "home_team_abbrev": "ORL", @@ -40143,8 +37913,7 @@ "canonical_id": "game_nba_2025_20260301_por_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-01T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Portland Blazers", "home_team_abbrev": "ATL", @@ -40161,8 +37930,7 @@ "canonical_id": "game_nhl_2025_20260301_fla_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "6:30p", + "game_datetime_utc": "2026-03-01T23:30:00Z", "home_team": "New York Islanders", "away_team": "Florida Panthers", "home_team_abbrev": "NYI", @@ -40179,8 +37947,7 @@ "canonical_id": "game_mls_2026_20260302_mia_orl", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "7p", + "game_datetime_utc": "2026-03-02T00:00:00Z", "home_team": "Orlando Orlando City", "away_team": "Miami Inter Miami", "home_team_abbrev": "ORL", @@ -40197,8 +37964,7 @@ "canonical_id": "game_nba_2025_20260301_okc_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "7p", + "game_datetime_utc": "2026-03-02T01:00:00Z", "home_team": "Dallas Mavericks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DAL", @@ -40215,8 +37981,7 @@ "canonical_id": "game_nhl_2025_20260301_cgy_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-01", - "time": "5p", + "game_datetime_utc": "2026-03-02T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Calgary Flames", "home_team_abbrev": "ANA", @@ -40233,8 +37998,7 @@ "canonical_id": "game_mls_2026_20260302_stl_sd", "sport": "MLS", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-02T02:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SD", @@ -40251,8 +38015,7 @@ "canonical_id": "game_nba_2025_20260301_nop_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6p", + "game_datetime_utc": "2026-03-02T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAC", @@ -40269,8 +38032,7 @@ "canonical_id": "game_nba_2025_20260301_sac_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-01", - "time": "6:30p", + "game_datetime_utc": "2026-03-02T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAL", @@ -40287,8 +38049,7 @@ "canonical_id": "game_mlb_2026_20260302_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -40305,8 +38066,7 @@ "canonical_id": "game_mlb_2026_20260302_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -40323,8 +38083,7 @@ "canonical_id": "game_mlb_2026_20260302_atl_det", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Atlanta Braves", "home_team_abbrev": "DET", @@ -40341,8 +38100,7 @@ "canonical_id": "game_mlb_2026_20260302_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -40359,8 +38117,7 @@ "canonical_id": "game_mlb_2026_20260302_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:07p", + "game_datetime_utc": "2026-03-02T18:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -40377,8 +38134,7 @@ "canonical_id": "game_nhl_2025_20260302_det_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "1p", + "game_datetime_utc": "2026-03-02T19:00:00Z", "home_team": "Nashville Predators", "away_team": "Detroit Red Wings", "home_team_abbrev": "NSH", @@ -40395,8 +38151,7 @@ "canonical_id": "game_mlb_2026_20260302_sf_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "CHW", @@ -40413,8 +38168,7 @@ "canonical_id": "game_mlb_2026_20260302_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -40431,8 +38185,7 @@ "canonical_id": "game_mlb_2026_20260302_cle_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:05p", + "game_datetime_utc": "2026-03-02T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -40449,8 +38202,7 @@ "canonical_id": "game_mlb_2026_20260302_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -40467,8 +38219,7 @@ "canonical_id": "game_mlb_2026_20260302_kc_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -40485,8 +38236,7 @@ "canonical_id": "game_mlb_2026_20260302_oak_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-02", - "time": "1:10p", + "game_datetime_utc": "2026-03-02T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -40503,8 +38253,7 @@ "canonical_id": "game_nba_2025_20260302_hou_was", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Houston Rockets", "home_team_abbrev": "WAS", @@ -40521,8 +38270,7 @@ "canonical_id": "game_nhl_2025_20260302_cbj_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T00:00:00Z", "home_team": "New York Rangers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYR", @@ -40539,8 +38287,7 @@ "canonical_id": "game_nba_2025_20260302_bos_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "6:30p", + "game_datetime_utc": "2026-03-03T00:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -40557,8 +38304,7 @@ "canonical_id": "game_nhl_2025_20260302_phi_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7:30p", + "game_datetime_utc": "2026-03-03T00:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Philadelphia Flyers", "home_team_abbrev": "TOR", @@ -40575,8 +38321,7 @@ "canonical_id": "game_nba_2025_20260302_den_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T02:00:00Z", "home_team": "Utah Jazz", "away_team": "Denver Nuggets", "home_team_abbrev": "UTA", @@ -40593,8 +38338,7 @@ "canonical_id": "game_nba_2025_20260302_lac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Clippers", "home_team_abbrev": "GSW", @@ -40611,8 +38355,7 @@ "canonical_id": "game_nhl_2025_20260302_dal_van", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Dallas Stars", "home_team_abbrev": "VAN", @@ -40629,8 +38372,7 @@ "canonical_id": "game_nhl_2025_20260302_car_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7p", + "game_datetime_utc": "2026-03-03T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Carolina Hurricanes", "home_team_abbrev": "SEA", @@ -40647,8 +38389,7 @@ "canonical_id": "game_nhl_2025_20260302_col_la", "sport": "NHL", "season": "2026", - "date": "2026-03-02", - "time": "7:30p", + "game_datetime_utc": "2026-03-03T03:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Colorado Avalanche", "home_team_abbrev": "LA", @@ -40665,8 +38406,7 @@ "canonical_id": "game_mlb_2026_20260303_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T18:05:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -40683,8 +38423,7 @@ "canonical_id": "game_mlb_2026_20260303_phi_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T18:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TB", @@ -40701,8 +38440,7 @@ "canonical_id": "game_mlb_2026_20260303_lad_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CLE", @@ -40719,8 +38457,7 @@ "canonical_id": "game_mlb_2026_20260303_sd_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:05p", + "game_datetime_utc": "2026-03-03T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "San Diego Padres", "home_team_abbrev": "CHW", @@ -40737,8 +38474,7 @@ "canonical_id": "game_mlb_2026_20260303_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-03", - "time": "1:10p", + "game_datetime_utc": "2026-03-03T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -40755,8 +38491,7 @@ "canonical_id": "game_nba_2025_20260303_was_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Washington Wizards", "home_team_abbrev": "ORL", @@ -40773,8 +38508,7 @@ "canonical_id": "game_nba_2025_20260303_det_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "6p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Detroit Pistons", "home_team_abbrev": "CLE", @@ -40791,8 +38525,7 @@ "canonical_id": "game_nba_2025_20260303_dal_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Dallas Mavericks", "home_team_abbrev": "CHA", @@ -40809,8 +38542,7 @@ "canonical_id": "game_nhl_2025_20260303_pit_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Boston Bruins", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "BOS", @@ -40827,8 +38559,7 @@ "canonical_id": "game_nhl_2025_20260303_ari_was", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Washington Capitals", "away_team": "Utah Club", "home_team_abbrev": "WAS", @@ -40845,8 +38576,7 @@ "canonical_id": "game_nhl_2025_20260303_fla_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Florida Panthers", "home_team_abbrev": "NJ", @@ -40863,8 +38593,7 @@ "canonical_id": "game_nhl_2025_20260303_nsh_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Nashville Predators", "home_team_abbrev": "CBJ", @@ -40881,8 +38610,7 @@ "canonical_id": "game_nhl_2025_20260303_vgk_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T00:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Vegas Golden Knights", "home_team_abbrev": "BUF", @@ -40899,8 +38627,7 @@ "canonical_id": "game_nba_2025_20260303_brk_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T00:30:00Z", "home_team": "Miami Heat", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIA", @@ -40917,8 +38644,7 @@ "canonical_id": "game_nba_2025_20260303_nyk_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New York Knicks", "home_team_abbrev": "TOR", @@ -40935,8 +38661,7 @@ "canonical_id": "game_nba_2025_20260303_mem_min", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIN", @@ -40953,8 +38678,7 @@ "canonical_id": "game_nba_2025_20260303_sas_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "5p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "San Antonio Spurs", "home_team_abbrev": "PHI", @@ -40971,8 +38695,7 @@ "canonical_id": "game_nba_2025_20260303_okc_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Chicago Bulls", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "CHI", @@ -40989,8 +38712,7 @@ "canonical_id": "game_nhl_2025_20260303_chi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Chicago Blackhawks", "home_team_abbrev": "WPG", @@ -41007,8 +38729,7 @@ "canonical_id": "game_nhl_2025_20260303_ott_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Ottawa Senators", "home_team_abbrev": "EDM", @@ -41025,8 +38746,7 @@ "canonical_id": "game_nhl_2025_20260303_dal_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Dallas Stars", "home_team_abbrev": "CGY", @@ -41043,8 +38763,7 @@ "canonical_id": "game_nhl_2025_20260303_tb_min", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "8:30p", + "game_datetime_utc": "2026-03-04T02:30:00Z", "home_team": "Minnesota Wild", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MIN", @@ -41061,8 +38780,7 @@ "canonical_id": "game_nhl_2025_20260303_col_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Colorado Avalanche", "home_team_abbrev": "ANA", @@ -41079,8 +38797,7 @@ "canonical_id": "game_nhl_2025_20260303_mtl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-03", - "time": "7p", + "game_datetime_utc": "2026-03-04T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "Montreal Canadiens", "home_team_abbrev": "SJ", @@ -41097,8 +38814,7 @@ "canonical_id": "game_nba_2025_20260303_nop_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "7:30p", + "game_datetime_utc": "2026-03-04T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "LAL", @@ -41115,8 +38831,7 @@ "canonical_id": "game_nba_2025_20260303_phx_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-03", - "time": "8p", + "game_datetime_utc": "2026-03-04T04:00:00Z", "home_team": "Sacramento Kings", "away_team": "Phoenix Suns", "home_team_abbrev": "SAC", @@ -41133,8 +38848,7 @@ "canonical_id": "game_mlb_2026_20260304_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -41151,8 +38865,7 @@ "canonical_id": "game_mlb_2026_20260304_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -41169,8 +38882,7 @@ "canonical_id": "game_mlb_2026_20260304_ari_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:05p", + "game_datetime_utc": "2026-03-04T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "OAK", @@ -41187,8 +38899,7 @@ "canonical_id": "game_mlb_2026_20260304_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "1:10p", + "game_datetime_utc": "2026-03-04T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -41205,8 +38916,7 @@ "canonical_id": "game_nba_2025_20260304_okc_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "New York Knicks", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "NYK", @@ -41223,8 +38933,7 @@ "canonical_id": "game_nhl_2025_20260304_vgk_det", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DET", @@ -41241,8 +38950,7 @@ "canonical_id": "game_nhl_2025_20260304_tor_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T00:00:00Z", "home_team": "New Jersey Devils", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NJ", @@ -41259,8 +38967,7 @@ "canonical_id": "game_nba_2025_20260304_uta_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "4:30p", + "game_datetime_utc": "2026-03-05T00:30:00Z", "home_team": "Philadelphia 76ers", "away_team": "Utah Jazz", "home_team_abbrev": "PHI", @@ -41277,8 +38984,7 @@ "canonical_id": "game_nba_2025_20260304_cho_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7:30p", + "game_datetime_utc": "2026-03-05T00:30:00Z", "home_team": "Boston Celtics", "away_team": "Charlotte Hornets", "home_team_abbrev": "BOS", @@ -41295,8 +39001,7 @@ "canonical_id": "game_nba_2025_20260304_por_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Portland Blazers", "home_team_abbrev": "MEM", @@ -41313,8 +39018,7 @@ "canonical_id": "game_mlb_2026_20260305_sea_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-04", - "time": "7:05p", + "game_datetime_utc": "2026-03-05T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Seattle Mariners", "home_team_abbrev": "SF", @@ -41331,8 +39035,7 @@ "canonical_id": "game_nba_2025_20260304_atl_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "8:30p", + "game_datetime_utc": "2026-03-05T02:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIL", @@ -41349,8 +39052,7 @@ "canonical_id": "game_nhl_2025_20260304_nyi_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Anaheim Ducks", "away_team": "New York Islanders", "home_team_abbrev": "ANA", @@ -41367,8 +39069,7 @@ "canonical_id": "game_nhl_2025_20260304_car_van", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "VAN", @@ -41385,8 +39086,7 @@ "canonical_id": "game_nhl_2025_20260304_stl_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-04", - "time": "7p", + "game_datetime_utc": "2026-03-05T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "St. Louis Blues", "home_team_abbrev": "SEA", @@ -41403,8 +39103,7 @@ "canonical_id": "game_nba_2025_20260304_ind_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-04", - "time": "7:30p", + "game_datetime_utc": "2026-03-05T03:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Indiana Pacers", "home_team_abbrev": "LAC", @@ -41421,8 +39120,7 @@ "canonical_id": "game_mlb_2026_20260305_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -41439,8 +39137,7 @@ "canonical_id": "game_mlb_2026_20260305_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -41457,8 +39154,7 @@ "canonical_id": "game_mlb_2026_20260305_bos_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Boston Red Sox", "home_team_abbrev": "PHI", @@ -41475,8 +39171,7 @@ "canonical_id": "game_mlb_2026_20260305_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -41493,8 +39188,7 @@ "canonical_id": "game_mlb_2026_20260305_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -41511,8 +39205,7 @@ "canonical_id": "game_mlb_2026_20260305_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T18:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -41529,8 +39222,7 @@ "canonical_id": "game_mlb_2026_20260305_hou_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T18:10:00Z", "home_team": "Miami Marlins", "away_team": "Houston Astros", "home_team_abbrev": "MIA", @@ -41547,8 +39239,7 @@ "canonical_id": "game_mlb_2026_20260305_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -41565,8 +39256,7 @@ "canonical_id": "game_mlb_2026_20260305_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:05p", + "game_datetime_utc": "2026-03-05T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -41583,8 +39273,7 @@ "canonical_id": "game_mlb_2026_20260305_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -41601,8 +39290,7 @@ "canonical_id": "game_mlb_2026_20260305_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -41619,8 +39307,7 @@ "canonical_id": "game_mlb_2026_20260305_mil_col", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "1:10p", + "game_datetime_utc": "2026-03-05T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -41637,8 +39324,7 @@ "canonical_id": "game_nba_2025_20260305_uta_was", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Washington Wizards", "away_team": "Utah Jazz", "home_team_abbrev": "WAS", @@ -41655,8 +39341,7 @@ "canonical_id": "game_nba_2025_20260305_dal_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Orlando Magic", "away_team": "Dallas Mavericks", "home_team_abbrev": "ORL", @@ -41673,8 +39358,7 @@ "canonical_id": "game_nhl_2025_20260305_tor_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "New York Rangers", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYR", @@ -41691,8 +39375,7 @@ "canonical_id": "game_nhl_2025_20260305_fla_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Florida Panthers", "home_team_abbrev": "CBJ", @@ -41709,8 +39392,7 @@ "canonical_id": "game_nhl_2025_20260305_ari_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Utah Club", "home_team_abbrev": "PHI", @@ -41727,8 +39409,7 @@ "canonical_id": "game_nhl_2025_20260305_buf_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T00:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Buffalo Sabres", "home_team_abbrev": "PIT", @@ -41745,8 +39426,7 @@ "canonical_id": "game_nba_2025_20260305_gsw_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "6:30p", + "game_datetime_utc": "2026-03-06T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Golden State Warriors", "home_team_abbrev": "HOU", @@ -41763,8 +39443,7 @@ "canonical_id": "game_nba_2025_20260305_brk_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7:30p", + "game_datetime_utc": "2026-03-06T00:30:00Z", "home_team": "Miami Heat", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIA", @@ -41781,8 +39460,7 @@ "canonical_id": "game_nba_2025_20260305_tor_min", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Toronto Raptors", "home_team_abbrev": "MIN", @@ -41799,8 +39477,7 @@ "canonical_id": "game_nba_2025_20260305_det_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Detroit Pistons", "home_team_abbrev": "SAS", @@ -41817,8 +39494,7 @@ "canonical_id": "game_nhl_2025_20260305_tb_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "WPG", @@ -41835,8 +39511,7 @@ "canonical_id": "game_nhl_2025_20260305_bos_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T01:00:00Z", "home_team": "Nashville Predators", "away_team": "Boston Bruins", "home_team_abbrev": "NSH", @@ -41853,8 +39528,7 @@ "canonical_id": "game_mlb_2026_20260306_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T01:05:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -41871,8 +39545,7 @@ "canonical_id": "game_mlb_2026_20260306_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-05", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -41889,8 +39562,7 @@ "canonical_id": "game_nba_2025_20260305_chi_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "9p", + "game_datetime_utc": "2026-03-06T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Chicago Bulls", "home_team_abbrev": "PHX", @@ -41907,8 +39579,7 @@ "canonical_id": "game_nhl_2025_20260305_ott_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Ottawa Senators", "home_team_abbrev": "CGY", @@ -41925,8 +39596,7 @@ "canonical_id": "game_nhl_2025_20260305_nyi_la", "sport": "NHL", "season": "2026", - "date": "2026-03-05", - "time": "6:30p", + "game_datetime_utc": "2026-03-06T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "New York Islanders", "home_team_abbrev": "LA", @@ -41943,8 +39613,7 @@ "canonical_id": "game_nba_2025_20260305_nop_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "7p", + "game_datetime_utc": "2026-03-06T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAC", @@ -41961,8 +39630,7 @@ "canonical_id": "game_nba_2025_20260305_lal_den", "sport": "NBA", "season": "2026", - "date": "2026-03-05", - "time": "8p", + "game_datetime_utc": "2026-03-06T03:00:00Z", "home_team": "Denver Nuggets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DEN", @@ -41979,8 +39647,7 @@ "canonical_id": "game_mlb_2026_20260306_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -41997,8 +39664,7 @@ "canonical_id": "game_mlb_2026_20260306_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -42015,8 +39681,7 @@ "canonical_id": "game_mlb_2026_20260306_stl_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "St. Louis Cardinals", "home_team_abbrev": "BAL", @@ -42033,8 +39698,7 @@ "canonical_id": "game_mlb_2026_20260306_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T18:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -42051,8 +39715,7 @@ "canonical_id": "game_mlb_2026_20260306_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:07p", + "game_datetime_utc": "2026-03-06T18:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -42069,8 +39732,7 @@ "canonical_id": "game_mlb_2026_20260306_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -42087,8 +39749,7 @@ "canonical_id": "game_mlb_2026_20260306_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -42105,8 +39766,7 @@ "canonical_id": "game_mlb_2026_20260306_col_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -42123,8 +39783,7 @@ "canonical_id": "game_mlb_2026_20260306_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:05p", + "game_datetime_utc": "2026-03-06T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -42141,8 +39800,7 @@ "canonical_id": "game_mlb_2026_20260306_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:10p", + "game_datetime_utc": "2026-03-06T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -42159,8 +39817,7 @@ "canonical_id": "game_mlb_2026_20260306_chw_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "1:10p", + "game_datetime_utc": "2026-03-06T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -42177,8 +39834,7 @@ "canonical_id": "game_mlb_2026_20260306_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:05p", + "game_datetime_utc": "2026-03-06T23:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -42195,8 +39851,7 @@ "canonical_id": "game_mlb_2026_20260306_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:35p", + "game_datetime_utc": "2026-03-06T23:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -42213,8 +39868,7 @@ "canonical_id": "game_nba_2025_20260306_mia_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Miami Heat", "home_team_abbrev": "CHA", @@ -42231,8 +39885,7 @@ "canonical_id": "game_nba_2025_20260306_dal_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Dallas Mavericks", "home_team_abbrev": "BOS", @@ -42249,8 +39902,7 @@ "canonical_id": "game_nhl_2025_20260306_fla_det", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Florida Panthers", "home_team_abbrev": "DET", @@ -42267,8 +39919,7 @@ "canonical_id": "game_mlb_2026_20260307_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "7:10p", + "game_datetime_utc": "2026-03-07T00:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -42285,8 +39936,7 @@ "canonical_id": "game_nba_2025_20260306_por_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Portland Blazers", "home_team_abbrev": "HOU", @@ -42303,8 +39953,7 @@ "canonical_id": "game_nhl_2025_20260306_col_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Colorado Avalanche", "home_team_abbrev": "DAL", @@ -42321,8 +39970,7 @@ "canonical_id": "game_mlb_2026_20260307_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:05p", + "game_datetime_utc": "2026-03-07T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -42339,8 +39987,7 @@ "canonical_id": "game_mlb_2026_20260307_chc_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-06", - "time": "6:10p", + "game_datetime_utc": "2026-03-07T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -42357,8 +40004,7 @@ "canonical_id": "game_nhl_2025_20260306_van_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7:30p", + "game_datetime_utc": "2026-03-07T01:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Vancouver Canucks", "home_team_abbrev": "CHI", @@ -42375,8 +40021,7 @@ "canonical_id": "game_nba_2025_20260306_nop_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "9p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "New Orleans Pelicans", "home_team_abbrev": "PHX", @@ -42393,8 +40038,7 @@ "canonical_id": "game_nba_2025_20260306_nyk_den", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "New York Knicks", "home_team_abbrev": "DEN", @@ -42411,8 +40055,7 @@ "canonical_id": "game_nhl_2025_20260306_mtl_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "6p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Montreal Canadiens", "home_team_abbrev": "ANA", @@ -42429,8 +40072,7 @@ "canonical_id": "game_nhl_2025_20260306_car_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "EDM", @@ -42447,8 +40089,7 @@ "canonical_id": "game_nba_2025_20260306_lac_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "8:30p", + "game_datetime_utc": "2026-03-07T02:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAS", @@ -42465,8 +40106,7 @@ "canonical_id": "game_nhl_2025_20260306_min_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T03:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Minnesota Wild", "home_team_abbrev": "VGK", @@ -42483,8 +40123,7 @@ "canonical_id": "game_nhl_2025_20260306_stl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-06", - "time": "7p", + "game_datetime_utc": "2026-03-07T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "St. Louis Blues", "home_team_abbrev": "SJ", @@ -42501,8 +40140,7 @@ "canonical_id": "game_nba_2025_20260306_ind_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-06", - "time": "7:30p", + "game_datetime_utc": "2026-03-07T03:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Indiana Pacers", "home_team_abbrev": "LAL", @@ -42519,8 +40157,7 @@ "canonical_id": "game_mlb_2026_20260307_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "12:05p", + "game_datetime_utc": "2026-03-07T17:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -42537,8 +40174,7 @@ "canonical_id": "game_nhl_2025_20260307_was_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "12:30p", + "game_datetime_utc": "2026-03-07T17:30:00Z", "home_team": "Boston Bruins", "away_team": "Washington Capitals", "home_team_abbrev": "BOS", @@ -42555,8 +40191,7 @@ "canonical_id": "game_mlb_2026_20260307_bal_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Atlanta Braves", "away_team": "Baltimore Orioles", "home_team_abbrev": "ATL", @@ -42573,8 +40208,7 @@ "canonical_id": "game_mlb_2026_20260307_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -42591,8 +40225,7 @@ "canonical_id": "game_mlb_2026_20260307_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -42609,8 +40242,7 @@ "canonical_id": "game_mlb_2026_20260307_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -42627,8 +40259,7 @@ "canonical_id": "game_mlb_2026_20260307_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -42645,8 +40276,7 @@ "canonical_id": "game_mlb_2026_20260307_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T18:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -42663,8 +40293,7 @@ "canonical_id": "game_mls_2026_20260307_hou_ne", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "2:30p", + "game_datetime_utc": "2026-03-07T19:30:00Z", "home_team": "New England New England Revolution", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "NE", @@ -42681,8 +40310,7 @@ "canonical_id": "game_mls_2026_20260307_orl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "2:30p", + "game_datetime_utc": "2026-03-07T19:30:00Z", "home_team": "New York New York City FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "NYC", @@ -42699,8 +40327,7 @@ "canonical_id": "game_nba_2025_20260307_orl_min", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "2p", + "game_datetime_utc": "2026-03-07T20:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Orlando Magic", "home_team_abbrev": "MIN", @@ -42717,8 +40344,7 @@ "canonical_id": "game_nhl_2025_20260307_nyr_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "3p", + "game_datetime_utc": "2026-03-07T20:00:00Z", "home_team": "New Jersey Devils", "away_team": "New York Rangers", "home_team_abbrev": "NJ", @@ -42735,8 +40361,7 @@ "canonical_id": "game_mlb_2026_20260307_cin_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Cincinnati Reds", "home_team_abbrev": "KC", @@ -42753,8 +40378,7 @@ "canonical_id": "game_mlb_2026_20260307_tex_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Texas Rangers", "home_team_abbrev": "SF", @@ -42771,8 +40395,7 @@ "canonical_id": "game_mlb_2026_20260307_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -42789,8 +40412,7 @@ "canonical_id": "game_mlb_2026_20260307_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -42807,8 +40429,7 @@ "canonical_id": "game_mlb_2026_20260307_chw_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -42825,8 +40446,7 @@ "canonical_id": "game_mlb_2026_20260307_mil_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -42843,8 +40463,7 @@ "canonical_id": "game_mlb_2026_20260307_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:10p", + "game_datetime_utc": "2026-03-07T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -42861,8 +40480,7 @@ "canonical_id": "game_mlb_2026_20260307_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "1:05p", + "game_datetime_utc": "2026-03-07T21:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -42879,8 +40497,7 @@ "canonical_id": "game_mls_2026_20260307_mia_dc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "4:30p", + "game_datetime_utc": "2026-03-07T21:30:00Z", "home_team": "Washington D.C. United", "away_team": "Miami Inter Miami", "home_team_abbrev": "DC", @@ -42897,8 +40514,7 @@ "canonical_id": "game_nhl_2025_20260307_phi_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "5:30p", + "game_datetime_utc": "2026-03-07T22:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Philadelphia Flyers", "home_team_abbrev": "PIT", @@ -42915,8 +40531,7 @@ "canonical_id": "game_nhl_2025_20260307_nsh_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "5:30p", + "game_datetime_utc": "2026-03-07T22:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Nashville Predators", "home_team_abbrev": "BUF", @@ -42933,8 +40548,7 @@ "canonical_id": "game_nba_2025_20260307_brk_det", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "6p", + "game_datetime_utc": "2026-03-07T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Brooklyn Nets", "home_team_abbrev": "DET", @@ -42951,8 +40565,7 @@ "canonical_id": "game_mlb_2026_20260307_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "6:05p", + "game_datetime_utc": "2026-03-07T23:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -42969,8 +40582,7 @@ "canonical_id": "game_nhl_2025_20260307_van_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "6p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vancouver Canucks", "home_team_abbrev": "WPG", @@ -42987,8 +40599,7 @@ "canonical_id": "game_nhl_2025_20260307_tb_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "TOR", @@ -43005,8 +40616,7 @@ "canonical_id": "game_nhl_2025_20260307_mtl_la", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "4p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Montreal Canadiens", "home_team_abbrev": "LA", @@ -43023,8 +40633,7 @@ "canonical_id": "game_nhl_2025_20260307_ari_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T00:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Utah Club", "home_team_abbrev": "CBJ", @@ -43041,8 +40650,7 @@ "canonical_id": "game_mls_2026_20260308_slc_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "ATL", @@ -43059,8 +40667,7 @@ "canonical_id": "game_mls_2026_20260308_sj_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "PHI", @@ -43077,8 +40684,7 @@ "canonical_id": "game_mls_2026_20260308_chi_clb", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CLB", @@ -43095,8 +40701,7 @@ "canonical_id": "game_mls_2026_20260308_aus_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Austin Austin FC", "home_team_abbrev": "CLT", @@ -43113,8 +40718,7 @@ "canonical_id": "game_nba_2025_20260307_phi_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T00:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Philadelphia 76ers", "home_team_abbrev": "ATL", @@ -43131,8 +40735,7 @@ "canonical_id": "game_nba_2025_20260307_lac_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T01:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MEM", @@ -43149,8 +40752,7 @@ "canonical_id": "game_nba_2025_20260307_uta_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T01:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Utah Jazz", "home_team_abbrev": "MIL", @@ -43167,8 +40769,7 @@ "canonical_id": "game_mlb_2026_20260308_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-07", - "time": "6:05p", + "game_datetime_utc": "2026-03-08T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -43185,8 +40786,7 @@ "canonical_id": "game_mls_2026_20260308_sea_stl", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "STL", @@ -43203,8 +40803,7 @@ "canonical_id": "game_mls_2026_20260308_min_nsh", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "NSH", @@ -43221,8 +40820,7 @@ "canonical_id": "game_mls_2026_20260308_sd_skc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SKC", @@ -43239,8 +40837,7 @@ "canonical_id": "game_nba_2025_20260307_gsw_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Golden State Warriors", "home_team_abbrev": "OKC", @@ -43257,8 +40854,7 @@ "canonical_id": "game_mls_2026_20260308_lag_col", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T02:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "COL", @@ -43275,8 +40871,7 @@ "canonical_id": "game_nhl_2025_20260307_nyi_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "San Jose Sharks", "away_team": "New York Islanders", "home_team_abbrev": "SJ", @@ -43293,8 +40888,7 @@ "canonical_id": "game_nhl_2025_20260307_ott_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "7p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "Seattle Kraken", "away_team": "Ottawa Senators", "home_team_abbrev": "SEA", @@ -43311,8 +40905,7 @@ "canonical_id": "game_nhl_2025_20260307_car_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-07", - "time": "8p", + "game_datetime_utc": "2026-03-08T03:00:00Z", "home_team": "Calgary Flames", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CGY", @@ -43329,8 +40922,7 @@ "canonical_id": "game_mls_2026_20260308_dal_lafc", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T03:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "LAFC", @@ -43347,8 +40939,7 @@ "canonical_id": "game_mls_2026_20260308_van_por", "sport": "MLS", "season": "2026", - "date": "2026-03-07", - "time": "7:30p", + "game_datetime_utc": "2026-03-08T03:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "POR", @@ -43365,8 +40956,7 @@ "canonical_id": "game_nba_2025_20260308_bos_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "12p", + "game_datetime_utc": "2026-03-08T17:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Boston Celtics", "home_team_abbrev": "CLE", @@ -43383,8 +40973,7 @@ "canonical_id": "game_mlb_2026_20260308_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -43401,8 +40990,7 @@ "canonical_id": "game_mlb_2026_20260308_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -43419,8 +41007,7 @@ "canonical_id": "game_mlb_2026_20260308_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -43437,8 +41024,7 @@ "canonical_id": "game_mlb_2026_20260308_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -43455,8 +41041,7 @@ "canonical_id": "game_mlb_2026_20260308_atl_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Atlanta Braves", "home_team_abbrev": "TB", @@ -43473,8 +41058,7 @@ "canonical_id": "game_mlb_2026_20260308_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:07p", + "game_datetime_utc": "2026-03-08T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -43491,8 +41075,7 @@ "canonical_id": "game_mlb_2026_20260308_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T17:10:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -43509,8 +41092,7 @@ "canonical_id": "game_mlb_2026_20260308_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T17:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -43527,8 +41109,7 @@ "canonical_id": "game_nhl_2025_20260308_min_col", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "12p", + "game_datetime_utc": "2026-03-08T18:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Minnesota Wild", "home_team_abbrev": "COL", @@ -43545,8 +41126,7 @@ "canonical_id": "game_nba_2025_20260308_nyk_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "12:30p", + "game_datetime_utc": "2026-03-08T19:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "New York Knicks", "home_team_abbrev": "LAL", @@ -43563,8 +41143,7 @@ "canonical_id": "game_mlb_2026_20260308_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -43581,8 +41160,7 @@ "canonical_id": "game_mlb_2026_20260308_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -43599,8 +41177,7 @@ "canonical_id": "game_mlb_2026_20260308_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -43617,8 +41194,7 @@ "canonical_id": "game_mlb_2026_20260308_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -43635,8 +41211,7 @@ "canonical_id": "game_mlb_2026_20260308_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -43653,8 +41228,7 @@ "canonical_id": "game_mlb_2026_20260308_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:05p", + "game_datetime_utc": "2026-03-08T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -43671,8 +41245,7 @@ "canonical_id": "game_mlb_2026_20260308_cle_col", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -43689,8 +41262,7 @@ "canonical_id": "game_mlb_2026_20260308_cin_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -43707,8 +41279,7 @@ "canonical_id": "game_mlb_2026_20260308_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-08", - "time": "1:10p", + "game_datetime_utc": "2026-03-08T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -43725,8 +41296,7 @@ "canonical_id": "game_mls_2026_20260308_mtl_ny", "sport": "MLS", "season": "2026", - "date": "2026-03-08", - "time": "4:30p", + "game_datetime_utc": "2026-03-08T20:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Montreal CF Montreal", "home_team_abbrev": "RB", @@ -43743,8 +41313,7 @@ "canonical_id": "game_nhl_2025_20260308_bos_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "4:30p", + "game_datetime_utc": "2026-03-08T20:30:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Boston Bruins", "home_team_abbrev": "PIT", @@ -43761,8 +41330,7 @@ "canonical_id": "game_nba_2025_20260308_det_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Miami Heat", "away_team": "Detroit Pistons", "home_team_abbrev": "MIA", @@ -43779,8 +41347,7 @@ "canonical_id": "game_nba_2025_20260308_dal_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Dallas Mavericks", "home_team_abbrev": "TOR", @@ -43797,8 +41364,7 @@ "canonical_id": "game_nhl_2025_20260308_tb_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BUF", @@ -43815,8 +41381,7 @@ "canonical_id": "game_nhl_2025_20260308_chi_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "5p", + "game_datetime_utc": "2026-03-08T22:00:00Z", "home_team": "Dallas Stars", "away_team": "Chicago Blackhawks", "home_team_abbrev": "DAL", @@ -43833,8 +41398,7 @@ "canonical_id": "game_mls_2026_20260308_tor_cin", "sport": "MLS", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CIN", @@ -43851,8 +41415,7 @@ "canonical_id": "game_nba_2025_20260308_was_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Washington Wizards", "home_team_abbrev": "NOP", @@ -43869,8 +41432,7 @@ "canonical_id": "game_nhl_2025_20260308_det_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-08T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Detroit Red Wings", "home_team_abbrev": "NJ", @@ -43887,8 +41449,7 @@ "canonical_id": "game_nba_2025_20260308_hou_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-09T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Houston Rockets", "home_team_abbrev": "SAS", @@ -43905,8 +41466,7 @@ "canonical_id": "game_nba_2025_20260308_orl_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "7p", + "game_datetime_utc": "2026-03-09T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Orlando Magic", "home_team_abbrev": "MIL", @@ -43923,8 +41483,7 @@ "canonical_id": "game_nba_2025_20260308_chi_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Chicago Bulls", "home_team_abbrev": "SAC", @@ -43941,8 +41500,7 @@ "canonical_id": "game_nba_2025_20260308_cho_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "9p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Charlotte Hornets", "home_team_abbrev": "PHX", @@ -43959,8 +41517,7 @@ "canonical_id": "game_nba_2025_20260308_ind_por", "sport": "NBA", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Portland Blazers", "away_team": "Indiana Pacers", "home_team_abbrev": "POR", @@ -43977,8 +41534,7 @@ "canonical_id": "game_nhl_2025_20260308_stl_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6p", + "game_datetime_utc": "2026-03-09T01:00:00Z", "home_team": "Anaheim Ducks", "away_team": "St. Louis Blues", "home_team_abbrev": "ANA", @@ -43995,8 +41551,7 @@ "canonical_id": "game_nhl_2025_20260308_edm_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-08", - "time": "6:30p", + "game_datetime_utc": "2026-03-09T01:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Edmonton Oilers", "home_team_abbrev": "VGK", @@ -44013,8 +41568,7 @@ "canonical_id": "game_nhl_2025_20260309_la_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "1p", + "game_datetime_utc": "2026-03-09T17:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Los Angeles Kings", "home_team_abbrev": "CBJ", @@ -44031,8 +41585,7 @@ "canonical_id": "game_mlb_2026_20260309_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -44049,8 +41602,7 @@ "canonical_id": "game_mlb_2026_20260309_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -44067,8 +41619,7 @@ "canonical_id": "game_mlb_2026_20260309_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -44085,8 +41636,7 @@ "canonical_id": "game_mlb_2026_20260309_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -44103,8 +41653,7 @@ "canonical_id": "game_mlb_2026_20260309_min_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Minnesota Twins", "home_team_abbrev": "ATL", @@ -44121,8 +41670,7 @@ "canonical_id": "game_mlb_2026_20260309_laa_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -44139,8 +41687,7 @@ "canonical_id": "game_mlb_2026_20260309_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -44157,8 +41704,7 @@ "canonical_id": "game_mlb_2026_20260309_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -44175,8 +41721,7 @@ "canonical_id": "game_mlb_2026_20260309_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:05p", + "game_datetime_utc": "2026-03-09T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -44193,8 +41738,7 @@ "canonical_id": "game_mlb_2026_20260309_sea_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Seattle Mariners", "home_team_abbrev": "ARI", @@ -44211,8 +41755,7 @@ "canonical_id": "game_mlb_2026_20260309_tex_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Texas Rangers", "home_team_abbrev": "SD", @@ -44229,8 +41772,7 @@ "canonical_id": "game_mlb_2026_20260309_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "1:10p", + "game_datetime_utc": "2026-03-09T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -44247,8 +41789,7 @@ "canonical_id": "game_mlb_2026_20260309_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "6:10p", + "game_datetime_utc": "2026-03-09T22:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -44265,8 +41806,7 @@ "canonical_id": "game_mlb_2026_20260309_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-09", - "time": "6:35p", + "game_datetime_utc": "2026-03-09T22:35:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -44283,8 +41823,7 @@ "canonical_id": "game_nba_2025_20260309_phi_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "6p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CLE", @@ -44301,8 +41840,7 @@ "canonical_id": "game_nhl_2025_20260309_cgy_was", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Calgary Flames", "home_team_abbrev": "WAS", @@ -44319,8 +41857,7 @@ "canonical_id": "game_nhl_2025_20260309_nyr_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-09T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "New York Rangers", "home_team_abbrev": "PHI", @@ -44337,8 +41874,7 @@ "canonical_id": "game_nba_2025_20260309_den_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "6:30p", + "game_datetime_utc": "2026-03-09T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Denver Nuggets", "home_team_abbrev": "OKC", @@ -44355,8 +41891,7 @@ "canonical_id": "game_nba_2025_20260309_mem_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7:30p", + "game_datetime_utc": "2026-03-09T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "BKN", @@ -44373,8 +41908,7 @@ "canonical_id": "game_nhl_2025_20260309_ari_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Utah Club", "home_team_abbrev": "CHI", @@ -44391,8 +41925,7 @@ "canonical_id": "game_nba_2025_20260309_gsw_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-10T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Golden State Warriors", "home_team_abbrev": "UTA", @@ -44409,8 +41942,7 @@ "canonical_id": "game_nhl_2025_20260309_ott_van", "sport": "NHL", "season": "2026", - "date": "2026-03-09", - "time": "6p", + "game_datetime_utc": "2026-03-10T01:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Ottawa Senators", "home_team_abbrev": "VAN", @@ -44427,8 +41959,7 @@ "canonical_id": "game_nba_2025_20260309_nyk_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-09", - "time": "7p", + "game_datetime_utc": "2026-03-10T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "New York Knicks", "home_team_abbrev": "LAC", @@ -44445,8 +41976,7 @@ "canonical_id": "game_mlb_2026_20260310_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -44463,8 +41993,7 @@ "canonical_id": "game_mlb_2026_20260310_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -44481,8 +42010,7 @@ "canonical_id": "game_mlb_2026_20260310_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -44499,8 +42027,7 @@ "canonical_id": "game_mlb_2026_20260310_bal_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T17:05:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -44517,8 +42044,7 @@ "canonical_id": "game_mlb_2026_20260310_atl_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:07p", + "game_datetime_utc": "2026-03-10T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Atlanta Braves", "home_team_abbrev": "TOR", @@ -44535,8 +42061,7 @@ "canonical_id": "game_mlb_2026_20260310_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -44553,8 +42078,7 @@ "canonical_id": "game_mlb_2026_20260310_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -44571,8 +42095,7 @@ "canonical_id": "game_mlb_2026_20260310_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -44589,8 +42112,7 @@ "canonical_id": "game_mlb_2026_20260310_chc_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -44607,8 +42129,7 @@ "canonical_id": "game_mlb_2026_20260310_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -44625,8 +42146,7 @@ "canonical_id": "game_mlb_2026_20260310_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:05p", + "game_datetime_utc": "2026-03-10T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -44643,8 +42163,7 @@ "canonical_id": "game_mlb_2026_20260310_sd_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -44661,8 +42180,7 @@ "canonical_id": "game_mlb_2026_20260310_kc_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -44679,8 +42197,7 @@ "canonical_id": "game_mlb_2026_20260310_cin_col", "sport": "MLB", "season": "2026", - "date": "2026-03-10", - "time": "1:10p", + "game_datetime_utc": "2026-03-10T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -44697,8 +42214,7 @@ "canonical_id": "game_nba_2025_20260310_mem_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "4p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Memphis Grizzlies", "home_team_abbrev": "PHI", @@ -44715,8 +42231,7 @@ "canonical_id": "game_nhl_2025_20260310_sj_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "San Jose Sharks", "home_team_abbrev": "BUF", @@ -44733,8 +42248,7 @@ "canonical_id": "game_nhl_2025_20260310_pit_car", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CAR", @@ -44751,8 +42265,7 @@ "canonical_id": "game_nhl_2025_20260310_det_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Detroit Red Wings", "home_team_abbrev": "FLA", @@ -44769,8 +42282,7 @@ "canonical_id": "game_nhl_2025_20260310_tor_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MTL", @@ -44787,8 +42299,7 @@ "canonical_id": "game_nhl_2025_20260310_cbj_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "TB", @@ -44805,8 +42316,7 @@ "canonical_id": "game_nhl_2025_20260310_la_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Los Angeles Kings", "home_team_abbrev": "BOS", @@ -44823,8 +42333,7 @@ "canonical_id": "game_nhl_2025_20260310_cgy_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-10T23:00:00Z", "home_team": "New York Rangers", "away_team": "Calgary Flames", "home_team_abbrev": "NYR", @@ -44841,8 +42350,7 @@ "canonical_id": "game_nba_2025_20260310_det_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Detroit Pistons", "home_team_abbrev": "BKN", @@ -44859,8 +42367,7 @@ "canonical_id": "game_nba_2025_20260310_was_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "Miami Heat", "away_team": "Washington Wizards", "home_team_abbrev": "MIA", @@ -44877,8 +42384,7 @@ "canonical_id": "game_nhl_2025_20260310_nyi_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "6:30p", + "game_datetime_utc": "2026-03-10T23:30:00Z", "home_team": "St. Louis Blues", "away_team": "New York Islanders", "home_team_abbrev": "STL", @@ -44895,8 +42401,7 @@ "canonical_id": "game_nba_2025_20260310_phx_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Phoenix Suns", "home_team_abbrev": "MIL", @@ -44913,8 +42418,7 @@ "canonical_id": "game_nba_2025_20260310_tor_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Toronto Raptors", "home_team_abbrev": "HOU", @@ -44931,8 +42435,7 @@ "canonical_id": "game_nba_2025_20260310_dal_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Dallas Mavericks", "home_team_abbrev": "ATL", @@ -44949,8 +42452,7 @@ "canonical_id": "game_nba_2025_20260310_bos_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Boston Celtics", "home_team_abbrev": "SAS", @@ -44967,8 +42469,7 @@ "canonical_id": "game_nhl_2025_20260310_ari_min", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Utah Club", "home_team_abbrev": "MIN", @@ -44985,8 +42486,7 @@ "canonical_id": "game_nhl_2025_20260310_vgk_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DAL", @@ -45003,8 +42503,7 @@ "canonical_id": "game_nhl_2025_20260310_ana_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T00:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Anaheim Ducks", "home_team_abbrev": "WPG", @@ -45021,8 +42520,7 @@ "canonical_id": "game_nba_2025_20260310_chi_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Chicago Bulls", "home_team_abbrev": "GSW", @@ -45039,8 +42537,7 @@ "canonical_id": "game_nba_2025_20260310_cho_por", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Charlotte Hornets", "home_team_abbrev": "POR", @@ -45057,8 +42554,7 @@ "canonical_id": "game_nba_2025_20260310_ind_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Indiana Pacers", "home_team_abbrev": "SAC", @@ -45075,8 +42571,7 @@ "canonical_id": "game_nhl_2025_20260310_edm_col", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Edmonton Oilers", "home_team_abbrev": "COL", @@ -45093,8 +42588,7 @@ "canonical_id": "game_nhl_2025_20260310_nsh_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-10", - "time": "7p", + "game_datetime_utc": "2026-03-11T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Nashville Predators", "home_team_abbrev": "SEA", @@ -45111,8 +42605,7 @@ "canonical_id": "game_nba_2025_20260310_min_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-10", - "time": "8p", + "game_datetime_utc": "2026-03-11T03:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAL", @@ -45129,8 +42622,7 @@ "canonical_id": "game_mlb_2026_20260311_pit_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "BAL", @@ -45147,8 +42639,7 @@ "canonical_id": "game_mlb_2026_20260311_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -45165,8 +42656,7 @@ "canonical_id": "game_mlb_2026_20260311_det_min", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -45183,8 +42673,7 @@ "canonical_id": "game_mlb_2026_20260311_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T17:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -45201,8 +42690,7 @@ "canonical_id": "game_mlb_2026_20260311_hou_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Houston Astros", "home_team_abbrev": "MIA", @@ -45219,8 +42707,7 @@ "canonical_id": "game_mlb_2026_20260311_kc_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Kansas City Royals", "home_team_abbrev": "CHC", @@ -45237,8 +42724,7 @@ "canonical_id": "game_mlb_2026_20260311_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -45255,8 +42741,7 @@ "canonical_id": "game_mlb_2026_20260311_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -45273,8 +42758,7 @@ "canonical_id": "game_mlb_2026_20260311_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:05p", + "game_datetime_utc": "2026-03-11T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -45291,8 +42775,7 @@ "canonical_id": "game_mlb_2026_20260311_col_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Colorado Rockies", "home_team_abbrev": "SEA", @@ -45309,8 +42792,7 @@ "canonical_id": "game_mlb_2026_20260311_oak_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "1:10p", + "game_datetime_utc": "2026-03-11T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -45327,8 +42809,7 @@ "canonical_id": "game_mlb_2026_20260311_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-11", - "time": "6:35p", + "game_datetime_utc": "2026-03-11T22:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -45345,8 +42826,7 @@ "canonical_id": "game_nba_2025_20260311_cle_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Orlando Magic", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ORL", @@ -45363,8 +42843,7 @@ "canonical_id": "game_nhl_2025_20260311_mtl_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Montreal Canadiens", "home_team_abbrev": "OTT", @@ -45381,8 +42860,7 @@ "canonical_id": "game_nhl_2025_20260311_was_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-11T23:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Washington Capitals", "home_team_abbrev": "PHI", @@ -45399,8 +42877,7 @@ "canonical_id": "game_nba_2025_20260311_tor_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Toronto Raptors", "home_team_abbrev": "NOP", @@ -45417,8 +42894,7 @@ "canonical_id": "game_nba_2025_20260311_nyk_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T01:00:00Z", "home_team": "Utah Jazz", "away_team": "New York Knicks", "home_team_abbrev": "UTA", @@ -45435,8 +42911,7 @@ "canonical_id": "game_nba_2025_20260311_hou_den", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "8p", + "game_datetime_utc": "2026-03-12T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Houston Rockets", "home_team_abbrev": "DEN", @@ -45453,8 +42928,7 @@ "canonical_id": "game_nba_2025_20260311_cho_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7p", + "game_datetime_utc": "2026-03-12T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Charlotte Hornets", "home_team_abbrev": "SAC", @@ -45471,8 +42945,7 @@ "canonical_id": "game_nba_2025_20260311_min_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-11", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "LAC", @@ -45489,8 +42962,7 @@ "canonical_id": "game_mlb_2026_20260312_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -45507,8 +42979,7 @@ "canonical_id": "game_mlb_2026_20260312_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -45525,8 +42996,7 @@ "canonical_id": "game_mlb_2026_20260312_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -45543,8 +43013,7 @@ "canonical_id": "game_mlb_2026_20260312_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -45561,8 +43030,7 @@ "canonical_id": "game_mlb_2026_20260312_sea_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Seattle Mariners", "home_team_abbrev": "CHC", @@ -45579,8 +43047,7 @@ "canonical_id": "game_mlb_2026_20260312_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:05p", + "game_datetime_utc": "2026-03-12T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -45597,8 +43064,7 @@ "canonical_id": "game_mlb_2026_20260312_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "1:10p", + "game_datetime_utc": "2026-03-12T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -45615,8 +43081,7 @@ "canonical_id": "game_mlb_2026_20260312_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-12T22:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -45633,8 +43098,7 @@ "canonical_id": "game_mlb_2026_20260312_wsn_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-12T22:05:00Z", "home_team": "Houston Astros", "away_team": "Washington Nationals", "home_team_abbrev": "HOU", @@ -45651,8 +43115,7 @@ "canonical_id": "game_nba_2025_20260312_phi_det", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DET", @@ -45669,8 +43132,7 @@ "canonical_id": "game_nba_2025_20260312_was_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Washington Wizards", "home_team_abbrev": "ORL", @@ -45687,8 +43149,7 @@ "canonical_id": "game_nba_2025_20260312_phx_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Phoenix Suns", "home_team_abbrev": "IND", @@ -45705,8 +43166,7 @@ "canonical_id": "game_nhl_2025_20260312_stl_car", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "St. Louis Blues", "home_team_abbrev": "CAR", @@ -45723,8 +43183,7 @@ "canonical_id": "game_nhl_2025_20260312_was_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Washington Capitals", "home_team_abbrev": "BUF", @@ -45741,8 +43200,7 @@ "canonical_id": "game_nhl_2025_20260312_sj_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Boston Bruins", "away_team": "San Jose Sharks", "home_team_abbrev": "BOS", @@ -45759,8 +43217,7 @@ "canonical_id": "game_nhl_2025_20260312_ana_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Anaheim Ducks", "home_team_abbrev": "TOR", @@ -45777,8 +43234,7 @@ "canonical_id": "game_nhl_2025_20260312_cgy_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Calgary Flames", "home_team_abbrev": "NJ", @@ -45795,8 +43251,7 @@ "canonical_id": "game_nhl_2025_20260312_cbj_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "FLA", @@ -45813,8 +43268,7 @@ "canonical_id": "game_nhl_2025_20260312_det_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-12T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Detroit Red Wings", "home_team_abbrev": "TB", @@ -45831,8 +43285,7 @@ "canonical_id": "game_nba_2025_20260312_brk_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Brooklyn Nets", "home_team_abbrev": "ATL", @@ -45849,8 +43302,7 @@ "canonical_id": "game_nba_2025_20260312_mil_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-12T23:30:00Z", "home_team": "Miami Heat", "away_team": "Milwaukee Bucks", "home_team_abbrev": "MIA", @@ -45867,8 +43319,7 @@ "canonical_id": "game_nba_2025_20260312_dal_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -45885,8 +43336,7 @@ "canonical_id": "game_nhl_2025_20260312_edm_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Edmonton Oilers", "home_team_abbrev": "DAL", @@ -45903,8 +43353,7 @@ "canonical_id": "game_nhl_2025_20260312_phi_min", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Philadelphia Flyers", "home_team_abbrev": "MIN", @@ -45921,8 +43370,7 @@ "canonical_id": "game_nhl_2025_20260312_nyr_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "New York Rangers", "home_team_abbrev": "WPG", @@ -45939,8 +43387,7 @@ "canonical_id": "game_nba_2025_20260312_den_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "8p", + "game_datetime_utc": "2026-03-13T01:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Denver Nuggets", "home_team_abbrev": "SAS", @@ -45957,8 +43404,7 @@ "canonical_id": "game_nhl_2025_20260312_chi_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T01:00:00Z", "home_team": "Utah Club", "away_team": "Chicago Blackhawks", "home_team_abbrev": "ARI", @@ -45975,8 +43421,7 @@ "canonical_id": "game_mlb_2026_20260313_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -45993,8 +43438,7 @@ "canonical_id": "game_mlb_2026_20260313_chw_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -46011,8 +43455,7 @@ "canonical_id": "game_mlb_2026_20260313_mil_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CLE", @@ -46029,8 +43472,7 @@ "canonical_id": "game_mlb_2026_20260313_kc_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-12", - "time": "6:10p", + "game_datetime_utc": "2026-03-13T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Kansas City Royals", "home_team_abbrev": "SD", @@ -46047,8 +43489,7 @@ "canonical_id": "game_nba_2025_20260312_bos_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "8:30p", + "game_datetime_utc": "2026-03-13T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Boston Celtics", "home_team_abbrev": "OKC", @@ -46065,8 +43506,7 @@ "canonical_id": "game_nhl_2025_20260312_col_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Colorado Avalanche", "home_team_abbrev": "SEA", @@ -46083,8 +43523,7 @@ "canonical_id": "game_nhl_2025_20260312_pit_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "VGK", @@ -46101,8 +43540,7 @@ "canonical_id": "game_nhl_2025_20260312_nsh_van", "sport": "NHL", "season": "2026", - "date": "2026-03-12", - "time": "7p", + "game_datetime_utc": "2026-03-13T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Nashville Predators", "home_team_abbrev": "VAN", @@ -46119,8 +43557,7 @@ "canonical_id": "game_nba_2025_20260312_chi_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-12", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Chicago Bulls", "home_team_abbrev": "LAL", @@ -46137,8 +43574,7 @@ "canonical_id": "game_mlb_2026_20260313_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -46155,8 +43591,7 @@ "canonical_id": "game_mlb_2026_20260313_bal_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Baltimore Orioles", "home_team_abbrev": "PHI", @@ -46173,8 +43608,7 @@ "canonical_id": "game_mlb_2026_20260313_nyy_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "New York Yankees", "home_team_abbrev": "ATL", @@ -46191,8 +43625,7 @@ "canonical_id": "game_mlb_2026_20260313_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:07p", + "game_datetime_utc": "2026-03-13T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -46209,8 +43642,7 @@ "canonical_id": "game_mlb_2026_20260313_sd_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "San Diego Padres", "home_team_abbrev": "OAK", @@ -46227,8 +43659,7 @@ "canonical_id": "game_mlb_2026_20260313_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:05p", + "game_datetime_utc": "2026-03-13T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -46245,8 +43676,7 @@ "canonical_id": "game_mlb_2026_20260313_oak_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Oakland Athletics", "home_team_abbrev": "MIL", @@ -46263,8 +43693,7 @@ "canonical_id": "game_mlb_2026_20260313_tex_col", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -46281,8 +43710,7 @@ "canonical_id": "game_mlb_2026_20260313_cle_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "1:10p", + "game_datetime_utc": "2026-03-13T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -46299,8 +43727,7 @@ "canonical_id": "game_mlb_2026_20260313_hou_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Houston Astros", "home_team_abbrev": "STL", @@ -46317,8 +43744,7 @@ "canonical_id": "game_mlb_2026_20260313_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -46335,8 +43761,7 @@ "canonical_id": "game_mlb_2026_20260313_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-13T22:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -46353,8 +43778,7 @@ "canonical_id": "game_mlb_2026_20260313_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:10p", + "game_datetime_utc": "2026-03-13T22:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -46371,8 +43795,7 @@ "canonical_id": "game_nhl_2025_20260313_la_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-13T23:00:00Z", "home_team": "New York Islanders", "away_team": "Los Angeles Kings", "home_team_abbrev": "NYI", @@ -46389,8 +43812,7 @@ "canonical_id": "game_mlb_2026_20260313_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "4:05p", + "game_datetime_utc": "2026-03-13T23:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -46407,8 +43829,7 @@ "canonical_id": "game_nba_2025_20260313_nyk_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "New York Knicks", "home_team_abbrev": "IND", @@ -46425,8 +43846,7 @@ "canonical_id": "game_nba_2025_20260313_phx_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Toronto Raptors", "away_team": "Phoenix Suns", "home_team_abbrev": "TOR", @@ -46443,8 +43863,7 @@ "canonical_id": "game_nba_2025_20260313_mem_det", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DET", @@ -46461,8 +43880,7 @@ "canonical_id": "game_nba_2025_20260313_cle_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "6:30p", + "game_datetime_utc": "2026-03-13T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "DAL", @@ -46479,8 +43897,7 @@ "canonical_id": "game_nba_2025_20260313_nop_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New Orleans Pelicans", "home_team_abbrev": "HOU", @@ -46497,8 +43914,7 @@ "canonical_id": "game_nhl_2025_20260313_edm_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Edmonton Oilers", "home_team_abbrev": "STL", @@ -46515,8 +43931,7 @@ "canonical_id": "game_nwsl_2026_20260314_por_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-03-13", - "time": "8p", + "game_datetime_utc": "2026-03-14T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Portland Portland Thorns", "home_team_abbrev": "WSH", @@ -46533,8 +43948,7 @@ "canonical_id": "game_mlb_2026_20260314_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -46551,8 +43965,7 @@ "canonical_id": "game_mlb_2026_20260314_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T01:05:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -46569,8 +43982,7 @@ "canonical_id": "game_mlb_2026_20260314_lad_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-13", - "time": "6:10p", + "game_datetime_utc": "2026-03-14T01:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SEA", @@ -46587,8 +43999,7 @@ "canonical_id": "game_nba_2025_20260313_min_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "GSW", @@ -46605,8 +44016,7 @@ "canonical_id": "game_nba_2025_20260313_uta_por", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7p", + "game_datetime_utc": "2026-03-14T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Utah Jazz", "home_team_abbrev": "POR", @@ -46623,8 +44033,7 @@ "canonical_id": "game_nba_2025_20260313_chi_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-13", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Chicago Bulls", "home_team_abbrev": "LAC", @@ -46641,8 +44050,7 @@ "canonical_id": "game_mlb_2026_20260314_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "12:05p", + "game_datetime_utc": "2026-03-14T16:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -46659,8 +44067,7 @@ "canonical_id": "game_nwsl_2026_20260314_njy_bos", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "12:30p", + "game_datetime_utc": "2026-03-14T16:30:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "BOS", @@ -46677,8 +44084,7 @@ "canonical_id": "game_mls_2026_20260314_ny_tor", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "1p", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "TOR", @@ -46695,8 +44101,7 @@ "canonical_id": "game_nba_2025_20260314_brk_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "10a", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Brooklyn Nets", "home_team_abbrev": "PHI", @@ -46713,8 +44118,7 @@ "canonical_id": "game_nhl_2025_20260314_ana_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "1p", + "game_datetime_utc": "2026-03-14T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Anaheim Ducks", "home_team_abbrev": "OTT", @@ -46731,8 +44135,7 @@ "canonical_id": "game_mlb_2026_20260314_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -46749,8 +44152,7 @@ "canonical_id": "game_mlb_2026_20260314_phi_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "New York Yankees", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYY", @@ -46767,8 +44169,7 @@ "canonical_id": "game_mlb_2026_20260314_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -46785,8 +44186,7 @@ "canonical_id": "game_mlb_2026_20260314_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:07p", + "game_datetime_utc": "2026-03-14T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -46803,8 +44203,7 @@ "canonical_id": "game_mlb_2026_20260314_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T17:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -46821,8 +44220,7 @@ "canonical_id": "game_mls_2026_20260314_phi_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "ATL", @@ -46839,8 +44237,7 @@ "canonical_id": "game_nba_2025_20260314_mil_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Milwaukee Bucks", "home_team_abbrev": "ATL", @@ -46857,8 +44254,7 @@ "canonical_id": "game_nhl_2025_20260314_bos_was", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T19:00:00Z", "home_team": "Washington Capitals", "away_team": "Boston Bruins", "home_team_abbrev": "WAS", @@ -46875,8 +44271,7 @@ "canonical_id": "game_nhl_2025_20260314_col_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T20:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Colorado Avalanche", "home_team_abbrev": "WPG", @@ -46893,8 +44288,7 @@ "canonical_id": "game_nwsl_2026_20260314_uta_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "3p", + "game_datetime_utc": "2026-03-14T20:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Utah Utah Royals", "home_team_abbrev": "KCC", @@ -46911,8 +44305,7 @@ "canonical_id": "game_mlb_2026_20260314_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -46929,8 +44322,7 @@ "canonical_id": "game_mlb_2026_20260314_sd_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -46947,8 +44339,7 @@ "canonical_id": "game_mlb_2026_20260314_tex_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Texas Rangers", "home_team_abbrev": "CIN", @@ -46965,8 +44356,7 @@ "canonical_id": "game_mlb_2026_20260314_kc_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -46983,8 +44373,7 @@ "canonical_id": "game_mlb_2026_20260314_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:05p", + "game_datetime_utc": "2026-03-14T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -47001,8 +44390,7 @@ "canonical_id": "game_mlb_2026_20260314_chc_col", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -47019,8 +44407,7 @@ "canonical_id": "game_mlb_2026_20260314_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -47037,8 +44424,7 @@ "canonical_id": "game_mlb_2026_20260314_cle_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cleveland Guardians", "home_team_abbrev": "SD", @@ -47055,8 +44441,7 @@ "canonical_id": "game_mlb_2026_20260314_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "1:10p", + "game_datetime_utc": "2026-03-14T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -47073,8 +44458,7 @@ "canonical_id": "game_mls_2026_20260314_nsh_clb", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "6p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CLB", @@ -47091,8 +44475,7 @@ "canonical_id": "game_nba_2025_20260314_was_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "6p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Washington Wizards", "home_team_abbrev": "BOS", @@ -47109,8 +44492,7 @@ "canonical_id": "game_nhl_2025_20260314_nyr_min", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "5p", + "game_datetime_utc": "2026-03-14T22:00:00Z", "home_team": "Minnesota Wild", "away_team": "New York Rangers", "home_team_abbrev": "MIN", @@ -47127,8 +44509,7 @@ "canonical_id": "game_mlb_2026_20260314_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T22:05:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -47145,8 +44526,7 @@ "canonical_id": "game_mlb_2026_20260314_nym_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-14", - "time": "6:05p", + "game_datetime_utc": "2026-03-14T22:05:00Z", "home_team": "Houston Astros", "away_team": "New York Mets", "home_team_abbrev": "HOU", @@ -47163,8 +44543,7 @@ "canonical_id": "game_nwsl_2026_20260314_den_bay", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "3:30p", + "game_datetime_utc": "2026-03-14T22:30:00Z", "home_team": "San Francisco Bay FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "BAY", @@ -47181,8 +44560,7 @@ "canonical_id": "game_nhl_2025_20260314_car_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TB", @@ -47199,8 +44577,7 @@ "canonical_id": "game_nhl_2025_20260314_tor_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BUF", @@ -47217,8 +44594,7 @@ "canonical_id": "game_nhl_2025_20260314_la_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Los Angeles Kings", "home_team_abbrev": "NJ", @@ -47235,8 +44611,7 @@ "canonical_id": "game_nhl_2025_20260314_cgy_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "New York Islanders", "away_team": "Calgary Flames", "home_team_abbrev": "NYI", @@ -47253,8 +44628,7 @@ "canonical_id": "game_nhl_2025_20260314_sj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "San Jose Sharks", "home_team_abbrev": "MTL", @@ -47271,8 +44645,7 @@ "canonical_id": "game_nwsl_2026_20260314_rgn_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-14T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "NCC", @@ -47289,8 +44662,7 @@ "canonical_id": "game_mls_2026_20260314_mtl_orl", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Montreal CF Montreal", "home_team_abbrev": "ORL", @@ -47307,8 +44679,7 @@ "canonical_id": "game_mls_2026_20260314_mia_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "CLT", @@ -47325,8 +44696,7 @@ "canonical_id": "game_mls_2026_20260314_col_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "NYC", @@ -47343,8 +44713,7 @@ "canonical_id": "game_nhl_2025_20260314_cbj_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-14T23:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PHI", @@ -47361,8 +44730,7 @@ "canonical_id": "game_nba_2025_20260314_orl_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "8p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "Miami Heat", "away_team": "Orlando Magic", "home_team_abbrev": "MIA", @@ -47379,8 +44747,7 @@ "canonical_id": "game_nba_2025_20260314_cho_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Charlotte Hornets", "home_team_abbrev": "SAS", @@ -47397,8 +44764,7 @@ "canonical_id": "game_nhl_2025_20260314_det_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Detroit Red Wings", "home_team_abbrev": "DAL", @@ -47415,8 +44781,7 @@ "canonical_id": "game_mls_2026_20260315_sd_dal", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "San Diego San Diego FC", "home_team_abbrev": "DAL", @@ -47433,8 +44798,7 @@ "canonical_id": "game_mls_2026_20260315_por_hou", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Portland Portland Timbers", "home_team_abbrev": "HOU", @@ -47451,8 +44815,7 @@ "canonical_id": "game_mls_2026_20260315_dc_chi", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Washington D.C. United", "home_team_abbrev": "CHI", @@ -47469,8 +44832,7 @@ "canonical_id": "game_nba_2025_20260314_den_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "5:30p", + "game_datetime_utc": "2026-03-15T00:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Denver Nuggets", "home_team_abbrev": "LAL", @@ -47487,8 +44849,7 @@ "canonical_id": "game_nwsl_2026_20260315_hou_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-14", - "time": "5:45p", + "game_datetime_utc": "2026-03-15T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Houston Houston Dash", "home_team_abbrev": "SDW", @@ -47505,8 +44866,7 @@ "canonical_id": "game_nhl_2025_20260314_pit_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T01:00:00Z", "home_team": "Utah Club", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "ARI", @@ -47523,8 +44883,7 @@ "canonical_id": "game_mls_2026_20260315_aus_slc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Austin Austin FC", "home_team_abbrev": "SLC", @@ -47541,8 +44900,7 @@ "canonical_id": "game_mls_2026_20260315_skc_lag", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "6:30p", + "game_datetime_utc": "2026-03-15T01:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "LAG", @@ -47559,8 +44917,7 @@ "canonical_id": "game_nhl_2025_20260314_chi_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Chicago Blackhawks", "home_team_abbrev": "VGK", @@ -47577,8 +44934,7 @@ "canonical_id": "game_nhl_2025_20260314_sea_van", "sport": "NHL", "season": "2026", - "date": "2026-03-14", - "time": "7p", + "game_datetime_utc": "2026-03-15T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Seattle Kraken", "home_team_abbrev": "VAN", @@ -47595,8 +44951,7 @@ "canonical_id": "game_mls_2026_20260315_stl_lafc", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "LAFC", @@ -47613,8 +44968,7 @@ "canonical_id": "game_mls_2026_20260315_min_van", "sport": "MLS", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "VAN", @@ -47631,8 +44985,7 @@ "canonical_id": "game_nba_2025_20260314_sac_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-14", - "time": "7:30p", + "game_datetime_utc": "2026-03-15T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Sacramento Kings", "home_team_abbrev": "LAC", @@ -47649,8 +45002,7 @@ "canonical_id": "game_nba_2025_20260315_min_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "12p", + "game_datetime_utc": "2026-03-15T17:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "OKC", @@ -47667,8 +45019,7 @@ "canonical_id": "game_mlb_2026_20260315_pit_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TB", @@ -47685,8 +45036,7 @@ "canonical_id": "game_mlb_2026_20260315_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -47703,8 +45053,7 @@ "canonical_id": "game_mlb_2026_20260315_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -47721,8 +45070,7 @@ "canonical_id": "game_mlb_2026_20260315_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -47739,8 +45087,7 @@ "canonical_id": "game_mlb_2026_20260315_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -47757,8 +45104,7 @@ "canonical_id": "game_mlb_2026_20260315_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -47775,8 +45121,7 @@ "canonical_id": "game_mlb_2026_20260315_tor_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T17:10:00Z", "home_team": "New York Mets", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYM", @@ -47793,8 +45138,7 @@ "canonical_id": "game_mls_2026_20260315_cin_ne", "sport": "MLS", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T18:30:00Z", "home_team": "New England New England Revolution", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NE", @@ -47811,8 +45155,7 @@ "canonical_id": "game_nhl_2025_20260315_stl_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "2p", + "game_datetime_utc": "2026-03-15T19:00:00Z", "home_team": "Winnipeg Jets", "away_team": "St. Louis Blues", "home_team_abbrev": "WPG", @@ -47829,8 +45172,7 @@ "canonical_id": "game_nba_2025_20260315_dal_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Dallas Mavericks", "home_team_abbrev": "CLE", @@ -47847,8 +45189,7 @@ "canonical_id": "game_nba_2025_20260315_det_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "3:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Toronto Raptors", "away_team": "Detroit Pistons", "home_team_abbrev": "TOR", @@ -47865,8 +45206,7 @@ "canonical_id": "game_nba_2025_20260315_ind_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "2:30p", + "game_datetime_utc": "2026-03-15T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Indiana Pacers", "home_team_abbrev": "MIL", @@ -47883,8 +45223,7 @@ "canonical_id": "game_nwsl_2026_20260315_sea_orl", "sport": "NWSL", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "ORL", @@ -47901,8 +45240,7 @@ "canonical_id": "game_mlb_2026_20260315_mil_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -47919,8 +45257,7 @@ "canonical_id": "game_mlb_2026_20260315_tex_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -47937,8 +45274,7 @@ "canonical_id": "game_mlb_2026_20260315_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -47955,8 +45291,7 @@ "canonical_id": "game_mlb_2026_20260315_lad_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -47973,8 +45308,7 @@ "canonical_id": "game_mlb_2026_20260315_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:05p", + "game_datetime_utc": "2026-03-15T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -47991,8 +45325,7 @@ "canonical_id": "game_mlb_2026_20260315_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -48009,8 +45342,7 @@ "canonical_id": "game_mlb_2026_20260315_cin_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -48027,8 +45359,7 @@ "canonical_id": "game_mlb_2026_20260315_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "1:10p", + "game_datetime_utc": "2026-03-15T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -48045,8 +45376,7 @@ "canonical_id": "game_nhl_2025_20260315_sj_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "5p", + "game_datetime_utc": "2026-03-15T21:00:00Z", "home_team": "Ottawa Senators", "away_team": "San Jose Sharks", "home_team_abbrev": "OTT", @@ -48063,8 +45393,7 @@ "canonical_id": "game_nba_2025_20260315_por_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "3p", + "game_datetime_utc": "2026-03-15T22:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Portland Blazers", "home_team_abbrev": "PHI", @@ -48081,8 +45410,7 @@ "canonical_id": "game_mlb_2026_20260315_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-15", - "time": "6:05p", + "game_datetime_utc": "2026-03-15T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -48099,8 +45427,7 @@ "canonical_id": "game_mls_2026_20260315_sea_sj", "sport": "MLS", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SJ", @@ -48117,8 +45444,7 @@ "canonical_id": "game_nhl_2025_20260315_ana_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "7p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Anaheim Ducks", "home_team_abbrev": "MTL", @@ -48135,8 +45461,7 @@ "canonical_id": "game_nwsl_2026_20260315_chi_ang", "sport": "NWSL", "season": "2026", - "date": "2026-03-15", - "time": "4p", + "game_datetime_utc": "2026-03-15T23:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "ANG", @@ -48153,8 +45478,7 @@ "canonical_id": "game_nhl_2025_20260315_tor_min", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "6:30p", + "game_datetime_utc": "2026-03-15T23:30:00Z", "home_team": "Minnesota Wild", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "MIN", @@ -48171,8 +45495,7 @@ "canonical_id": "game_nba_2025_20260315_gsw_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "8p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "New York Knicks", "away_team": "Golden State Warriors", "home_team_abbrev": "NYK", @@ -48189,8 +45512,7 @@ "canonical_id": "game_nhl_2025_20260315_fla_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "5p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "Seattle Kraken", "away_team": "Florida Panthers", "home_team_abbrev": "SEA", @@ -48207,8 +45529,7 @@ "canonical_id": "game_nhl_2025_20260315_nsh_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-15", - "time": "6p", + "game_datetime_utc": "2026-03-16T00:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Nashville Predators", "home_team_abbrev": "EDM", @@ -48225,8 +45546,7 @@ "canonical_id": "game_nba_2025_20260315_uta_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-15", - "time": "7p", + "game_datetime_utc": "2026-03-16T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Utah Jazz", "home_team_abbrev": "SAC", @@ -48243,8 +45563,7 @@ "canonical_id": "game_mlb_2026_20260316_pit_min", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIN", @@ -48261,8 +45580,7 @@ "canonical_id": "game_mlb_2026_20260316_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -48279,8 +45597,7 @@ "canonical_id": "game_mlb_2026_20260316_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -48297,8 +45614,7 @@ "canonical_id": "game_mlb_2026_20260316_tor_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIA", @@ -48315,8 +45631,7 @@ "canonical_id": "game_mlb_2026_20260316_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -48333,8 +45648,7 @@ "canonical_id": "game_mlb_2026_20260316_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:05p", + "game_datetime_utc": "2026-03-16T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -48351,8 +45665,7 @@ "canonical_id": "game_mlb_2026_20260316_cin_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -48369,8 +45682,7 @@ "canonical_id": "game_mlb_2026_20260316_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "1:10p", + "game_datetime_utc": "2026-03-16T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -48387,8 +45699,7 @@ "canonical_id": "game_mlb_2026_20260316_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:05p", + "game_datetime_utc": "2026-03-16T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -48405,8 +45716,7 @@ "canonical_id": "game_mlb_2026_20260316_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:10p", + "game_datetime_utc": "2026-03-16T22:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -48423,8 +45733,7 @@ "canonical_id": "game_nba_2025_20260316_orl_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Orlando Magic", "home_team_abbrev": "ATL", @@ -48441,8 +45750,7 @@ "canonical_id": "game_nba_2025_20260316_gsw_was", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Golden State Warriors", "home_team_abbrev": "WAS", @@ -48459,8 +45767,7 @@ "canonical_id": "game_nhl_2025_20260316_la_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "New York Rangers", "away_team": "Los Angeles Kings", "home_team_abbrev": "NYR", @@ -48477,8 +45784,7 @@ "canonical_id": "game_nhl_2025_20260316_bos_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Boston Bruins", "home_team_abbrev": "NJ", @@ -48495,8 +45801,7 @@ "canonical_id": "game_nhl_2025_20260316_cgy_det", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-16T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Calgary Flames", "home_team_abbrev": "DET", @@ -48513,8 +45818,7 @@ "canonical_id": "game_nba_2025_20260316_por_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-16T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Portland Blazers", "home_team_abbrev": "BKN", @@ -48531,8 +45835,7 @@ "canonical_id": "game_nba_2025_20260316_phx_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "8p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Phoenix Suns", "home_team_abbrev": "BOS", @@ -48549,8 +45852,7 @@ "canonical_id": "game_nba_2025_20260316_mem_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CHI", @@ -48567,8 +45869,7 @@ "canonical_id": "game_nba_2025_20260316_dal_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Dallas Mavericks", "home_team_abbrev": "NOP", @@ -48585,8 +45886,7 @@ "canonical_id": "game_nhl_2025_20260316_ari_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7p", + "game_datetime_utc": "2026-03-17T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Utah Club", "home_team_abbrev": "DAL", @@ -48603,8 +45903,7 @@ "canonical_id": "game_mlb_2026_20260317_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "5:05p", + "game_datetime_utc": "2026-03-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -48621,8 +45920,7 @@ "canonical_id": "game_nba_2025_20260316_lal_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "8p", + "game_datetime_utc": "2026-03-17T01:00:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "HOU", @@ -48639,8 +45937,7 @@ "canonical_id": "game_mlb_2026_20260317_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-16", - "time": "6:05p", + "game_datetime_utc": "2026-03-17T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -48657,8 +45954,7 @@ "canonical_id": "game_nhl_2025_20260316_pit_col", "sport": "NHL", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "COL", @@ -48675,8 +45971,7 @@ "canonical_id": "game_nba_2025_20260316_sas_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-16", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAC", @@ -48693,8 +45988,7 @@ "canonical_id": "game_mlb_2026_20260317_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -48711,8 +46005,7 @@ "canonical_id": "game_mlb_2026_20260317_hou_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Houston Astros", "home_team_abbrev": "PIT", @@ -48729,8 +46022,7 @@ "canonical_id": "game_mlb_2026_20260317_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -48747,8 +46039,7 @@ "canonical_id": "game_mlb_2026_20260317_min_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Minnesota Twins", "home_team_abbrev": "PHI", @@ -48765,8 +46056,7 @@ "canonical_id": "game_mlb_2026_20260317_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -48783,8 +46073,7 @@ "canonical_id": "game_mlb_2026_20260317_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -48801,8 +46090,7 @@ "canonical_id": "game_mlb_2026_20260317_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -48819,8 +46107,7 @@ "canonical_id": "game_mlb_2026_20260317_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:05p", + "game_datetime_utc": "2026-03-17T20:05:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -48837,8 +46124,7 @@ "canonical_id": "game_mlb_2026_20260317_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -48855,8 +46141,7 @@ "canonical_id": "game_mlb_2026_20260317_sea_col", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "1:10p", + "game_datetime_utc": "2026-03-17T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -48873,8 +46158,7 @@ "canonical_id": "game_nba_2025_20260317_mia_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Miami Heat", "home_team_abbrev": "CHA", @@ -48891,8 +46175,7 @@ "canonical_id": "game_nba_2025_20260317_det_was", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Detroit Pistons", "home_team_abbrev": "WAS", @@ -48909,8 +46192,7 @@ "canonical_id": "game_nba_2025_20260317_okc_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "ORL", @@ -48927,8 +46209,7 @@ "canonical_id": "game_nhl_2025_20260317_nyi_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Islanders", "home_team_abbrev": "TOR", @@ -48945,8 +46226,7 @@ "canonical_id": "game_nhl_2025_20260317_car_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CBJ", @@ -48963,8 +46243,7 @@ "canonical_id": "game_nhl_2025_20260317_bos_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-17T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Boston Bruins", "home_team_abbrev": "MTL", @@ -48981,8 +46260,7 @@ "canonical_id": "game_nba_2025_20260317_ind_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7:30p", + "game_datetime_utc": "2026-03-17T23:30:00Z", "home_team": "New York Knicks", "away_team": "Indiana Pacers", "home_team_abbrev": "NYK", @@ -48999,8 +46277,7 @@ "canonical_id": "game_nhl_2025_20260317_min_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "6:30p", + "game_datetime_utc": "2026-03-17T23:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Minnesota Wild", "home_team_abbrev": "CHI", @@ -49017,8 +46294,7 @@ "canonical_id": "game_nba_2025_20260317_cle_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MIL", @@ -49035,8 +46311,7 @@ "canonical_id": "game_nba_2025_20260317_phx_min", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Phoenix Suns", "home_team_abbrev": "MIN", @@ -49053,8 +46328,7 @@ "canonical_id": "game_nhl_2025_20260317_nsh_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Nashville Predators", "home_team_abbrev": "WPG", @@ -49071,8 +46345,7 @@ "canonical_id": "game_nba_2025_20260317_phi_den", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "DEN", @@ -49089,8 +46362,7 @@ "canonical_id": "game_nhl_2025_20260317_sj_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "San Jose Sharks", "home_team_abbrev": "EDM", @@ -49107,8 +46379,7 @@ "canonical_id": "game_mlb_2026_20260318_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -49125,8 +46396,7 @@ "canonical_id": "game_mlb_2026_20260318_lad_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "KC", @@ -49143,8 +46413,7 @@ "canonical_id": "game_mlb_2026_20260318_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-17", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T01:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -49161,8 +46430,7 @@ "canonical_id": "game_nhl_2025_20260317_buf_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Buffalo Sabres", "home_team_abbrev": "VGK", @@ -49179,8 +46447,7 @@ "canonical_id": "game_nhl_2025_20260317_fla_van", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Florida Panthers", "home_team_abbrev": "VAN", @@ -49197,8 +46464,7 @@ "canonical_id": "game_nhl_2025_20260317_tb_sea", "sport": "NHL", "season": "2026", - "date": "2026-03-17", - "time": "7p", + "game_datetime_utc": "2026-03-18T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "SEA", @@ -49215,8 +46481,7 @@ "canonical_id": "game_nba_2025_20260317_sas_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-17", - "time": "8p", + "game_datetime_utc": "2026-03-18T03:00:00Z", "home_team": "Sacramento Kings", "away_team": "San Antonio Spurs", "home_team_abbrev": "SAC", @@ -49233,8 +46498,7 @@ "canonical_id": "game_mlb_2026_20260318_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -49251,8 +46515,7 @@ "canonical_id": "game_mlb_2026_20260318_hou_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Houston Astros", "home_team_abbrev": "STL", @@ -49269,8 +46532,7 @@ "canonical_id": "game_mlb_2026_20260318_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T17:05:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -49287,8 +46549,7 @@ "canonical_id": "game_mlb_2026_20260318_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:07p", + "game_datetime_utc": "2026-03-18T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -49305,8 +46566,7 @@ "canonical_id": "game_mlb_2026_20260318_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T20:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -49323,8 +46583,7 @@ "canonical_id": "game_mlb_2026_20260318_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:05p", + "game_datetime_utc": "2026-03-18T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -49341,8 +46600,7 @@ "canonical_id": "game_mlb_2026_20260318_chc_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -49359,8 +46617,7 @@ "canonical_id": "game_mlb_2026_20260318_mil_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SEA", @@ -49377,8 +46634,7 @@ "canonical_id": "game_mlb_2026_20260318_laa_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIL", @@ -49395,8 +46651,7 @@ "canonical_id": "game_mlb_2026_20260318_cin_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "1:10p", + "game_datetime_utc": "2026-03-18T20:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAA", @@ -49413,8 +46668,7 @@ "canonical_id": "game_mlb_2026_20260318_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T22:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -49431,8 +46685,7 @@ "canonical_id": "game_mlb_2026_20260318_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "6:05p", + "game_datetime_utc": "2026-03-18T22:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -49449,8 +46702,7 @@ "canonical_id": "game_nba_2025_20260318_gsw_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "Boston Celtics", "away_team": "Golden State Warriors", "home_team_abbrev": "BOS", @@ -49467,8 +46719,7 @@ "canonical_id": "game_nhl_2025_20260318_pit_car", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "CAR", @@ -49485,8 +46736,7 @@ "canonical_id": "game_nhl_2025_20260318_njd_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-18T23:00:00Z", "home_team": "New York Rangers", "away_team": "New Jersey Devils", "home_team_abbrev": "NYR", @@ -49503,8 +46753,7 @@ "canonical_id": "game_nba_2025_20260318_okc_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "BKN", @@ -49521,8 +46770,7 @@ "canonical_id": "game_nba_2025_20260318_por_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Portland Blazers", "home_team_abbrev": "IND", @@ -49539,8 +46787,7 @@ "canonical_id": "game_nhl_2025_20260318_ott_was", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-18T23:30:00Z", "home_team": "Washington Capitals", "away_team": "Ottawa Senators", "home_team_abbrev": "WAS", @@ -49557,8 +46804,7 @@ "canonical_id": "game_nba_2025_20260318_lac_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NOP", @@ -49575,8 +46821,7 @@ "canonical_id": "game_nba_2025_20260318_uta_min", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Utah Jazz", "home_team_abbrev": "MIN", @@ -49593,8 +46838,7 @@ "canonical_id": "game_nba_2025_20260318_nyk_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New York Knicks", "home_team_abbrev": "MEM", @@ -49611,8 +46855,7 @@ "canonical_id": "game_nba_2025_20260318_den_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Denver Nuggets", "home_team_abbrev": "MEM", @@ -49629,8 +46872,7 @@ "canonical_id": "game_nba_2025_20260318_tor_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Toronto Raptors", "home_team_abbrev": "CHI", @@ -49647,8 +46889,7 @@ "canonical_id": "game_mlb_2026_20260319_kc_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-18", - "time": "5:05p", + "game_datetime_utc": "2026-03-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -49665,8 +46906,7 @@ "canonical_id": "game_nba_2025_20260318_atl_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Atlanta Hawks", "home_team_abbrev": "DAL", @@ -49683,8 +46923,7 @@ "canonical_id": "game_nba_2025_20260318_lal_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-18", - "time": "8:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Los Angeles Lakers", "home_team_abbrev": "HOU", @@ -49701,8 +46940,7 @@ "canonical_id": "game_nhl_2025_20260318_dal_col", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Dallas Stars", "home_team_abbrev": "COL", @@ -49719,8 +46957,7 @@ "canonical_id": "game_nhl_2025_20260318_stl_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7:30p", + "game_datetime_utc": "2026-03-19T01:30:00Z", "home_team": "Calgary Flames", "away_team": "St. Louis Blues", "home_team_abbrev": "CGY", @@ -49737,8 +46974,7 @@ "canonical_id": "game_nhl_2025_20260318_phi_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-18", - "time": "7p", + "game_datetime_utc": "2026-03-19T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "ANA", @@ -49755,8 +46991,7 @@ "canonical_id": "game_mlb_2026_20260319_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -49773,8 +47008,7 @@ "canonical_id": "game_mlb_2026_20260319_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -49791,8 +47025,7 @@ "canonical_id": "game_mlb_2026_20260319_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -49809,8 +47042,7 @@ "canonical_id": "game_mlb_2026_20260319_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:07p", + "game_datetime_utc": "2026-03-19T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -49827,8 +47059,7 @@ "canonical_id": "game_mlb_2026_20260319_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:05p", + "game_datetime_utc": "2026-03-19T20:05:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -49845,8 +47076,7 @@ "canonical_id": "game_mlb_2026_20260319_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "1:10p", + "game_datetime_utc": "2026-03-19T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -49863,8 +47093,7 @@ "canonical_id": "game_mlb_2026_20260319_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -49881,8 +47110,7 @@ "canonical_id": "game_mlb_2026_20260319_nym_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Houston Astros", "away_team": "New York Mets", "home_team_abbrev": "HOU", @@ -49899,8 +47127,7 @@ "canonical_id": "game_mlb_2026_20260319_pit_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-19T22:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "BAL", @@ -49917,8 +47144,7 @@ "canonical_id": "game_nba_2025_20260319_orl_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Orlando Magic", "home_team_abbrev": "CHA", @@ -49935,8 +47161,7 @@ "canonical_id": "game_nba_2025_20260319_det_was", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Detroit Pistons", "home_team_abbrev": "WAS", @@ -49953,8 +47178,7 @@ "canonical_id": "game_nhl_2025_20260319_mtl_det", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Montreal Canadiens", "home_team_abbrev": "DET", @@ -49971,8 +47195,7 @@ "canonical_id": "game_nhl_2025_20260319_wpg_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Winnipeg Jets", "home_team_abbrev": "BOS", @@ -49989,8 +47212,7 @@ "canonical_id": "game_nhl_2025_20260319_nyr_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "New York Rangers", "home_team_abbrev": "CBJ", @@ -50007,8 +47229,7 @@ "canonical_id": "game_nhl_2025_20260319_nyi_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-19T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "New York Islanders", "home_team_abbrev": "OTT", @@ -50025,8 +47246,7 @@ "canonical_id": "game_nhl_2025_20260319_chi_min", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "6:30p", + "game_datetime_utc": "2026-03-19T23:30:00Z", "home_team": "Minnesota Wild", "away_team": "Chicago Blackhawks", "home_team_abbrev": "MIN", @@ -50043,8 +47263,7 @@ "canonical_id": "game_nba_2025_20260319_cle_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "CHI", @@ -50061,8 +47280,7 @@ "canonical_id": "game_nba_2025_20260319_phx_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Phoenix Suns", "home_team_abbrev": "SAS", @@ -50079,8 +47297,7 @@ "canonical_id": "game_nba_2025_20260319_lac_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Los Angeles Clippers", "home_team_abbrev": "NOP", @@ -50097,8 +47314,7 @@ "canonical_id": "game_nba_2025_20260319_lal_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "8p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Miami Heat", "away_team": "Los Angeles Lakers", "home_team_abbrev": "MIA", @@ -50115,8 +47331,7 @@ "canonical_id": "game_nhl_2025_20260319_sea_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Seattle Kraken", "home_team_abbrev": "NSH", @@ -50133,8 +47348,7 @@ "canonical_id": "game_nba_2025_20260319_mil_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Milwaukee Bucks", "home_team_abbrev": "UTA", @@ -50151,8 +47365,7 @@ "canonical_id": "game_nhl_2025_20260319_fla_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Florida Panthers", "home_team_abbrev": "EDM", @@ -50169,8 +47382,7 @@ "canonical_id": "game_mlb_2026_20260320_ari_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T01:05:00Z", "home_team": "Chicago White Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHW", @@ -50187,8 +47399,7 @@ "canonical_id": "game_mlb_2026_20260320_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T01:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -50205,8 +47416,7 @@ "canonical_id": "game_mlb_2026_20260320_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -50223,8 +47433,7 @@ "canonical_id": "game_mlb_2026_20260320_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -50241,8 +47450,7 @@ "canonical_id": "game_mlb_2026_20260320_chw_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-19", - "time": "6:10p", + "game_datetime_utc": "2026-03-20T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -50259,8 +47467,7 @@ "canonical_id": "game_nba_2025_20260319_phi_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Philadelphia 76ers", "home_team_abbrev": "SAC", @@ -50277,8 +47484,7 @@ "canonical_id": "game_nhl_2025_20260319_ari_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Utah Club", "home_team_abbrev": "VGK", @@ -50295,8 +47501,7 @@ "canonical_id": "game_nhl_2025_20260319_buf_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Buffalo Sabres", "home_team_abbrev": "SJ", @@ -50313,8 +47518,7 @@ "canonical_id": "game_nhl_2025_20260319_tb_van", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7p", + "game_datetime_utc": "2026-03-20T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "VAN", @@ -50331,8 +47535,7 @@ "canonical_id": "game_nhl_2025_20260319_phi_la", "sport": "NHL", "season": "2026", - "date": "2026-03-19", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "LA", @@ -50349,8 +47552,7 @@ "canonical_id": "game_mlb_2026_20260320_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -50367,8 +47569,7 @@ "canonical_id": "game_mlb_2026_20260320_det_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Detroit Tigers", "home_team_abbrev": "PHI", @@ -50385,8 +47586,7 @@ "canonical_id": "game_mlb_2026_20260320_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -50403,8 +47603,7 @@ "canonical_id": "game_mlb_2026_20260320_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -50421,8 +47620,7 @@ "canonical_id": "game_mlb_2026_20260320_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -50439,8 +47637,7 @@ "canonical_id": "game_mlb_2026_20260320_chw_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "12:10p", + "game_datetime_utc": "2026-03-20T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -50457,8 +47654,7 @@ "canonical_id": "game_mlb_2026_20260320_chc_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago Cubs", "home_team_abbrev": "OAK", @@ -50475,8 +47671,7 @@ "canonical_id": "game_mlb_2026_20260320_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -50493,8 +47688,7 @@ "canonical_id": "game_mlb_2026_20260320_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:05p", + "game_datetime_utc": "2026-03-20T20:05:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -50511,8 +47705,7 @@ "canonical_id": "game_mlb_2026_20260320_mil_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "1:10p", + "game_datetime_utc": "2026-03-20T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -50529,8 +47722,7 @@ "canonical_id": "game_mlb_2026_20260320_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T22:05:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -50547,8 +47739,7 @@ "canonical_id": "game_mlb_2026_20260320_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-20T22:05:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -50565,8 +47756,7 @@ "canonical_id": "game_mlb_2026_20260320_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:35p", + "game_datetime_utc": "2026-03-20T22:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -50583,8 +47773,7 @@ "canonical_id": "game_nhl_2025_20260320_car_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-20T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Carolina Hurricanes", "home_team_abbrev": "TOR", @@ -50601,8 +47790,7 @@ "canonical_id": "game_nhl_2025_20260320_njd_was", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-20T23:00:00Z", "home_team": "Washington Capitals", "away_team": "New Jersey Devils", "home_team_abbrev": "WAS", @@ -50619,8 +47807,7 @@ "canonical_id": "game_nba_2025_20260320_gsw_det", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Golden State Warriors", "home_team_abbrev": "DET", @@ -50637,8 +47824,7 @@ "canonical_id": "game_nba_2025_20260320_nyk_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-20T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "New York Knicks", "home_team_abbrev": "BKN", @@ -50655,8 +47841,7 @@ "canonical_id": "game_nba_2025_20260320_bos_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Boston Celtics", "home_team_abbrev": "MEM", @@ -50673,8 +47858,7 @@ "canonical_id": "game_nba_2025_20260320_por_min", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Portland Blazers", "home_team_abbrev": "MIN", @@ -50691,8 +47875,7 @@ "canonical_id": "game_nba_2025_20260320_atl_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Atlanta Hawks", "home_team_abbrev": "HOU", @@ -50709,8 +47892,7 @@ "canonical_id": "game_nwsl_2026_20260321_den_orl", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "ORL", @@ -50727,8 +47909,7 @@ "canonical_id": "game_nwsl_2026_20260321_wsh_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Washington Washington Spirit", "home_team_abbrev": "RGN", @@ -50745,8 +47926,7 @@ "canonical_id": "game_mlb_2026_20260321_sf_tex", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "5:05p", + "game_datetime_utc": "2026-03-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -50763,8 +47943,7 @@ "canonical_id": "game_mlb_2026_20260321_kc_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "5:05p", + "game_datetime_utc": "2026-03-21T00:05:00Z", "home_team": "San Francisco Giants", "away_team": "Kansas City Royals", "home_team_abbrev": "SF", @@ -50781,8 +47960,7 @@ "canonical_id": "game_nhl_2025_20260320_col_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Colorado Avalanche", "home_team_abbrev": "CHI", @@ -50799,8 +47977,7 @@ "canonical_id": "game_nba_2025_20260320_tor_den", "sport": "NBA", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Toronto Raptors", "home_team_abbrev": "DEN", @@ -50817,8 +47994,7 @@ "canonical_id": "game_nhl_2025_20260320_fla_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Florida Panthers", "home_team_abbrev": "CGY", @@ -50835,8 +48011,7 @@ "canonical_id": "game_mlb_2026_20260321_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:05p", + "game_datetime_utc": "2026-03-21T01:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -50853,8 +48028,7 @@ "canonical_id": "game_mlb_2026_20260321_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-20", - "time": "6:10p", + "game_datetime_utc": "2026-03-21T01:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -50871,8 +48045,7 @@ "canonical_id": "game_nhl_2025_20260320_ana_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-20", - "time": "8p", + "game_datetime_utc": "2026-03-21T02:00:00Z", "home_team": "Utah Club", "away_team": "Anaheim Ducks", "home_team_abbrev": "ARI", @@ -50889,8 +48062,7 @@ "canonical_id": "game_nwsl_2026_20260321_sea_por", "sport": "NWSL", "season": "2026", - "date": "2026-03-20", - "time": "7p", + "game_datetime_utc": "2026-03-21T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "POR", @@ -50907,8 +48079,7 @@ "canonical_id": "game_mls_2026_20260321_clb_tor", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "TOR", @@ -50925,8 +48096,7 @@ "canonical_id": "game_nhl_2025_20260321_wpg_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T17:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Winnipeg Jets", "home_team_abbrev": "PIT", @@ -50943,8 +48113,7 @@ "canonical_id": "game_mlb_2026_20260321_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -50961,8 +48130,7 @@ "canonical_id": "game_mlb_2026_20260321_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -50979,8 +48147,7 @@ "canonical_id": "game_mlb_2026_20260321_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -50997,8 +48164,7 @@ "canonical_id": "game_mlb_2026_20260321_tor_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PIT", @@ -51015,8 +48181,7 @@ "canonical_id": "game_mlb_2026_20260321_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -51033,8 +48198,7 @@ "canonical_id": "game_mlb_2026_20260321_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -51051,8 +48215,7 @@ "canonical_id": "game_mlb_2026_20260321_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T17:05:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -51069,8 +48232,7 @@ "canonical_id": "game_mlb_2026_20260321_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T17:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -51087,8 +48249,7 @@ "canonical_id": "game_nhl_2025_20260321_vgk_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T18:00:00Z", "home_team": "Nashville Predators", "away_team": "Vegas Golden Knights", "home_team_abbrev": "NSH", @@ -51105,8 +48266,7 @@ "canonical_id": "game_mlb_2026_20260321_oak_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Oakland Athletics", "home_team_abbrev": "LAD", @@ -51123,8 +48283,7 @@ "canonical_id": "game_mlb_2026_20260321_col_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "Kansas City Royals", "away_team": "Colorado Rockies", "home_team_abbrev": "KC", @@ -51141,8 +48300,7 @@ "canonical_id": "game_mlb_2026_20260321_cle_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "12:05p", + "game_datetime_utc": "2026-03-21T19:05:00Z", "home_team": "San Francisco Giants", "away_team": "Cleveland Guardians", "home_team_abbrev": "SF", @@ -51159,8 +48317,7 @@ "canonical_id": "game_nhl_2025_20260321_buf_la", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Buffalo Sabres", "home_team_abbrev": "LA", @@ -51177,8 +48334,7 @@ "canonical_id": "game_nhl_2025_20260321_dal_min", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "3p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Minnesota Wild", "away_team": "Dallas Stars", "home_team_abbrev": "MIN", @@ -51195,8 +48351,7 @@ "canonical_id": "game_nhl_2025_20260321_phi_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "1p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "San Jose Sharks", "away_team": "Philadelphia Flyers", "home_team_abbrev": "SJ", @@ -51213,8 +48368,7 @@ "canonical_id": "game_nwsl_2026_20260321_bos_hou", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "3p", + "game_datetime_utc": "2026-03-21T20:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "HOU", @@ -51231,8 +48385,7 @@ "canonical_id": "game_mlb_2026_20260321_chw_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:05p", + "game_datetime_utc": "2026-03-21T20:05:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago White Sox", "home_team_abbrev": "CIN", @@ -51249,8 +48402,7 @@ "canonical_id": "game_mlb_2026_20260321_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -51267,8 +48419,7 @@ "canonical_id": "game_mlb_2026_20260321_chc_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -51285,8 +48436,7 @@ "canonical_id": "game_mlb_2026_20260321_tex_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-21", - "time": "1:10p", + "game_datetime_utc": "2026-03-21T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -51303,8 +48453,7 @@ "canonical_id": "game_mls_2026_20260321_chi_phi", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "4:30p", + "game_datetime_utc": "2026-03-21T20:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "PHI", @@ -51321,8 +48470,7 @@ "canonical_id": "game_nba_2025_20260321_okc_was", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T21:00:00Z", "home_team": "Washington Wizards", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "WAS", @@ -51339,8 +48487,7 @@ "canonical_id": "game_nhl_2025_20260321_sea_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Seattle Kraken", "home_team_abbrev": "CBJ", @@ -51357,8 +48504,7 @@ "canonical_id": "game_mls_2026_20260321_orl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "5p", + "game_datetime_utc": "2026-03-21T22:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Orlando Orlando City", "home_team_abbrev": "NSH", @@ -51375,8 +48521,7 @@ "canonical_id": "game_nwsl_2026_20260321_ncc_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "6:30p", + "game_datetime_utc": "2026-03-21T22:30:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "NJY", @@ -51393,8 +48538,7 @@ "canonical_id": "game_nba_2025_20260321_lal_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Los Angeles Lakers", "home_team_abbrev": "ORL", @@ -51411,8 +48555,7 @@ "canonical_id": "game_nba_2025_20260321_cle_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "6p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "NOP", @@ -51429,8 +48572,7 @@ "canonical_id": "game_nba_2025_20260321_mem_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "CHA", @@ -51447,8 +48589,7 @@ "canonical_id": "game_nhl_2025_20260321_nyi_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New York Islanders", "home_team_abbrev": "MTL", @@ -51465,8 +48606,7 @@ "canonical_id": "game_nhl_2025_20260321_stl_van", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "4p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "St. Louis Blues", "home_team_abbrev": "VAN", @@ -51483,8 +48623,7 @@ "canonical_id": "game_nhl_2025_20260321_tor_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-21T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "OTT", @@ -51501,8 +48640,7 @@ "canonical_id": "game_mls_2026_20260321_mtl_cin", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CIN", @@ -51519,8 +48657,7 @@ "canonical_id": "game_mls_2026_20260321_dc_atl", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Washington D.C. United", "home_team_abbrev": "ATL", @@ -51537,8 +48674,7 @@ "canonical_id": "game_mls_2026_20260321_ny_clt", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-21T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CLT", @@ -51555,8 +48691,7 @@ "canonical_id": "game_nba_2025_20260321_gsw_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Golden State Warriors", "home_team_abbrev": "ATL", @@ -51573,8 +48708,7 @@ "canonical_id": "game_nba_2025_20260321_ind_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Indiana Pacers", "home_team_abbrev": "SAS", @@ -51591,8 +48725,7 @@ "canonical_id": "game_nba_2025_20260321_mia_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Miami Heat", "home_team_abbrev": "HOU", @@ -51609,8 +48742,7 @@ "canonical_id": "game_nhl_2025_20260321_bos_det", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Boston Bruins", "home_team_abbrev": "DET", @@ -51627,8 +48759,7 @@ "canonical_id": "game_mls_2026_20260322_hou_dal", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "DAL", @@ -51645,8 +48776,7 @@ "canonical_id": "game_mls_2026_20260322_ne_stl", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "New England New England Revolution", "home_team_abbrev": "STL", @@ -51663,8 +48793,7 @@ "canonical_id": "game_mls_2026_20260322_col_skc", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SKC", @@ -51681,8 +48810,7 @@ "canonical_id": "game_mls_2026_20260322_lafc_aus", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "AUS", @@ -51699,8 +48827,7 @@ "canonical_id": "game_nba_2025_20260321_lac_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "DAL", @@ -51717,8 +48844,7 @@ "canonical_id": "game_nwsl_2026_20260322_ang_bay", "sport": "NWSL", "season": "2026", - "date": "2026-03-21", - "time": "5:45p", + "game_datetime_utc": "2026-03-22T00:45:00Z", "home_team": "San Francisco Bay FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "BAY", @@ -51735,8 +48861,7 @@ "canonical_id": "game_nba_2025_20260321_phi_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T01:30:00Z", "home_team": "Utah Jazz", "away_team": "Philadelphia 76ers", "home_team_abbrev": "UTA", @@ -51753,8 +48878,7 @@ "canonical_id": "game_nba_2025_20260321_mil_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-21", - "time": "10p", + "game_datetime_utc": "2026-03-22T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHX", @@ -51771,8 +48895,7 @@ "canonical_id": "game_nhl_2025_20260321_tb_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-21", - "time": "8p", + "game_datetime_utc": "2026-03-22T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "EDM", @@ -51789,8 +48912,7 @@ "canonical_id": "game_mls_2026_20260322_sj_van", "sport": "MLS", "season": "2026", - "date": "2026-03-21", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "VAN", @@ -51807,8 +48929,7 @@ "canonical_id": "game_nhl_2025_20260322_wpg_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "12p", + "game_datetime_utc": "2026-03-22T16:00:00Z", "home_team": "New York Rangers", "away_team": "Winnipeg Jets", "home_team_abbrev": "NYR", @@ -51825,8 +48946,7 @@ "canonical_id": "game_mlb_2026_20260322_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T16:05:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -51843,8 +48963,7 @@ "canonical_id": "game_nhl_2025_20260322_col_was", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "12:30p", + "game_datetime_utc": "2026-03-22T16:30:00Z", "home_team": "Washington Capitals", "away_team": "Colorado Avalanche", "home_team_abbrev": "WAS", @@ -51861,8 +48980,7 @@ "canonical_id": "game_mls_2026_20260322_mia_nyc", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1p", + "game_datetime_utc": "2026-03-22T17:00:00Z", "home_team": "New York New York City FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "NYC", @@ -51879,8 +48997,7 @@ "canonical_id": "game_mlb_2026_20260322_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -51897,8 +49014,7 @@ "canonical_id": "game_mlb_2026_20260322_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -51915,8 +49031,7 @@ "canonical_id": "game_mlb_2026_20260322_phi_nyy", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:05p", + "game_datetime_utc": "2026-03-22T17:05:00Z", "home_team": "New York Yankees", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYY", @@ -51933,8 +49048,7 @@ "canonical_id": "game_mlb_2026_20260322_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:07p", + "game_datetime_utc": "2026-03-22T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -51951,8 +49065,7 @@ "canonical_id": "game_mlb_2026_20260322_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -51969,8 +49082,7 @@ "canonical_id": "game_mlb_2026_20260322_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:35p", + "game_datetime_utc": "2026-03-22T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -51987,8 +49099,7 @@ "canonical_id": "game_nwsl_2026_20260322_kcc_chi", "sport": "NWSL", "season": "2026", - "date": "2026-03-22", - "time": "1p", + "game_datetime_utc": "2026-03-22T18:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "CHI", @@ -52005,8 +49116,7 @@ "canonical_id": "game_mls_2026_20260322_sea_min", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1:30p", + "game_datetime_utc": "2026-03-22T18:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "MIN", @@ -52023,8 +49133,7 @@ "canonical_id": "game_nhl_2025_20260322_car_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PIT", @@ -52041,8 +49150,7 @@ "canonical_id": "game_nhl_2025_20260322_nsh_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "2p", + "game_datetime_utc": "2026-03-22T19:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "Nashville Predators", "home_team_abbrev": "CHI", @@ -52059,8 +49167,7 @@ "canonical_id": "game_mlb_2026_20260322_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -52077,8 +49184,7 @@ "canonical_id": "game_mlb_2026_20260322_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -52095,8 +49201,7 @@ "canonical_id": "game_mlb_2026_20260322_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "12:05p", + "game_datetime_utc": "2026-03-22T19:05:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -52113,8 +49218,7 @@ "canonical_id": "game_mlb_2026_20260322_oak_col", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Oakland Athletics", "home_team_abbrev": "COL", @@ -52131,8 +49235,7 @@ "canonical_id": "game_mlb_2026_20260322_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "1:10p", + "game_datetime_utc": "2026-03-22T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -52149,8 +49252,7 @@ "canonical_id": "game_mls_2026_20260322_lag_por", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "1:30p", + "game_datetime_utc": "2026-03-22T20:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "POR", @@ -52167,8 +49269,7 @@ "canonical_id": "game_nba_2025_20260322_por_den", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T21:00:00Z", "home_team": "Denver Nuggets", "away_team": "Portland Blazers", "home_team_abbrev": "DEN", @@ -52185,8 +49286,7 @@ "canonical_id": "game_nba_2025_20260322_brk_sac", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "3p", + "game_datetime_utc": "2026-03-22T22:00:00Z", "home_team": "Sacramento Kings", "away_team": "Brooklyn Nets", "home_team_abbrev": "SAC", @@ -52203,8 +49303,7 @@ "canonical_id": "game_mls_2026_20260322_slc_sd", "sport": "MLS", "season": "2026", - "date": "2026-03-22", - "time": "4p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SD", @@ -52221,8 +49320,7 @@ "canonical_id": "game_nhl_2025_20260322_vgk_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "6p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "Dallas Stars", "away_team": "Vegas Golden Knights", "home_team_abbrev": "DAL", @@ -52239,8 +49337,7 @@ "canonical_id": "game_nhl_2025_20260322_cbj_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "7p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "New York Islanders", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "NYI", @@ -52257,8 +49354,7 @@ "canonical_id": "game_nwsl_2026_20260322_sdw_uta", "sport": "NWSL", "season": "2026", - "date": "2026-03-22", - "time": "5p", + "game_datetime_utc": "2026-03-22T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "UTA", @@ -52275,8 +49371,7 @@ "canonical_id": "game_nba_2025_20260322_was_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "7:30p", + "game_datetime_utc": "2026-03-22T23:30:00Z", "home_team": "New York Knicks", "away_team": "Washington Wizards", "home_team_abbrev": "NYK", @@ -52293,8 +49388,7 @@ "canonical_id": "game_nba_2025_20260322_min_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "8p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Boston Celtics", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "BOS", @@ -52311,8 +49405,7 @@ "canonical_id": "game_nhl_2025_20260322_buf_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "5p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Buffalo Sabres", "home_team_abbrev": "ANA", @@ -52329,8 +49422,7 @@ "canonical_id": "game_nhl_2025_20260322_tb_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "6p", + "game_datetime_utc": "2026-03-23T00:00:00Z", "home_team": "Calgary Flames", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "CGY", @@ -52347,8 +49439,7 @@ "canonical_id": "game_nba_2025_20260322_tor_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-22", - "time": "9p", + "game_datetime_utc": "2026-03-23T01:00:00Z", "home_team": "Phoenix Suns", "away_team": "Toronto Raptors", "home_team_abbrev": "PHX", @@ -52365,8 +49456,7 @@ "canonical_id": "game_nhl_2025_20260322_la_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-22", - "time": "7p", + "game_datetime_utc": "2026-03-23T01:00:00Z", "home_team": "Utah Club", "away_team": "Los Angeles Kings", "home_team_abbrev": "ARI", @@ -52383,8 +49473,7 @@ "canonical_id": "game_mlb_2026_20260323_lad_laa", "sport": "MLB", "season": "2026", - "date": "2026-03-22", - "time": "6:07p", + "game_datetime_utc": "2026-03-23T01:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -52401,8 +49490,7 @@ "canonical_id": "game_mlb_2026_20260323_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T16:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -52419,8 +49507,7 @@ "canonical_id": "game_mlb_2026_20260323_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -52437,8 +49524,7 @@ "canonical_id": "game_mlb_2026_20260323_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -52455,8 +49541,7 @@ "canonical_id": "game_mlb_2026_20260323_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "1:05p", + "game_datetime_utc": "2026-03-23T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -52473,8 +49558,7 @@ "canonical_id": "game_mlb_2026_20260323_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -52491,8 +49575,7 @@ "canonical_id": "game_mlb_2026_20260323_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:05p", + "game_datetime_utc": "2026-03-23T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -52509,8 +49592,7 @@ "canonical_id": "game_mlb_2026_20260323_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "12:10p", + "game_datetime_utc": "2026-03-23T19:10:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -52527,8 +49609,7 @@ "canonical_id": "game_nba_2025_20260323_okc_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "4p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "PHI", @@ -52545,8 +49626,7 @@ "canonical_id": "game_nba_2025_20260323_mem_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "ATL", @@ -52563,8 +49643,7 @@ "canonical_id": "game_nba_2025_20260323_lal_det", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DET", @@ -52581,8 +49660,7 @@ "canonical_id": "game_nba_2025_20260323_ind_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-23T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Indiana Pacers", "home_team_abbrev": "ORL", @@ -52599,8 +49677,7 @@ "canonical_id": "game_nba_2025_20260323_sas_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-23T23:30:00Z", "home_team": "Miami Heat", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIA", @@ -52617,8 +49694,7 @@ "canonical_id": "game_nhl_2025_20260323_ott_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-23T23:30:00Z", "home_team": "New York Rangers", "away_team": "Ottawa Senators", "home_team_abbrev": "NYR", @@ -52635,8 +49711,7 @@ "canonical_id": "game_mlb_2026_20260323_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:40p", + "game_datetime_utc": "2026-03-23T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -52653,8 +49728,7 @@ "canonical_id": "game_nba_2025_20260323_hou_chi", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Houston Rockets", "home_team_abbrev": "CHI", @@ -52671,8 +49745,7 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "7:05p", + "game_datetime_utc": "2026-03-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -52689,8 +49762,7 @@ "canonical_id": "game_nba_2025_20260323_tor_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Toronto Raptors", "home_team_abbrev": "UTA", @@ -52707,8 +49779,7 @@ "canonical_id": "game_mlb_2026_20260324_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:10p", + "game_datetime_utc": "2026-03-24T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -52725,8 +49796,7 @@ "canonical_id": "game_mlb_2026_20260324_det_col_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:10p", + "game_datetime_utc": "2026-03-24T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Detroit Tigers", "home_team_abbrev": "COL", @@ -52743,8 +49813,7 @@ "canonical_id": "game_nba_2025_20260323_gsw_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "8:30p", + "game_datetime_utc": "2026-03-24T01:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Golden State Warriors", "home_team_abbrev": "DAL", @@ -52761,8 +49830,7 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-03-23", - "time": "6:40p", + "game_datetime_utc": "2026-03-24T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -52779,8 +49847,7 @@ "canonical_id": "game_nba_2025_20260323_brk_por", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7p", + "game_datetime_utc": "2026-03-24T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Brooklyn Nets", "home_team_abbrev": "POR", @@ -52797,8 +49864,7 @@ "canonical_id": "game_nba_2025_20260323_mil_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-23", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "LAC", @@ -52815,8 +49881,7 @@ "canonical_id": "game_mlb_2026_20260324_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:05p", + "game_datetime_utc": "2026-03-24T16:05:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -52833,8 +49898,7 @@ "canonical_id": "game_mlb_2026_20260324_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "1:05p", + "game_datetime_utc": "2026-03-24T17:05:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -52851,8 +49915,7 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "1:05p", + "game_datetime_utc": "2026-03-24T18:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -52869,8 +49932,7 @@ "canonical_id": "game_mlb_2026_20260324_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:05p", + "game_datetime_utc": "2026-03-24T19:05:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -52887,8 +49949,7 @@ "canonical_id": "game_mlb_2026_20260324_det_col_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:10p", + "game_datetime_utc": "2026-03-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Detroit Tigers", "home_team_abbrev": "COL", @@ -52905,8 +49966,7 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "12:40p", + "game_datetime_utc": "2026-03-24T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cleveland Guardians", "home_team_abbrev": "ARI", @@ -52923,8 +49983,7 @@ "canonical_id": "game_mlb_2026_20260324_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "4:10p", + "game_datetime_utc": "2026-03-24T21:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -52941,8 +50000,7 @@ "canonical_id": "game_nba_2025_20260324_sac_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Sacramento Kings", "home_team_abbrev": "CHA", @@ -52959,8 +50017,7 @@ "canonical_id": "game_nhl_2025_20260324_tor_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "BOS", @@ -52977,8 +50034,7 @@ "canonical_id": "game_nhl_2025_20260324_car_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Carolina Hurricanes", "home_team_abbrev": "MTL", @@ -52995,8 +50051,7 @@ "canonical_id": "game_nhl_2025_20260324_col_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Colorado Avalanche", "home_team_abbrev": "PIT", @@ -53013,8 +50068,7 @@ "canonical_id": "game_nhl_2025_20260324_sea_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Seattle Kraken", "home_team_abbrev": "FLA", @@ -53031,8 +50085,7 @@ "canonical_id": "game_nhl_2025_20260324_cbj_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "PHI", @@ -53049,8 +50102,7 @@ "canonical_id": "game_nhl_2025_20260324_chi_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "New York Islanders", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NYI", @@ -53067,8 +50119,7 @@ "canonical_id": "game_nhl_2025_20260324_ott_det", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-24T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Ottawa Senators", "home_team_abbrev": "DET", @@ -53085,8 +50136,7 @@ "canonical_id": "game_nba_2025_20260324_nop_nyk", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T23:30:00Z", "home_team": "New York Knicks", "away_team": "New Orleans Pelicans", "home_team_abbrev": "NYK", @@ -53103,8 +50153,7 @@ "canonical_id": "game_nhl_2025_20260324_min_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-24T23:30:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Minnesota Wild", "home_team_abbrev": "TB", @@ -53121,8 +50170,7 @@ "canonical_id": "game_nba_2025_20260324_orl_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Orlando Magic", "home_team_abbrev": "CLE", @@ -53139,8 +50187,7 @@ "canonical_id": "game_nhl_2025_20260324_njd_dal", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Dallas Stars", "away_team": "New Jersey Devils", "home_team_abbrev": "DAL", @@ -53157,8 +50204,7 @@ "canonical_id": "game_nhl_2025_20260324_sj_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Nashville Predators", "away_team": "San Jose Sharks", "home_team_abbrev": "NSH", @@ -53175,8 +50221,7 @@ "canonical_id": "game_nhl_2025_20260324_was_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Washington Capitals", "home_team_abbrev": "STL", @@ -53193,8 +50238,7 @@ "canonical_id": "game_nhl_2025_20260324_vgk_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Vegas Golden Knights", "home_team_abbrev": "WPG", @@ -53211,8 +50255,7 @@ "canonical_id": "game_mlb_2026_20260325_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-24", - "time": "5:10p", + "game_datetime_utc": "2026-03-25T00:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -53229,8 +50272,7 @@ "canonical_id": "game_nhl_2025_20260324_la_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Los Angeles Kings", "home_team_abbrev": "CGY", @@ -53247,8 +50289,7 @@ "canonical_id": "game_nhl_2025_20260324_edm_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T01:30:00Z", "home_team": "Utah Club", "away_team": "Edmonton Oilers", "home_team_abbrev": "ARI", @@ -53265,8 +50306,7 @@ "canonical_id": "game_nhl_2025_20260324_ana_van", "sport": "NHL", "season": "2026", - "date": "2026-03-24", - "time": "7p", + "game_datetime_utc": "2026-03-25T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Anaheim Ducks", "home_team_abbrev": "VAN", @@ -53283,8 +50323,7 @@ "canonical_id": "game_nba_2025_20260324_den_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-24", - "time": "11p", + "game_datetime_utc": "2026-03-25T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Denver Nuggets", "home_team_abbrev": "PHX", @@ -53301,8 +50340,7 @@ "canonical_id": "game_nba_2025_20260325_lal_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Los Angeles Lakers", "home_team_abbrev": "IND", @@ -53319,8 +50357,7 @@ "canonical_id": "game_nba_2025_20260325_atl_det", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Atlanta Hawks", "home_team_abbrev": "DET", @@ -53337,8 +50374,7 @@ "canonical_id": "game_nba_2025_20260325_chi_phi", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "4p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Chicago Bulls", "home_team_abbrev": "PHI", @@ -53355,8 +50391,7 @@ "canonical_id": "game_nhl_2025_20260325_bos_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Boston Bruins", "home_team_abbrev": "BUF", @@ -53373,8 +50408,7 @@ "canonical_id": "game_nwsl_2026_20260325_uta_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Utah Utah Royals", "home_team_abbrev": "WSH", @@ -53391,8 +50425,7 @@ "canonical_id": "game_nwsl_2026_20260325_den_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-25T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "NJY", @@ -53409,8 +50442,7 @@ "canonical_id": "game_nba_2025_20260325_okc_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "BOS", @@ -53427,8 +50459,7 @@ "canonical_id": "game_nba_2025_20260325_mia_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "6:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Miami Heat", "home_team_abbrev": "CLE", @@ -53445,8 +50476,7 @@ "canonical_id": "game_nhl_2025_20260325_nyr_tor", "sport": "NHL", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-25T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "New York Rangers", "home_team_abbrev": "TOR", @@ -53463,8 +50493,7 @@ "canonical_id": "game_nba_2025_20260325_sas_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "San Antonio Spurs", "home_team_abbrev": "MEM", @@ -53481,8 +50510,7 @@ "canonical_id": "game_nwsl_2026_20260326_orl_chi", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "CHI", @@ -53499,8 +50527,7 @@ "canonical_id": "game_mlb_2026_20260326_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-25", - "time": "5:05p", + "game_datetime_utc": "2026-03-26T00:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -53517,8 +50544,7 @@ "canonical_id": "game_nba_2025_20260325_was_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Washington Wizards", "home_team_abbrev": "UTA", @@ -53535,8 +50561,7 @@ "canonical_id": "game_nwsl_2026_20260326_kcc_sea", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "6p", + "game_datetime_utc": "2026-03-26T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "SEA", @@ -53553,8 +50578,7 @@ "canonical_id": "game_nba_2025_20260325_hou_min", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "8:30p", + "game_datetime_utc": "2026-03-26T01:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Houston Rockets", "home_team_abbrev": "MIN", @@ -53571,8 +50595,7 @@ "canonical_id": "game_nba_2025_20260325_dal_den", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "8p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Dallas Mavericks", "home_team_abbrev": "DEN", @@ -53589,8 +50612,7 @@ "canonical_id": "game_nba_2025_20260325_brk_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Brooklyn Nets", "home_team_abbrev": "GSW", @@ -53607,8 +50629,7 @@ "canonical_id": "game_nba_2025_20260325_mil_por", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "POR", @@ -53625,8 +50646,7 @@ "canonical_id": "game_nwsl_2026_20260326_por_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-25", - "time": "7p", + "game_datetime_utc": "2026-03-26T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Portland Portland Thorns", "home_team_abbrev": "SDW", @@ -53643,8 +50663,7 @@ "canonical_id": "game_nba_2025_20260325_tor_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-25", - "time": "7:30p", + "game_datetime_utc": "2026-03-26T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Toronto Raptors", "home_team_abbrev": "LAC", @@ -53661,8 +50680,7 @@ "canonical_id": "game_mlb_2026_20260326_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:15p", + "game_datetime_utc": "2026-03-26T17:15:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -53679,8 +50697,7 @@ "canonical_id": "game_mlb_2026_20260326_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:10p", + "game_datetime_utc": "2026-03-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -53697,8 +50714,7 @@ "canonical_id": "game_mlb_2026_20260326_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:20p", + "game_datetime_utc": "2026-03-26T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -53715,8 +50731,7 @@ "canonical_id": "game_mlb_2026_20260326_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:05p", + "game_datetime_utc": "2026-03-26T19:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -53733,8 +50748,7 @@ "canonical_id": "game_mlb_2026_20260326_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -53751,8 +50765,7 @@ "canonical_id": "game_mlb_2026_20260326_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "1:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -53769,8 +50782,7 @@ "canonical_id": "game_mlb_2026_20260326_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "4:10p", + "game_datetime_utc": "2026-03-26T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -53787,8 +50799,7 @@ "canonical_id": "game_mlb_2026_20260326_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "3:15p", + "game_datetime_utc": "2026-03-26T20:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -53805,8 +50816,7 @@ "canonical_id": "game_mlb_2026_20260326_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "4:15p", + "game_datetime_utc": "2026-03-26T20:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -53823,8 +50833,7 @@ "canonical_id": "game_nba_2025_20260326_nyk_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "New York Knicks", "home_team_abbrev": "CHA", @@ -53841,8 +50850,7 @@ "canonical_id": "game_nba_2025_20260326_sac_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Sacramento Kings", "home_team_abbrev": "ORL", @@ -53859,8 +50867,7 @@ "canonical_id": "game_nba_2025_20260326_nop_det", "sport": "NBA", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "New Orleans Pelicans", "home_team_abbrev": "DET", @@ -53877,8 +50884,7 @@ "canonical_id": "game_nhl_2025_20260326_pit_ott", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "OTT", @@ -53895,8 +50901,7 @@ "canonical_id": "game_nhl_2025_20260326_sea_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Seattle Kraken", "home_team_abbrev": "TB", @@ -53913,8 +50918,7 @@ "canonical_id": "game_nhl_2025_20260326_dal_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "New York Islanders", "away_team": "Dallas Stars", "home_team_abbrev": "NYI", @@ -53931,8 +50935,7 @@ "canonical_id": "game_nhl_2025_20260326_cbj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MTL", @@ -53949,8 +50952,7 @@ "canonical_id": "game_nhl_2025_20260326_min_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Minnesota Wild", "home_team_abbrev": "FLA", @@ -53967,8 +50969,7 @@ "canonical_id": "game_nhl_2025_20260326_chi_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-26T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "PHI", @@ -53985,8 +50986,7 @@ "canonical_id": "game_nhl_2025_20260326_col_wpg", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Colorado Avalanche", "home_team_abbrev": "WPG", @@ -54003,8 +51003,7 @@ "canonical_id": "game_nhl_2025_20260326_njd_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "Nashville Predators", "away_team": "New Jersey Devils", "home_team_abbrev": "NSH", @@ -54021,8 +51020,7 @@ "canonical_id": "game_nhl_2025_20260326_sj_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "San Jose Sharks", "home_team_abbrev": "STL", @@ -54039,8 +51037,7 @@ "canonical_id": "game_mlb_2026_20260327_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "5:30p", + "game_datetime_utc": "2026-03-27T00:30:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -54057,8 +51054,7 @@ "canonical_id": "game_nhl_2025_20260326_ana_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Anaheim Ducks", "home_team_abbrev": "CGY", @@ -54075,8 +51071,7 @@ "canonical_id": "game_nhl_2025_20260326_was_ari", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T01:00:00Z", "home_team": "Utah Club", "away_team": "Washington Capitals", "home_team_abbrev": "ARI", @@ -54093,8 +51088,7 @@ "canonical_id": "game_nhl_2025_20260326_edm_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "6:30p", + "game_datetime_utc": "2026-03-27T01:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Edmonton Oilers", "home_team_abbrev": "VGK", @@ -54111,8 +51105,7 @@ "canonical_id": "game_nhl_2025_20260326_la_van", "sport": "NHL", "season": "2026", - "date": "2026-03-26", - "time": "7p", + "game_datetime_utc": "2026-03-27T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Los Angeles Kings", "home_team_abbrev": "VAN", @@ -54129,8 +51122,7 @@ "canonical_id": "game_mlb_2026_20260327_cle_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-26", - "time": "7:10p", + "game_datetime_utc": "2026-03-27T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -54147,8 +51139,7 @@ "canonical_id": "game_mlb_2026_20260327_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "1:35p", + "game_datetime_utc": "2026-03-27T20:35:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -54165,8 +51156,7 @@ "canonical_id": "game_nba_2025_20260327_lac_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "Indiana Pacers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "IND", @@ -54183,8 +51173,7 @@ "canonical_id": "game_nhl_2025_20260327_det_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Detroit Red Wings", "home_team_abbrev": "BUF", @@ -54201,8 +51190,7 @@ "canonical_id": "game_nhl_2025_20260327_chi_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-27T23:00:00Z", "home_team": "New York Rangers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NYR", @@ -54219,8 +51207,7 @@ "canonical_id": "game_mlb_2026_20260327_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:07p", + "game_datetime_utc": "2026-03-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -54237,8 +51224,7 @@ "canonical_id": "game_mlb_2026_20260327_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-27T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -54255,8 +51241,7 @@ "canonical_id": "game_mlb_2026_20260327_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:15p", + "game_datetime_utc": "2026-03-27T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -54273,8 +51258,7 @@ "canonical_id": "game_nba_2025_20260327_mia_cle", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "6:30p", + "game_datetime_utc": "2026-03-27T23:30:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Miami Heat", "home_team_abbrev": "CLE", @@ -54291,8 +51275,7 @@ "canonical_id": "game_nba_2025_20260327_atl_bos", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7:30p", + "game_datetime_utc": "2026-03-27T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Atlanta Hawks", "home_team_abbrev": "BOS", @@ -54309,8 +51292,7 @@ "canonical_id": "game_nba_2025_20260327_chi_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T00:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Chicago Bulls", "home_team_abbrev": "OKC", @@ -54327,8 +51309,7 @@ "canonical_id": "game_nba_2025_20260327_hou_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Houston Rockets", "home_team_abbrev": "MEM", @@ -54345,8 +51326,7 @@ "canonical_id": "game_mlb_2026_20260328_laa_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-28T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -54363,8 +51343,7 @@ "canonical_id": "game_nba_2025_20260327_nop_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "8:30p", + "game_datetime_utc": "2026-03-28T00:30:00Z", "home_team": "Toronto Raptors", "away_team": "New Orleans Pelicans", "home_team_abbrev": "TOR", @@ -54381,8 +51360,7 @@ "canonical_id": "game_nba_2025_20260327_uta_den", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Utah Jazz", "home_team_abbrev": "DEN", @@ -54399,8 +51377,7 @@ "canonical_id": "game_mlb_2026_20260328_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "6:40p", + "game_datetime_utc": "2026-03-28T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -54417,8 +51394,7 @@ "canonical_id": "game_mlb_2026_20260328_cle_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "6:40p", + "game_datetime_utc": "2026-03-28T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -54435,8 +51411,7 @@ "canonical_id": "game_nba_2025_20260327_was_gsw", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Washington Wizards", "home_team_abbrev": "GSW", @@ -54453,8 +51428,7 @@ "canonical_id": "game_nba_2025_20260327_dal_por", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Dallas Mavericks", "home_team_abbrev": "POR", @@ -54471,8 +51445,7 @@ "canonical_id": "game_nwsl_2026_20260328_hou_ang", "sport": "NWSL", "season": "2026", - "date": "2026-03-27", - "time": "7p", + "game_datetime_utc": "2026-03-28T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "ANG", @@ -54489,8 +51462,7 @@ "canonical_id": "game_mlb_2026_20260328_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-27", - "time": "7:10p", + "game_datetime_utc": "2026-03-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -54507,8 +51479,7 @@ "canonical_id": "game_nba_2025_20260327_brk_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-27", - "time": "7:30p", + "game_datetime_utc": "2026-03-28T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Brooklyn Nets", "home_team_abbrev": "LAL", @@ -54525,8 +51496,7 @@ "canonical_id": "game_nwsl_2026_20260328_uta_bos", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "12p", + "game_datetime_utc": "2026-03-28T16:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "BOS", @@ -54543,8 +51513,7 @@ "canonical_id": "game_nhl_2025_20260328_ott_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T17:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Ottawa Senators", "home_team_abbrev": "TB", @@ -54561,8 +51530,7 @@ "canonical_id": "game_nhl_2025_20260328_fla_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T17:00:00Z", "home_team": "New York Islanders", "away_team": "Florida Panthers", "home_team_abbrev": "NYI", @@ -54579,8 +51547,7 @@ "canonical_id": "game_nwsl_2026_20260328_wsh_den", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "12p", + "game_datetime_utc": "2026-03-28T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "DEN", @@ -54597,8 +51564,7 @@ "canonical_id": "game_mlb_2026_20260328_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "1:15p", + "game_datetime_utc": "2026-03-28T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -54615,8 +51581,7 @@ "canonical_id": "game_mlb_2026_20260328_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "1:20p", + "game_datetime_utc": "2026-03-28T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -54633,8 +51598,7 @@ "canonical_id": "game_nba_2025_20260328_sas_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "2p", + "game_datetime_utc": "2026-03-28T19:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "San Antonio Spurs", "home_team_abbrev": "MIL", @@ -54651,8 +51615,7 @@ "canonical_id": "game_mlb_2026_20260328_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "3:07p", + "game_datetime_utc": "2026-03-28T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -54669,8 +51632,7 @@ "canonical_id": "game_nhl_2025_20260328_ana_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "1:30p", + "game_datetime_utc": "2026-03-28T19:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Anaheim Ducks", "home_team_abbrev": "EDM", @@ -54687,8 +51649,7 @@ "canonical_id": "game_nwsl_2026_20260328_kcc_por", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "1p", + "game_datetime_utc": "2026-03-28T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "POR", @@ -54705,8 +51666,7 @@ "canonical_id": "game_mlb_2026_20260328_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:05p", + "game_datetime_utc": "2026-03-28T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -54723,8 +51683,7 @@ "canonical_id": "game_mlb_2026_20260328_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:05p", + "game_datetime_utc": "2026-03-28T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -54741,8 +51700,7 @@ "canonical_id": "game_mlb_2026_20260328_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -54759,8 +51717,7 @@ "canonical_id": "game_mlb_2026_20260328_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -54777,8 +51734,7 @@ "canonical_id": "game_mlb_2026_20260328_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:10p", + "game_datetime_utc": "2026-03-28T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -54795,8 +51751,7 @@ "canonical_id": "game_nhl_2025_20260328_sj_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "San Jose Sharks", "home_team_abbrev": "CBJ", @@ -54813,8 +51768,7 @@ "canonical_id": "game_nhl_2025_20260328_dal_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Dallas Stars", "home_team_abbrev": "PIT", @@ -54831,8 +51785,7 @@ "canonical_id": "game_nhl_2025_20260328_njd_car", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New Jersey Devils", "home_team_abbrev": "CAR", @@ -54849,8 +51802,7 @@ "canonical_id": "game_nhl_2025_20260328_min_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T21:00:00Z", "home_team": "Boston Bruins", "away_team": "Minnesota Wild", "home_team_abbrev": "BOS", @@ -54867,8 +51819,7 @@ "canonical_id": "game_nhl_2025_20260328_sea_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5:30p", + "game_datetime_utc": "2026-03-28T21:30:00Z", "home_team": "Buffalo Sabres", "away_team": "Seattle Kraken", "home_team_abbrev": "BUF", @@ -54885,8 +51836,7 @@ "canonical_id": "game_nba_2025_20260328_phi_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "CHA", @@ -54903,8 +51853,7 @@ "canonical_id": "game_nwsl_2026_20260328_rgn_sea", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "3:30p", + "game_datetime_utc": "2026-03-28T22:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "SEA", @@ -54921,8 +51870,7 @@ "canonical_id": "game_nhl_2025_20260328_wpg_col", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "5p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Winnipeg Jets", "home_team_abbrev": "COL", @@ -54939,8 +51887,7 @@ "canonical_id": "game_nhl_2025_20260328_tor_stl", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "St. Louis Blues", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "STL", @@ -54957,8 +51904,7 @@ "canonical_id": "game_nhl_2025_20260328_mtl_nsh", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "Nashville Predators", "away_team": "Montreal Canadiens", "home_team_abbrev": "NSH", @@ -54975,8 +51921,7 @@ "canonical_id": "game_nwsl_2026_20260328_bay_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-28T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "San Francisco Bay FC", "home_team_abbrev": "NCC", @@ -54993,8 +51938,7 @@ "canonical_id": "game_mlb_2026_20260328_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-28T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -55011,8 +51955,7 @@ "canonical_id": "game_mlb_2026_20260328_laa_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-28T23:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -55029,8 +51972,7 @@ "canonical_id": "game_mlb_2026_20260328_nyy_sf", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "4:15p", + "game_datetime_utc": "2026-03-28T23:15:00Z", "home_team": "San Francisco Giants", "away_team": "New York Yankees", "home_team_abbrev": "SF", @@ -55047,8 +51989,7 @@ "canonical_id": "game_mlb_2026_20260328_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "7:15p", + "game_datetime_utc": "2026-03-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -55065,8 +52006,7 @@ "canonical_id": "game_nba_2025_20260328_sac_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-28T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Sacramento Kings", "home_team_abbrev": "ATL", @@ -55083,8 +52023,7 @@ "canonical_id": "game_nba_2025_20260328_chi_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Chicago Bulls", "home_team_abbrev": "MEM", @@ -55101,8 +52040,7 @@ "canonical_id": "game_nba_2025_20260328_det_min", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "7p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Detroit Pistons", "home_team_abbrev": "MIN", @@ -55119,8 +52057,7 @@ "canonical_id": "game_nhl_2025_20260328_phi_det", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "8p", + "game_datetime_utc": "2026-03-29T00:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DET", @@ -55137,8 +52074,7 @@ "canonical_id": "game_mlb_2026_20260329_det_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "5:40p", + "game_datetime_utc": "2026-03-29T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Detroit Tigers", "home_team_abbrev": "SD", @@ -55155,8 +52091,7 @@ "canonical_id": "game_nwsl_2026_20260329_chi_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-03-28", - "time": "5:45p", + "game_datetime_utc": "2026-03-29T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "SDW", @@ -55173,8 +52108,7 @@ "canonical_id": "game_nhl_2025_20260328_ari_la", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "6p", + "game_datetime_utc": "2026-03-29T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Utah Club", "home_team_abbrev": "LA", @@ -55191,8 +52125,7 @@ "canonical_id": "game_mlb_2026_20260329_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:10p", + "game_datetime_utc": "2026-03-29T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -55209,8 +52142,7 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-03-28", - "time": "6:40p", + "game_datetime_utc": "2026-03-29T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -55227,8 +52159,7 @@ "canonical_id": "game_nba_2025_20260328_uta_phx", "sport": "NBA", "season": "2026", - "date": "2026-03-28", - "time": "10p", + "game_datetime_utc": "2026-03-29T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Utah Jazz", "home_team_abbrev": "PHX", @@ -55245,8 +52176,7 @@ "canonical_id": "game_nhl_2025_20260328_van_cgy", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "8p", + "game_datetime_utc": "2026-03-29T02:00:00Z", "home_team": "Calgary Flames", "away_team": "Vancouver Canucks", "home_team_abbrev": "CGY", @@ -55263,8 +52193,7 @@ "canonical_id": "game_nhl_2025_20260328_was_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-28", - "time": "7:30p", + "game_datetime_utc": "2026-03-29T02:30:00Z", "home_team": "Vegas Golden Knights", "away_team": "Washington Capitals", "home_team_abbrev": "VGK", @@ -55281,8 +52210,7 @@ "canonical_id": "game_nhl_2025_20260329_fla_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "1p", + "game_datetime_utc": "2026-03-29T17:00:00Z", "home_team": "New York Rangers", "away_team": "Florida Panthers", "home_team_abbrev": "NYR", @@ -55299,8 +52227,7 @@ "canonical_id": "game_mlb_2026_20260329_tex_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Texas Rangers", "home_team_abbrev": "PHI", @@ -55317,8 +52244,7 @@ "canonical_id": "game_mlb_2026_20260329_min_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Minnesota Twins", "home_team_abbrev": "BAL", @@ -55335,8 +52261,7 @@ "canonical_id": "game_mlb_2026_20260329_kc_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:35p", + "game_datetime_utc": "2026-03-29T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Kansas City Royals", "home_team_abbrev": "ATL", @@ -55353,8 +52278,7 @@ "canonical_id": "game_mlb_2026_20260329_oak_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:37p", + "game_datetime_utc": "2026-03-29T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Oakland Athletics", "home_team_abbrev": "TOR", @@ -55371,8 +52295,7 @@ "canonical_id": "game_mlb_2026_20260329_pit_nym", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "New York Mets", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYM", @@ -55389,8 +52312,7 @@ "canonical_id": "game_mlb_2026_20260329_col_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIA", @@ -55407,8 +52329,7 @@ "canonical_id": "game_mlb_2026_20260329_bos_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:40p", + "game_datetime_utc": "2026-03-29T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Boston Red Sox", "home_team_abbrev": "CIN", @@ -55425,8 +52346,7 @@ "canonical_id": "game_mlb_2026_20260329_chw_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:10p", + "game_datetime_utc": "2026-03-29T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago White Sox", "home_team_abbrev": "MIL", @@ -55443,8 +52363,7 @@ "canonical_id": "game_mlb_2026_20260329_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:10p", + "game_datetime_utc": "2026-03-29T18:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -55461,8 +52380,7 @@ "canonical_id": "game_mlb_2026_20260329_tbr_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:15p", + "game_datetime_utc": "2026-03-29T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "STL", @@ -55479,8 +52397,7 @@ "canonical_id": "game_mlb_2026_20260329_wsn_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "1:20p", + "game_datetime_utc": "2026-03-29T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Washington Nationals", "home_team_abbrev": "CHC", @@ -55497,8 +52414,7 @@ "canonical_id": "game_nba_2025_20260329_lac_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "2:30p", + "game_datetime_utc": "2026-03-29T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Los Angeles Clippers", "home_team_abbrev": "MIL", @@ -55515,8 +52431,7 @@ "canonical_id": "game_nba_2025_20260329_mia_ind", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Indiana Pacers", "away_team": "Miami Heat", "home_team_abbrev": "IND", @@ -55533,8 +52448,7 @@ "canonical_id": "game_nhl_2025_20260329_mtl_car", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Montreal Canadiens", "home_team_abbrev": "CAR", @@ -55551,8 +52465,7 @@ "canonical_id": "game_nhl_2025_20260329_nsh_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Nashville Predators", "home_team_abbrev": "TB", @@ -55569,8 +52482,7 @@ "canonical_id": "game_nhl_2025_20260329_bos_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "5p", + "game_datetime_utc": "2026-03-29T21:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Boston Bruins", "home_team_abbrev": "CBJ", @@ -55587,8 +52499,7 @@ "canonical_id": "game_nba_2025_20260329_orl_tor", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Orlando Magic", "home_team_abbrev": "TOR", @@ -55605,8 +52516,7 @@ "canonical_id": "game_nba_2025_20260329_was_por", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "3p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Portland Blazers", "away_team": "Washington Wizards", "home_team_abbrev": "POR", @@ -55623,8 +52533,7 @@ "canonical_id": "game_nba_2025_20260329_bos_cho", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Boston Celtics", "home_team_abbrev": "CHA", @@ -55641,8 +52550,7 @@ "canonical_id": "game_nba_2025_20260329_sac_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T22:00:00Z", "home_team": "Brooklyn Nets", "away_team": "Sacramento Kings", "home_team_abbrev": "BKN", @@ -55659,8 +52567,7 @@ "canonical_id": "game_nba_2025_20260329_hou_nop", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Houston Rockets", "home_team_abbrev": "NOP", @@ -55677,8 +52584,7 @@ "canonical_id": "game_nhl_2025_20260329_dal_phi", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Dallas Stars", "home_team_abbrev": "PHI", @@ -55695,8 +52601,7 @@ "canonical_id": "game_nhl_2025_20260329_chi_njd", "sport": "NHL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Chicago Blackhawks", "home_team_abbrev": "NJ", @@ -55713,8 +52618,7 @@ "canonical_id": "game_nwsl_2026_20260329_orl_njy", "sport": "NWSL", "season": "2026", - "date": "2026-03-29", - "time": "7p", + "game_datetime_utc": "2026-03-29T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "NJY", @@ -55731,8 +52635,7 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-03-29", - "time": "4:20p", + "game_datetime_utc": "2026-03-29T23:20:00Z", "home_team": "Seattle Mariners", "away_team": "Cleveland Guardians", "home_team_abbrev": "SEA", @@ -55749,8 +52652,7 @@ "canonical_id": "game_nba_2025_20260329_nyk_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "6:30p", + "game_datetime_utc": "2026-03-29T23:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "New York Knicks", "home_team_abbrev": "OKC", @@ -55767,8 +52669,7 @@ "canonical_id": "game_nba_2025_20260329_gsw_den", "sport": "NBA", "season": "2026", - "date": "2026-03-29", - "time": "8p", + "game_datetime_utc": "2026-03-30T02:00:00Z", "home_team": "Denver Nuggets", "away_team": "Golden State Warriors", "home_team_abbrev": "DEN", @@ -55785,8 +52686,7 @@ "canonical_id": "game_mlb_2026_20260330_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "3:10p", + "game_datetime_utc": "2026-03-30T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -55803,8 +52703,7 @@ "canonical_id": "game_mlb_2026_20260330_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:35p", + "game_datetime_utc": "2026-03-30T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -55821,8 +52720,7 @@ "canonical_id": "game_mlb_2026_20260330_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -55839,8 +52737,7 @@ "canonical_id": "game_mlb_2026_20260330_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -55857,8 +52754,7 @@ "canonical_id": "game_mlb_2026_20260330_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -55875,8 +52771,7 @@ "canonical_id": "game_nba_2025_20260330_phi_mia", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-30T23:00:00Z", "home_team": "Miami Heat", "away_team": "Philadelphia 76ers", "home_team_abbrev": "MIA", @@ -55893,8 +52788,7 @@ "canonical_id": "game_nhl_2025_20260330_pit_nyi", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-30T23:00:00Z", "home_team": "New York Islanders", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NYI", @@ -55911,8 +52805,7 @@ "canonical_id": "game_mlb_2026_20260330_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:07p", + "game_datetime_utc": "2026-03-30T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -55929,8 +52822,7 @@ "canonical_id": "game_mlb_2026_20260330_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:15p", + "game_datetime_utc": "2026-03-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -55947,8 +52839,7 @@ "canonical_id": "game_nba_2025_20260330_bos_atl", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7:30p", + "game_datetime_utc": "2026-03-30T23:30:00Z", "home_team": "Atlanta Hawks", "away_team": "Boston Celtics", "home_team_abbrev": "ATL", @@ -55965,8 +52856,7 @@ "canonical_id": "game_mlb_2026_20260330_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -55983,8 +52873,7 @@ "canonical_id": "game_mlb_2026_20260330_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-30T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -56001,8 +52890,7 @@ "canonical_id": "game_mlb_2026_20260330_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:45p", + "game_datetime_utc": "2026-03-30T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56019,8 +52907,7 @@ "canonical_id": "game_nba_2025_20260330_chi_sas", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Chicago Bulls", "home_team_abbrev": "SAS", @@ -56037,8 +52924,7 @@ "canonical_id": "game_nba_2025_20260330_phx_mem", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Phoenix Suns", "home_team_abbrev": "MEM", @@ -56055,8 +52941,7 @@ "canonical_id": "game_mlb_2026_20260331_bos_hou", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T00:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -56073,8 +52958,7 @@ "canonical_id": "game_nba_2025_20260330_min_dal", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DAL", @@ -56091,8 +52975,7 @@ "canonical_id": "game_nhl_2025_20260330_cgy_col", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "6:30p", + "game_datetime_utc": "2026-03-31T00:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Calgary Flames", "home_team_abbrev": "COL", @@ -56109,8 +52992,7 @@ "canonical_id": "game_nba_2025_20260330_cle_uta", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "UTA", @@ -56127,8 +53009,7 @@ "canonical_id": "game_nba_2025_20260330_det_okc", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "8:30p", + "game_datetime_utc": "2026-03-31T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Detroit Pistons", "home_team_abbrev": "OKC", @@ -56145,8 +53026,7 @@ "canonical_id": "game_mlb_2026_20260331_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -56163,8 +53043,7 @@ "canonical_id": "game_mlb_2026_20260331_nyy_sea", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -56181,8 +53060,7 @@ "canonical_id": "game_nba_2025_20260330_was_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Los Angeles Lakers", "away_team": "Washington Wizards", "home_team_abbrev": "LAL", @@ -56199,8 +53077,7 @@ "canonical_id": "game_nhl_2025_20260330_van_vgk", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Vancouver Canucks", "home_team_abbrev": "VGK", @@ -56217,8 +53094,7 @@ "canonical_id": "game_nhl_2025_20260330_tor_ana", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "ANA", @@ -56235,8 +53111,7 @@ "canonical_id": "game_nhl_2025_20260330_stl_sj", "sport": "NHL", "season": "2026", - "date": "2026-03-30", - "time": "7p", + "game_datetime_utc": "2026-03-31T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "St. Louis Blues", "home_team_abbrev": "SJ", @@ -56253,8 +53128,7 @@ "canonical_id": "game_mlb_2026_20260331_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -56271,8 +53145,7 @@ "canonical_id": "game_mlb_2026_20260331_det_ari", "sport": "MLB", "season": "2026", - "date": "2026-03-30", - "time": "7:10p", + "game_datetime_utc": "2026-03-31T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -56289,8 +53162,7 @@ "canonical_id": "game_mlb_2026_20260331_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:35p", + "game_datetime_utc": "2026-03-31T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -56307,8 +53179,7 @@ "canonical_id": "game_mlb_2026_20260331_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -56325,8 +53196,7 @@ "canonical_id": "game_mlb_2026_20260331_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -56343,8 +53213,7 @@ "canonical_id": "game_mlb_2026_20260331_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -56361,8 +53230,7 @@ "canonical_id": "game_nba_2025_20260331_phx_orl", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Phoenix Suns", "home_team_abbrev": "ORL", @@ -56379,8 +53247,7 @@ "canonical_id": "game_nhl_2025_20260331_nyi_buf", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "New York Islanders", "home_team_abbrev": "BUF", @@ -56397,8 +53264,7 @@ "canonical_id": "game_nhl_2025_20260331_det_pit", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Detroit Red Wings", "home_team_abbrev": "PIT", @@ -56415,8 +53281,7 @@ "canonical_id": "game_nhl_2025_20260331_mtl_tb", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Montreal Canadiens", "home_team_abbrev": "TB", @@ -56433,8 +53298,7 @@ "canonical_id": "game_nhl_2025_20260331_njd_nyr", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "New York Rangers", "away_team": "New Jersey Devils", "home_team_abbrev": "NYR", @@ -56451,8 +53315,7 @@ "canonical_id": "game_nhl_2025_20260331_dal_bos", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Boston Bruins", "away_team": "Dallas Stars", "home_team_abbrev": "BOS", @@ -56469,8 +53332,7 @@ "canonical_id": "game_nhl_2025_20260331_ott_fla", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Ottawa Senators", "home_team_abbrev": "FLA", @@ -56487,8 +53349,7 @@ "canonical_id": "game_nhl_2025_20260331_phi_was", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-03-31T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WAS", @@ -56505,8 +53366,7 @@ "canonical_id": "game_mlb_2026_20260331_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:07p", + "game_datetime_utc": "2026-03-31T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -56523,8 +53383,7 @@ "canonical_id": "game_mlb_2026_20260331_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:15p", + "game_datetime_utc": "2026-03-31T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -56541,8 +53400,7 @@ "canonical_id": "game_nba_2025_20260331_cho_brk", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Charlotte Hornets", "home_team_abbrev": "BKN", @@ -56559,8 +53417,7 @@ "canonical_id": "game_nhl_2025_20260331_car_cbj", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-03-31T23:30:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CBJ", @@ -56577,8 +53434,7 @@ "canonical_id": "game_mlb_2026_20260331_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -56595,8 +53451,7 @@ "canonical_id": "game_mlb_2026_20260331_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-03-31T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -56613,8 +53468,7 @@ "canonical_id": "game_mlb_2026_20260331_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:45p", + "game_datetime_utc": "2026-03-31T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56631,8 +53485,7 @@ "canonical_id": "game_nba_2025_20260331_tor_det", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "8p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Detroit Pistons", "away_team": "Toronto Raptors", "home_team_abbrev": "DET", @@ -56649,8 +53502,7 @@ "canonical_id": "game_nba_2025_20260331_dal_mil", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Dallas Mavericks", "home_team_abbrev": "MIL", @@ -56667,8 +53519,7 @@ "canonical_id": "game_nba_2025_20260331_nyk_hou", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T00:00:00Z", "home_team": "Houston Rockets", "away_team": "New York Knicks", "home_team_abbrev": "HOU", @@ -56685,8 +53536,7 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:10p", + "game_datetime_utc": "2026-04-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -56703,8 +53553,7 @@ "canonical_id": "game_nhl_2025_20260331_wpg_chi", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Winnipeg Jets", "home_team_abbrev": "CHI", @@ -56721,8 +53570,7 @@ "canonical_id": "game_nhl_2025_20260331_sea_edm", "sport": "NHL", "season": "2026", - "date": "2026-03-31", - "time": "7p", + "game_datetime_utc": "2026-04-01T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Seattle Kraken", "home_team_abbrev": "EDM", @@ -56739,8 +53587,7 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -56757,8 +53604,7 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -56775,8 +53621,7 @@ "canonical_id": "game_mlb_2026_20260401_sf_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -56793,8 +53638,7 @@ "canonical_id": "game_mlb_2026_20260401_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-03-31", - "time": "7:10p", + "game_datetime_utc": "2026-04-01T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -56811,8 +53655,7 @@ "canonical_id": "game_nba_2025_20260331_cle_lal", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "LAL", @@ -56829,8 +53672,7 @@ "canonical_id": "game_nba_2025_20260331_por_lac", "sport": "NBA", "season": "2026", - "date": "2026-03-31", - "time": "8p", + "game_datetime_utc": "2026-04-01T03:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Portland Blazers", "home_team_abbrev": "LAC", @@ -56847,8 +53689,7 @@ "canonical_id": "game_mlb_2026_20260401_oak_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:15p", + "game_datetime_utc": "2026-04-01T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Oakland Athletics", "home_team_abbrev": "ATL", @@ -56865,8 +53706,7 @@ "canonical_id": "game_mlb_2026_20260401_tex_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:35p", + "game_datetime_utc": "2026-04-01T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Texas Rangers", "home_team_abbrev": "BAL", @@ -56883,8 +53723,7 @@ "canonical_id": "game_mlb_2026_20260401_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -56901,8 +53740,7 @@ "canonical_id": "game_mlb_2026_20260401_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:05p", + "game_datetime_utc": "2026-04-01T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -56919,8 +53757,7 @@ "canonical_id": "game_mlb_2026_20260401_col_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:07p", + "game_datetime_utc": "2026-04-01T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Colorado Rockies", "home_team_abbrev": "TOR", @@ -56937,8 +53774,7 @@ "canonical_id": "game_mlb_2026_20260401_chw_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIA", @@ -56955,8 +53791,7 @@ "canonical_id": "game_mlb_2026_20260401_nym_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:15p", + "game_datetime_utc": "2026-04-01T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "New York Mets", "home_team_abbrev": "STL", @@ -56973,8 +53808,7 @@ "canonical_id": "game_mlb_2026_20260401_tbr_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIL", @@ -56991,8 +53825,7 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T18:10:00Z", "home_team": "Houston Astros", "away_team": "Boston Red Sox", "home_team_abbrev": "HOU", @@ -57009,8 +53842,7 @@ "canonical_id": "game_mlb_2026_20260401_laa_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:20p", + "game_datetime_utc": "2026-04-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHC", @@ -57027,8 +53859,7 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "12:40p", + "game_datetime_utc": "2026-04-01T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Detroit Tigers", "home_team_abbrev": "ARI", @@ -57045,8 +53876,7 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "New York Yankees", "home_team_abbrev": "SEA", @@ -57063,8 +53893,7 @@ "canonical_id": "game_mlb_2026_20260401_sf_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "1:10p", + "game_datetime_utc": "2026-04-01T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -57081,8 +53910,7 @@ "canonical_id": "game_nba_2025_20260401_phi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-01T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Philadelphia 76ers", "home_team_abbrev": "WAS", @@ -57099,8 +53927,7 @@ "canonical_id": "game_nba_2025_20260401_atl_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T23:30:00Z", "home_team": "Orlando Magic", "away_team": "Atlanta Hawks", "home_team_abbrev": "ORL", @@ -57117,8 +53944,7 @@ "canonical_id": "game_nba_2025_20260401_bos_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7:30p", + "game_datetime_utc": "2026-04-01T23:30:00Z", "home_team": "Miami Heat", "away_team": "Boston Celtics", "home_team_abbrev": "MIA", @@ -57135,8 +53961,7 @@ "canonical_id": "game_mlb_2026_20260401_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "6:40p", + "game_datetime_utc": "2026-04-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -57153,8 +53978,7 @@ "canonical_id": "game_nba_2025_20260401_ind_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Indiana Pacers", "home_team_abbrev": "CHI", @@ -57171,8 +53995,7 @@ "canonical_id": "game_nba_2025_20260401_dal_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Dallas Mavericks", "home_team_abbrev": "MEM", @@ -57189,8 +54012,7 @@ "canonical_id": "game_nba_2025_20260401_mil_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "HOU", @@ -57207,8 +54029,7 @@ "canonical_id": "game_nba_2025_20260401_sac_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "8p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Toronto Raptors", "away_team": "Sacramento Kings", "home_team_abbrev": "TOR", @@ -57225,8 +54046,7 @@ "canonical_id": "game_nba_2025_20260401_nyk_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "New York Knicks", "home_team_abbrev": "MEM", @@ -57243,8 +54063,7 @@ "canonical_id": "game_mlb_2026_20260402_cle_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-01", - "time": "5:20p", + "game_datetime_utc": "2026-04-02T00:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAD", @@ -57261,8 +54080,7 @@ "canonical_id": "game_nhl_2025_20260401_van_col", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "6:30p", + "game_datetime_utc": "2026-04-02T00:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Vancouver Canucks", "home_team_abbrev": "COL", @@ -57279,8 +54097,7 @@ "canonical_id": "game_nba_2025_20260401_den_uta", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T01:00:00Z", "home_team": "Utah Jazz", "away_team": "Denver Nuggets", "home_team_abbrev": "UTA", @@ -57297,8 +54114,7 @@ "canonical_id": "game_nhl_2025_20260401_stl_la", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "6p", + "game_datetime_utc": "2026-04-02T01:00:00Z", "home_team": "Los Angeles Kings", "away_team": "St. Louis Blues", "home_team_abbrev": "LA", @@ -57315,8 +54131,7 @@ "canonical_id": "game_nba_2025_20260401_sas_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "San Antonio Spurs", "home_team_abbrev": "GSW", @@ -57333,8 +54148,7 @@ "canonical_id": "game_nhl_2025_20260401_ana_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-01", - "time": "7p", + "game_datetime_utc": "2026-04-02T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Anaheim Ducks", "home_team_abbrev": "SJ", @@ -57351,8 +54165,7 @@ "canonical_id": "game_mlb_2026_20260402_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "1:10p", + "game_datetime_utc": "2026-04-02T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -57369,8 +54182,7 @@ "canonical_id": "game_mlb_2026_20260402_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "3:10p", + "game_datetime_utc": "2026-04-02T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -57387,8 +54199,7 @@ "canonical_id": "game_nba_2025_20260402_min_det", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Detroit Pistons", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "DET", @@ -57405,8 +54216,7 @@ "canonical_id": "game_nba_2025_20260402_phx_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Phoenix Suns", "home_team_abbrev": "CHA", @@ -57423,8 +54233,7 @@ "canonical_id": "game_nhl_2025_20260402_mtl_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "New York Rangers", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYR", @@ -57441,8 +54250,7 @@ "canonical_id": "game_nhl_2025_20260402_pit_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "TB", @@ -57459,8 +54267,7 @@ "canonical_id": "game_nhl_2025_20260402_bos_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Boston Bruins", "home_team_abbrev": "FLA", @@ -57477,8 +54284,7 @@ "canonical_id": "game_nhl_2025_20260402_det_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Detroit Red Wings", "home_team_abbrev": "PHI", @@ -57495,8 +54301,7 @@ "canonical_id": "game_nhl_2025_20260402_buf_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Buffalo Sabres", "home_team_abbrev": "OTT", @@ -57513,8 +54318,7 @@ "canonical_id": "game_nhl_2025_20260402_cbj_car", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-02T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "CAR", @@ -57531,8 +54335,7 @@ "canonical_id": "game_nhl_2025_20260402_was_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-02T23:30:00Z", "home_team": "New Jersey Devils", "away_team": "Washington Capitals", "home_team_abbrev": "NJ", @@ -57549,8 +54352,7 @@ "canonical_id": "game_nhl_2025_20260402_van_min", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Vancouver Canucks", "home_team_abbrev": "MIN", @@ -57567,8 +54369,7 @@ "canonical_id": "game_nhl_2025_20260402_wpg_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Winnipeg Jets", "home_team_abbrev": "DAL", @@ -57585,8 +54386,7 @@ "canonical_id": "game_nhl_2025_20260402_chi_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Chicago Blackhawks", "home_team_abbrev": "EDM", @@ -57603,8 +54403,7 @@ "canonical_id": "game_nba_2025_20260402_lal_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "8:30p", + "game_datetime_utc": "2026-04-03T01:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Los Angeles Lakers", "home_team_abbrev": "OKC", @@ -57621,8 +54420,7 @@ "canonical_id": "game_mlb_2026_20260403_atl_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "6:40p", + "game_datetime_utc": "2026-04-03T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -57639,8 +54437,7 @@ "canonical_id": "game_mlb_2026_20260403_nym_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-02", - "time": "6:45p", + "game_datetime_utc": "2026-04-03T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -57657,8 +54454,7 @@ "canonical_id": "game_nba_2025_20260402_cle_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "GSW", @@ -57675,8 +54471,7 @@ "canonical_id": "game_nba_2025_20260402_nop_por", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Portland Blazers", "away_team": "New Orleans Pelicans", "home_team_abbrev": "POR", @@ -57693,8 +54488,7 @@ "canonical_id": "game_nhl_2025_20260402_ari_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Utah Club", "home_team_abbrev": "SEA", @@ -57711,8 +54505,7 @@ "canonical_id": "game_nhl_2025_20260402_tor_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "SJ", @@ -57729,8 +54522,7 @@ "canonical_id": "game_nhl_2025_20260402_cgy_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7p", + "game_datetime_utc": "2026-04-03T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Calgary Flames", "home_team_abbrev": "VGK", @@ -57747,8 +54539,7 @@ "canonical_id": "game_nba_2025_20260402_sas_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "San Antonio Spurs", "home_team_abbrev": "LAC", @@ -57765,8 +54556,7 @@ "canonical_id": "game_nhl_2025_20260402_nsh_la", "sport": "NHL", "season": "2026", - "date": "2026-04-02", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Nashville Predators", "home_team_abbrev": "LA", @@ -57783,8 +54573,7 @@ "canonical_id": "game_mlb_2026_20260403_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:05p", + "game_datetime_utc": "2026-04-03T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -57801,8 +54590,7 @@ "canonical_id": "game_mlb_2026_20260403_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:10p", + "game_datetime_utc": "2026-04-03T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -57819,8 +54607,7 @@ "canonical_id": "game_mlb_2026_20260403_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "1:35p", + "game_datetime_utc": "2026-04-03T17:35:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -57837,8 +54624,7 @@ "canonical_id": "game_mlb_2026_20260403_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "2:10p", + "game_datetime_utc": "2026-04-03T18:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -57855,8 +54641,7 @@ "canonical_id": "game_mlb_2026_20260403_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "3:05p", + "game_datetime_utc": "2026-04-03T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -57873,8 +54658,7 @@ "canonical_id": "game_mlb_2026_20260403_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "4:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -57891,8 +54675,7 @@ "canonical_id": "game_mlb_2026_20260403_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "3:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -57909,8 +54692,7 @@ "canonical_id": "game_mlb_2026_20260403_phi_col", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "2:10p", + "game_datetime_utc": "2026-04-03T20:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -57927,8 +54709,7 @@ "canonical_id": "game_mlb_2026_20260403_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "4:12p", + "game_datetime_utc": "2026-04-03T20:12:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -57945,8 +54726,7 @@ "canonical_id": "game_nba_2025_20260403_min_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "4p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "PHI", @@ -57963,8 +54743,7 @@ "canonical_id": "game_nba_2025_20260403_ind_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Indiana Pacers", "home_team_abbrev": "CHA", @@ -57981,8 +54760,7 @@ "canonical_id": "game_nhl_2025_20260403_phi_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-03T23:00:00Z", "home_team": "New York Islanders", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NYI", @@ -57999,8 +54777,7 @@ "canonical_id": "game_nba_2025_20260403_chi_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T23:30:00Z", "home_team": "New York Knicks", "away_team": "Chicago Bulls", "home_team_abbrev": "NYK", @@ -58017,8 +54794,7 @@ "canonical_id": "game_nba_2025_20260403_atl_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-03T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Atlanta Hawks", "home_team_abbrev": "BKN", @@ -58035,8 +54811,7 @@ "canonical_id": "game_mlb_2026_20260403_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-03T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -58053,8 +54828,7 @@ "canonical_id": "game_nba_2025_20260403_bos_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Boston Celtics", "home_team_abbrev": "MIL", @@ -58071,8 +54845,7 @@ "canonical_id": "game_nba_2025_20260403_uta_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Utah Jazz", "home_team_abbrev": "HOU", @@ -58089,8 +54862,7 @@ "canonical_id": "game_nba_2025_20260403_tor_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Toronto Raptors", "home_team_abbrev": "MEM", @@ -58107,8 +54879,7 @@ "canonical_id": "game_nwsl_2026_20260404_sdw_bos", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "8p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "BOS", @@ -58125,8 +54896,7 @@ "canonical_id": "game_nwsl_2026_20260404_ang_orl", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "8p", + "game_datetime_utc": "2026-04-04T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "ORL", @@ -58143,8 +54913,7 @@ "canonical_id": "game_nba_2025_20260403_orl_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Orlando Magic", "home_team_abbrev": "DAL", @@ -58161,8 +54930,7 @@ "canonical_id": "game_nwsl_2026_20260404_rgn_hou", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T00:30:00Z", "home_team": "Houston Houston Dash", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "HOU", @@ -58179,8 +54947,7 @@ "canonical_id": "game_nwsl_2026_20260404_chi_uta", "sport": "NWSL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T01:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "UTA", @@ -58197,8 +54964,7 @@ "canonical_id": "game_mlb_2026_20260404_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:38p", + "game_datetime_utc": "2026-04-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -58215,8 +54981,7 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-04T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -58233,8 +54998,7 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "6:40p", + "game_datetime_utc": "2026-04-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -58251,8 +55015,7 @@ "canonical_id": "game_nba_2025_20260403_nop_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "New Orleans Pelicans", "home_team_abbrev": "SAC", @@ -58269,8 +55032,7 @@ "canonical_id": "game_nhl_2025_20260403_stl_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-03", - "time": "7p", + "game_datetime_utc": "2026-04-04T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "St. Louis Blues", "home_team_abbrev": "ANA", @@ -58287,8 +55049,7 @@ "canonical_id": "game_mlb_2026_20260404_nym_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-03", - "time": "7:15p", + "game_datetime_utc": "2026-04-04T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -58305,8 +55066,7 @@ "canonical_id": "game_nhl_2025_20260404_det_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "12:30p", + "game_datetime_utc": "2026-04-04T16:30:00Z", "home_team": "New York Rangers", "away_team": "Detroit Red Wings", "home_team_abbrev": "NYR", @@ -58323,8 +55083,7 @@ "canonical_id": "game_mls_2026_20260404_col_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "TOR", @@ -58341,8 +55100,7 @@ "canonical_id": "game_nhl_2025_20260404_min_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T17:00:00Z", "home_team": "Ottawa Senators", "away_team": "Minnesota Wild", "home_team_abbrev": "OTT", @@ -58359,8 +55117,7 @@ "canonical_id": "game_mlb_2026_20260404_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:10p", + "game_datetime_utc": "2026-04-04T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -58377,8 +55134,7 @@ "canonical_id": "game_mlb_2026_20260404_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:10p", + "game_datetime_utc": "2026-04-04T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -58395,8 +55151,7 @@ "canonical_id": "game_nba_2025_20260404_sas_den", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "1p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Denver Nuggets", "away_team": "San Antonio Spurs", "home_team_abbrev": "DEN", @@ -58413,8 +55168,7 @@ "canonical_id": "game_nba_2025_20260404_was_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "3p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Miami Heat", "away_team": "Washington Wizards", "home_team_abbrev": "MIA", @@ -58431,8 +55185,7 @@ "canonical_id": "game_nhl_2025_20260404_col_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "2p", + "game_datetime_utc": "2026-04-04T19:00:00Z", "home_team": "Dallas Stars", "away_team": "Colorado Avalanche", "home_team_abbrev": "DAL", @@ -58449,8 +55202,7 @@ "canonical_id": "game_nwsl_2026_20260404_njy_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "3p", + "game_datetime_utc": "2026-04-04T20:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "KCC", @@ -58467,8 +55219,7 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "1:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -58485,8 +55236,7 @@ "canonical_id": "game_mlb_2026_20260404_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -58503,8 +55253,7 @@ "canonical_id": "game_mlb_2026_20260404_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:05p", + "game_datetime_utc": "2026-04-04T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -58521,8 +55270,7 @@ "canonical_id": "game_mlb_2026_20260404_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "3:10p", + "game_datetime_utc": "2026-04-04T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -58539,8 +55287,7 @@ "canonical_id": "game_mlb_2026_20260404_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:10p", + "game_datetime_utc": "2026-04-04T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -58557,8 +55304,7 @@ "canonical_id": "game_mls_2026_20260404_skc_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "2:30p", + "game_datetime_utc": "2026-04-04T20:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SLC", @@ -58575,8 +55321,7 @@ "canonical_id": "game_mls_2026_20260404_mtl_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "4:30p", + "game_datetime_utc": "2026-04-04T20:30:00Z", "home_team": "New England New England Revolution", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NE", @@ -58593,8 +55338,7 @@ "canonical_id": "game_nhl_2025_20260404_bos_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "5p", + "game_datetime_utc": "2026-04-04T21:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Boston Bruins", "home_team_abbrev": "TB", @@ -58611,8 +55355,7 @@ "canonical_id": "game_nhl_2025_20260404_fla_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "5p", + "game_datetime_utc": "2026-04-04T21:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Florida Panthers", "home_team_abbrev": "PIT", @@ -58629,8 +55372,7 @@ "canonical_id": "game_nwsl_2026_20260404_por_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "6:30p", + "game_datetime_utc": "2026-04-04T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Portland Portland Thorns", "home_team_abbrev": "NCC", @@ -58647,8 +55389,7 @@ "canonical_id": "game_nba_2025_20260404_det_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Detroit Pistons", "home_team_abbrev": "PHI", @@ -58665,8 +55406,7 @@ "canonical_id": "game_nhl_2025_20260404_buf_was", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Washington Capitals", "away_team": "Buffalo Sabres", "home_team_abbrev": "WAS", @@ -58683,8 +55423,7 @@ "canonical_id": "game_nhl_2025_20260404_ari_van", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Utah Club", "home_team_abbrev": "VAN", @@ -58701,8 +55440,7 @@ "canonical_id": "game_nhl_2025_20260404_tor_la", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "4p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "LA", @@ -58719,8 +55457,7 @@ "canonical_id": "game_nhl_2025_20260404_mtl_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Montreal Canadiens", "home_team_abbrev": "NJ", @@ -58737,8 +55474,7 @@ "canonical_id": "game_nhl_2025_20260404_nyi_car", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "New York Islanders", "home_team_abbrev": "CAR", @@ -58755,8 +55491,7 @@ "canonical_id": "game_nhl_2025_20260404_wpg_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-04T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Winnipeg Jets", "home_team_abbrev": "CBJ", @@ -58773,8 +55508,7 @@ "canonical_id": "game_mlb_2026_20260404_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:05p", + "game_datetime_utc": "2026-04-04T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -58791,8 +55525,7 @@ "canonical_id": "game_mlb_2026_20260404_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "7:05p", + "game_datetime_utc": "2026-04-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -58809,8 +55542,7 @@ "canonical_id": "game_mlb_2026_20260404_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:10p", + "game_datetime_utc": "2026-04-04T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -58827,8 +55559,7 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "4:15p", + "game_datetime_utc": "2026-04-04T23:15:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -58845,8 +55576,7 @@ "canonical_id": "game_mlb_2026_20260404_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "7:15p", + "game_datetime_utc": "2026-04-04T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -58863,8 +55593,7 @@ "canonical_id": "game_mls_2026_20260404_dal_dc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Dallas FC Dallas", "home_team_abbrev": "DC", @@ -58881,8 +55610,7 @@ "canonical_id": "game_mls_2026_20260404_aus_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Austin Austin FC", "home_team_abbrev": "MIA", @@ -58899,8 +55627,7 @@ "canonical_id": "game_mls_2026_20260404_clb_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "ATL", @@ -58917,8 +55644,7 @@ "canonical_id": "game_mls_2026_20260404_cin_ny", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "RB", @@ -58935,8 +55661,7 @@ "canonical_id": "game_mls_2026_20260404_stl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "New York New York City FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "NYC", @@ -58953,8 +55678,7 @@ "canonical_id": "game_mls_2026_20260404_phi_clt", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-04T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CLT", @@ -58971,8 +55695,7 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:10p", + "game_datetime_utc": "2026-04-05T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -58989,8 +55712,7 @@ "canonical_id": "game_mls_2026_20260405_nsh_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CHI", @@ -59007,8 +55729,7 @@ "canonical_id": "game_mls_2026_20260405_sea_hou", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "HOU", @@ -59025,8 +55746,7 @@ "canonical_id": "game_nwsl_2026_20260405_den_sea", "sport": "NWSL", "season": "2026", - "date": "2026-04-04", - "time": "5:45p", + "game_datetime_utc": "2026-04-05T00:45:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "SEA", @@ -59043,8 +55763,7 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:05p", + "game_datetime_utc": "2026-04-05T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -59061,8 +55780,7 @@ "canonical_id": "game_mls_2026_20260405_orl_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "6:30p", + "game_datetime_utc": "2026-04-05T01:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "LAFC", @@ -59079,8 +55797,7 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-04", - "time": "6:38p", + "game_datetime_utc": "2026-04-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -59097,8 +55814,7 @@ "canonical_id": "game_nhl_2025_20260404_cgy_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Calgary Flames", "home_team_abbrev": "ANA", @@ -59115,8 +55831,7 @@ "canonical_id": "game_nhl_2025_20260404_chi_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SEA", @@ -59133,8 +55848,7 @@ "canonical_id": "game_nhl_2025_20260404_vgk_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "8p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vegas Golden Knights", "home_team_abbrev": "EDM", @@ -59151,8 +55865,7 @@ "canonical_id": "game_nhl_2025_20260404_nsh_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-04", - "time": "7p", + "game_datetime_utc": "2026-04-05T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Nashville Predators", "home_team_abbrev": "SJ", @@ -59169,8 +55882,7 @@ "canonical_id": "game_mls_2026_20260405_min_lag", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "LAG", @@ -59187,8 +55899,7 @@ "canonical_id": "game_mls_2026_20260405_sd_sj", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SJ", @@ -59205,8 +55916,7 @@ "canonical_id": "game_mls_2026_20260405_por_van", "sport": "MLS", "season": "2026", - "date": "2026-04-04", - "time": "7:30p", + "game_datetime_utc": "2026-04-05T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Portland Portland Timbers", "home_team_abbrev": "VAN", @@ -59223,8 +55933,7 @@ "canonical_id": "game_nhl_2025_20260405_min_det", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "1p", + "game_datetime_utc": "2026-04-05T17:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Minnesota Wild", "home_team_abbrev": "DET", @@ -59241,8 +55950,7 @@ "canonical_id": "game_mlb_2026_20260405_sd_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "San Diego Padres", "home_team_abbrev": "BOS", @@ -59259,8 +55967,7 @@ "canonical_id": "game_mlb_2026_20260405_mia_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "New York Yankees", "away_team": "Miami Marlins", "home_team_abbrev": "NYY", @@ -59277,8 +55984,7 @@ "canonical_id": "game_mlb_2026_20260405_bal_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Baltimore Orioles", "home_team_abbrev": "PIT", @@ -59295,8 +56001,7 @@ "canonical_id": "game_mlb_2026_20260405_lad_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "WSN", @@ -59313,8 +56018,7 @@ "canonical_id": "game_mlb_2026_20260405_chc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:40p", + "game_datetime_utc": "2026-04-05T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago Cubs", "home_team_abbrev": "CLE", @@ -59331,8 +56035,7 @@ "canonical_id": "game_mlb_2026_20260405_mil_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "KC", @@ -59349,8 +56052,7 @@ "canonical_id": "game_mlb_2026_20260405_tor_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHW", @@ -59367,8 +56069,7 @@ "canonical_id": "game_mlb_2026_20260405_tbr_min", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIN", @@ -59385,8 +56086,7 @@ "canonical_id": "game_mlb_2026_20260405_cin_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:35p", + "game_datetime_utc": "2026-04-05T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Cincinnati Reds", "home_team_abbrev": "TEX", @@ -59403,8 +56103,7 @@ "canonical_id": "game_nhl_2025_20260405_fla_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "3p", + "game_datetime_utc": "2026-04-05T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Florida Panthers", "home_team_abbrev": "PIT", @@ -59421,8 +56120,7 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Philadelphia Phillies", "home_team_abbrev": "COL", @@ -59439,8 +56137,7 @@ "canonical_id": "game_nba_2025_20260405_was_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Washington Wizards", "home_team_abbrev": "BKN", @@ -59457,8 +56154,7 @@ "canonical_id": "game_nba_2025_20260405_mem_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "2:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Milwaukee Bucks", "away_team": "Memphis Grizzlies", "home_team_abbrev": "MIL", @@ -59475,8 +56171,7 @@ "canonical_id": "game_nba_2025_20260405_tor_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Boston Celtics", "away_team": "Toronto Raptors", "home_team_abbrev": "BOS", @@ -59493,8 +56188,7 @@ "canonical_id": "game_nba_2025_20260405_phx_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "2:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Chicago Bulls", "away_team": "Phoenix Suns", "home_team_abbrev": "CHI", @@ -59511,8 +56205,7 @@ "canonical_id": "game_nhl_2025_20260405_bos_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "3:30p", + "game_datetime_utc": "2026-04-05T19:30:00Z", "home_team": "Philadelphia Flyers", "away_team": "Boston Bruins", "home_team_abbrev": "PHI", @@ -59529,8 +56222,7 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:05p", + "game_datetime_utc": "2026-04-05T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "New York Mets", "home_team_abbrev": "SF", @@ -59547,8 +56239,7 @@ "canonical_id": "game_mlb_2026_20260405_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:05p", + "game_datetime_utc": "2026-04-05T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -59565,8 +56256,7 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:07p", + "game_datetime_utc": "2026-04-05T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -59583,8 +56273,7 @@ "canonical_id": "game_mlb_2026_20260405_atl_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "1:10p", + "game_datetime_utc": "2026-04-05T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Atlanta Braves", "home_team_abbrev": "ARI", @@ -59601,8 +56290,7 @@ "canonical_id": "game_nhl_2025_20260405_car_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "5p", + "game_datetime_utc": "2026-04-05T21:00:00Z", "home_team": "Ottawa Senators", "away_team": "Carolina Hurricanes", "home_team_abbrev": "OTT", @@ -59619,8 +56307,7 @@ "canonical_id": "game_nwsl_2026_20260405_wsh_bay", "sport": "NWSL", "season": "2026", - "date": "2026-04-05", - "time": "2p", + "game_datetime_utc": "2026-04-05T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "BAY", @@ -59637,8 +56324,7 @@ "canonical_id": "game_nba_2025_20260405_ind_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "5p", + "game_datetime_utc": "2026-04-05T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Indiana Pacers", "home_team_abbrev": "CLE", @@ -59655,8 +56341,7 @@ "canonical_id": "game_nba_2025_20260405_orl_nop", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Orlando Magic", "home_team_abbrev": "NOP", @@ -59673,8 +56358,7 @@ "canonical_id": "game_nba_2025_20260405_cho_min", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Minnesota Timberwolves", "away_team": "Charlotte Hornets", "home_team_abbrev": "MIN", @@ -59691,8 +56375,7 @@ "canonical_id": "game_nba_2025_20260405_uta_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Utah Jazz", "home_team_abbrev": "OKC", @@ -59709,8 +56392,7 @@ "canonical_id": "game_nhl_2025_20260405_was_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "New York Rangers", "away_team": "Washington Capitals", "home_team_abbrev": "NYR", @@ -59727,8 +56409,7 @@ "canonical_id": "game_nhl_2025_20260405_njd_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-05T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "New Jersey Devils", "home_team_abbrev": "MTL", @@ -59745,8 +56426,7 @@ "canonical_id": "game_mlb_2026_20260405_stl_det", "sport": "MLB", "season": "2026", - "date": "2026-04-05", - "time": "7:20p", + "game_datetime_utc": "2026-04-05T23:20:00Z", "home_team": "Detroit Tigers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "DET", @@ -59763,8 +56443,7 @@ "canonical_id": "game_nba_2025_20260405_lal_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6:30p", + "game_datetime_utc": "2026-04-05T23:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Los Angeles Lakers", "home_team_abbrev": "DAL", @@ -59781,8 +56460,7 @@ "canonical_id": "game_nba_2025_20260405_lac_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "6p", + "game_datetime_utc": "2026-04-06T01:00:00Z", "home_team": "Sacramento Kings", "away_team": "Los Angeles Clippers", "home_team_abbrev": "SAC", @@ -59799,8 +56477,7 @@ "canonical_id": "game_nhl_2025_20260405_stl_col", "sport": "NHL", "season": "2026", - "date": "2026-04-05", - "time": "7:30p", + "game_datetime_utc": "2026-04-06T01:30:00Z", "home_team": "Colorado Avalanche", "away_team": "St. Louis Blues", "home_team_abbrev": "COL", @@ -59817,8 +56494,7 @@ "canonical_id": "game_nba_2025_20260405_hou_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-05", - "time": "7p", + "game_datetime_utc": "2026-04-06T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Houston Rockets", "home_team_abbrev": "GSW", @@ -59835,8 +56511,7 @@ "canonical_id": "game_mlb_2026_20260406_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "4:10p", + "game_datetime_utc": "2026-04-06T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -59853,8 +56528,7 @@ "canonical_id": "game_mlb_2026_20260406_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:10p", + "game_datetime_utc": "2026-04-06T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -59871,8 +56545,7 @@ "canonical_id": "game_mlb_2026_20260406_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -59889,8 +56562,7 @@ "canonical_id": "game_mlb_2026_20260406_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -59907,8 +56579,7 @@ "canonical_id": "game_mlb_2026_20260406_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-06T22:45:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -59925,8 +56596,7 @@ "canonical_id": "game_mlb_2026_20260406_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-06T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -59943,8 +56613,7 @@ "canonical_id": "game_nba_2025_20260406_det_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Detroit Pistons", "home_team_abbrev": "ORL", @@ -59961,8 +56630,7 @@ "canonical_id": "game_nba_2025_20260406_nyk_atl", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "New York Knicks", "home_team_abbrev": "ATL", @@ -59979,8 +56647,7 @@ "canonical_id": "game_nhl_2025_20260406_tb_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-06T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BUF", @@ -59997,8 +56664,7 @@ "canonical_id": "game_mlb_2026_20260406_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "7:07p", + "game_datetime_utc": "2026-04-06T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60015,8 +56681,7 @@ "canonical_id": "game_nhl_2025_20260406_sea_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "6:30p", + "game_datetime_utc": "2026-04-06T23:30:00Z", "home_team": "Winnipeg Jets", "away_team": "Seattle Kraken", "home_team_abbrev": "WPG", @@ -60033,8 +56698,7 @@ "canonical_id": "game_mlb_2026_20260406_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -60051,8 +56715,7 @@ "canonical_id": "game_mlb_2026_20260406_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-06T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60069,8 +56732,7 @@ "canonical_id": "game_nba_2025_20260406_phi_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Philadelphia 76ers", "home_team_abbrev": "SAS", @@ -60087,8 +56749,7 @@ "canonical_id": "game_nba_2025_20260406_cle_mem", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T00:00:00Z", "home_team": "Memphis Grizzlies", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "MEM", @@ -60105,8 +56766,7 @@ "canonical_id": "game_mlb_2026_20260407_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "7:05p", + "game_datetime_utc": "2026-04-07T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60123,8 +56783,7 @@ "canonical_id": "game_mlb_2026_20260407_hou_col", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -60141,8 +56800,7 @@ "canonical_id": "game_nba_2025_20260406_por_den", "sport": "NBA", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Portland Blazers", "home_team_abbrev": "DEN", @@ -60159,8 +56817,7 @@ "canonical_id": "game_mlb_2026_20260407_atl_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:38p", + "game_datetime_utc": "2026-04-07T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -60177,8 +56834,7 @@ "canonical_id": "game_mlb_2026_20260407_phi_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-06", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -60195,8 +56851,7 @@ "canonical_id": "game_nhl_2025_20260406_chi_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7p", + "game_datetime_utc": "2026-04-07T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Chicago Blackhawks", "home_team_abbrev": "SJ", @@ -60213,8 +56868,7 @@ "canonical_id": "game_nhl_2025_20260406_nsh_la", "sport": "NHL", "season": "2026", - "date": "2026-04-06", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Nashville Predators", "home_team_abbrev": "LA", @@ -60231,8 +56885,7 @@ "canonical_id": "game_mlb_2026_20260407_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:10p", + "game_datetime_utc": "2026-04-07T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -60249,8 +56902,7 @@ "canonical_id": "game_mlb_2026_20260407_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -60267,8 +56919,7 @@ "canonical_id": "game_mlb_2026_20260407_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -60285,8 +56936,7 @@ "canonical_id": "game_mlb_2026_20260407_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -60303,8 +56953,7 @@ "canonical_id": "game_mlb_2026_20260407_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -60321,8 +56970,7 @@ "canonical_id": "game_mlb_2026_20260407_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -60339,8 +56987,7 @@ "canonical_id": "game_nba_2025_20260407_chi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Chicago Bulls", "home_team_abbrev": "WAS", @@ -60357,8 +57004,7 @@ "canonical_id": "game_nhl_2025_20260407_cbj_det", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "DET", @@ -60375,8 +57021,7 @@ "canonical_id": "game_nhl_2025_20260407_tb_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "OTT", @@ -60393,8 +57038,7 @@ "canonical_id": "game_nhl_2025_20260407_phi_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Philadelphia Flyers", "home_team_abbrev": "NJ", @@ -60411,8 +57055,7 @@ "canonical_id": "game_nhl_2025_20260407_fla_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Florida Panthers", "home_team_abbrev": "MTL", @@ -60429,8 +57072,7 @@ "canonical_id": "game_nhl_2025_20260407_bos_car", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-07T23:00:00Z", "home_team": "Carolina Hurricanes", "away_team": "Boston Bruins", "home_team_abbrev": "CAR", @@ -60447,8 +57089,7 @@ "canonical_id": "game_mlb_2026_20260407_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:05p", + "game_datetime_utc": "2026-04-07T23:05:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -60465,8 +57106,7 @@ "canonical_id": "game_mlb_2026_20260407_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:07p", + "game_datetime_utc": "2026-04-07T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60483,8 +57123,7 @@ "canonical_id": "game_mlb_2026_20260407_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:10p", + "game_datetime_utc": "2026-04-07T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -60501,8 +57140,7 @@ "canonical_id": "game_nba_2025_20260407_cho_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Boston Celtics", "away_team": "Charlotte Hornets", "home_team_abbrev": "BOS", @@ -60519,8 +57157,7 @@ "canonical_id": "game_nba_2025_20260407_mil_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Milwaukee Bucks", "home_team_abbrev": "BKN", @@ -60537,8 +57174,7 @@ "canonical_id": "game_nba_2025_20260407_mia_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-07T23:30:00Z", "home_team": "Toronto Raptors", "away_team": "Miami Heat", "home_team_abbrev": "TOR", @@ -60555,8 +57191,7 @@ "canonical_id": "game_mlb_2026_20260407_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -60573,8 +57208,7 @@ "canonical_id": "game_mlb_2026_20260407_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60591,8 +57225,7 @@ "canonical_id": "game_nba_2025_20260407_uta_nop", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "New Orleans Pelicans", "away_team": "Utah Jazz", "home_team_abbrev": "NOP", @@ -60609,8 +57242,7 @@ "canonical_id": "game_nba_2025_20260407_min_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "8p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Indiana Pacers", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "IND", @@ -60627,8 +57259,7 @@ "canonical_id": "game_nhl_2025_20260407_col_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Colorado Avalanche", "home_team_abbrev": "STL", @@ -60645,8 +57276,7 @@ "canonical_id": "game_nhl_2025_20260407_sea_min", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Seattle Kraken", "home_team_abbrev": "MIN", @@ -60663,8 +57293,7 @@ "canonical_id": "game_nhl_2025_20260407_cgy_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T00:00:00Z", "home_team": "Dallas Stars", "away_team": "Calgary Flames", "home_team_abbrev": "DAL", @@ -60681,8 +57310,7 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "7:05p", + "game_datetime_utc": "2026-04-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60699,8 +57327,7 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -60717,8 +57344,7 @@ "canonical_id": "game_nhl_2025_20260407_edm_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T01:30:00Z", "home_team": "Utah Club", "away_team": "Edmonton Oilers", "home_team_abbrev": "ARI", @@ -60735,8 +57361,7 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:38p", + "game_datetime_utc": "2026-04-08T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -60753,8 +57378,7 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-07", - "time": "6:45p", + "game_datetime_utc": "2026-04-08T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -60771,8 +57395,7 @@ "canonical_id": "game_nba_2025_20260407_sac_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Sacramento Kings", "home_team_abbrev": "GSW", @@ -60789,8 +57412,7 @@ "canonical_id": "game_nhl_2025_20260407_nsh_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Nashville Predators", "home_team_abbrev": "ANA", @@ -60807,8 +57429,7 @@ "canonical_id": "game_nhl_2025_20260407_vgk_van", "sport": "NHL", "season": "2026", - "date": "2026-04-07", - "time": "7p", + "game_datetime_utc": "2026-04-08T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Vegas Golden Knights", "home_team_abbrev": "VAN", @@ -60825,8 +57446,7 @@ "canonical_id": "game_nba_2025_20260407_okc_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAL", @@ -60843,8 +57463,7 @@ "canonical_id": "game_nba_2025_20260407_dal_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T02:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Dallas Mavericks", "home_team_abbrev": "LAC", @@ -60861,8 +57480,7 @@ "canonical_id": "game_nba_2025_20260407_hou_phx", "sport": "NBA", "season": "2026", - "date": "2026-04-07", - "time": "11p", + "game_datetime_utc": "2026-04-08T03:00:00Z", "home_team": "Phoenix Suns", "away_team": "Houston Rockets", "home_team_abbrev": "PHX", @@ -60879,8 +57497,7 @@ "canonical_id": "game_mlb_2026_20260408_sd_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "12:35p", + "game_datetime_utc": "2026-04-08T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Diego Padres", "home_team_abbrev": "PIT", @@ -60897,8 +57514,7 @@ "canonical_id": "game_mlb_2026_20260408_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -60915,8 +57531,7 @@ "canonical_id": "game_mlb_2026_20260408_mil_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:35p", + "game_datetime_utc": "2026-04-08T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BOS", @@ -60933,8 +57548,7 @@ "canonical_id": "game_mlb_2026_20260408_bal_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "CHW", @@ -60951,8 +57565,7 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:35p", + "game_datetime_utc": "2026-04-08T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -60969,8 +57582,7 @@ "canonical_id": "game_mlb_2026_20260408_lad_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "3:07p", + "game_datetime_utc": "2026-04-08T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "TOR", @@ -60987,8 +57599,7 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:10p", + "game_datetime_utc": "2026-04-08T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Houston Astros", "home_team_abbrev": "COL", @@ -61005,8 +57616,7 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "12:45p", + "game_datetime_utc": "2026-04-08T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SF", @@ -61023,8 +57633,7 @@ "canonical_id": "game_mlb_2026_20260408_stl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "4:05p", + "game_datetime_utc": "2026-04-08T20:05:00Z", "home_team": "Washington Nationals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "WSN", @@ -61041,8 +57650,7 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "1:07p", + "game_datetime_utc": "2026-04-08T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Atlanta Braves", "home_team_abbrev": "LAA", @@ -61059,8 +57667,7 @@ "canonical_id": "game_mlb_2026_20260408_chc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago Cubs", "home_team_abbrev": "TB", @@ -61077,8 +57684,7 @@ "canonical_id": "game_mlb_2026_20260408_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -61095,8 +57701,7 @@ "canonical_id": "game_nba_2025_20260408_atl_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "6p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Atlanta Hawks", "home_team_abbrev": "CLE", @@ -61113,8 +57718,7 @@ "canonical_id": "game_nba_2025_20260408_min_orl", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "Orlando Magic", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "ORL", @@ -61131,8 +57735,7 @@ "canonical_id": "game_nhl_2025_20260408_buf_nyr", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-08T23:00:00Z", "home_team": "New York Rangers", "away_team": "Buffalo Sabres", "home_team_abbrev": "NYR", @@ -61149,8 +57752,7 @@ "canonical_id": "game_mlb_2026_20260408_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "7:05p", + "game_datetime_utc": "2026-04-08T23:05:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -61167,8 +57769,7 @@ "canonical_id": "game_mlb_2026_20260408_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "7:10p", + "game_datetime_utc": "2026-04-08T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -61185,8 +57786,7 @@ "canonical_id": "game_nba_2025_20260408_mil_det", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T23:30:00Z", "home_team": "Detroit Pistons", "away_team": "Milwaukee Bucks", "home_team_abbrev": "DET", @@ -61203,8 +57803,7 @@ "canonical_id": "game_nhl_2025_20260408_was_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7:30p", + "game_datetime_utc": "2026-04-08T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Washington Capitals", "home_team_abbrev": "TOR", @@ -61221,8 +57820,7 @@ "canonical_id": "game_mlb_2026_20260408_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-08", - "time": "6:40p", + "game_datetime_utc": "2026-04-08T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -61239,8 +57837,7 @@ "canonical_id": "game_nba_2025_20260408_por_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Portland Blazers", "home_team_abbrev": "SAS", @@ -61257,8 +57854,7 @@ "canonical_id": "game_nba_2025_20260408_mem_den", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "DEN", @@ -61275,8 +57871,7 @@ "canonical_id": "game_nba_2025_20260408_okc_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "Los Angeles Clippers", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "LAC", @@ -61293,8 +57888,7 @@ "canonical_id": "game_nba_2025_20260408_dal_phx", "sport": "NBA", "season": "2026", - "date": "2026-04-08", - "time": "10p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "Phoenix Suns", "away_team": "Dallas Mavericks", "home_team_abbrev": "PHX", @@ -61311,8 +57905,7 @@ "canonical_id": "game_nhl_2025_20260408_edm_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-08", - "time": "7p", + "game_datetime_utc": "2026-04-09T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Edmonton Oilers", "home_team_abbrev": "SJ", @@ -61329,8 +57922,7 @@ "canonical_id": "game_mlb_2026_20260409_cin_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "12:10p", + "game_datetime_utc": "2026-04-09T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIA", @@ -61347,8 +57939,7 @@ "canonical_id": "game_mlb_2026_20260409_oak_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "1:35p", + "game_datetime_utc": "2026-04-09T17:35:00Z", "home_team": "New York Yankees", "away_team": "Oakland Athletics", "home_team_abbrev": "NYY", @@ -61365,8 +57956,7 @@ "canonical_id": "game_mlb_2026_20260409_det_min", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "12:40p", + "game_datetime_utc": "2026-04-09T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -61383,8 +57973,7 @@ "canonical_id": "game_nhl_2025_20260409_tor_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "6:45p", + "game_datetime_utc": "2026-04-09T22:45:00Z", "home_team": "New York Islanders", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "NYI", @@ -61401,8 +57990,7 @@ "canonical_id": "game_nba_2025_20260409_mia_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Toronto Raptors", "away_team": "Miami Heat", "home_team_abbrev": "TOR", @@ -61419,8 +58007,7 @@ "canonical_id": "game_nba_2025_20260409_chi_was", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Chicago Bulls", "home_team_abbrev": "WAS", @@ -61437,8 +58024,7 @@ "canonical_id": "game_nhl_2025_20260409_fla_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Ottawa Senators", "away_team": "Florida Panthers", "home_team_abbrev": "OTT", @@ -61455,8 +58041,7 @@ "canonical_id": "game_nhl_2025_20260409_pit_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "NJ", @@ -61473,8 +58058,7 @@ "canonical_id": "game_nhl_2025_20260409_tb_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "MTL", @@ -61491,8 +58075,7 @@ "canonical_id": "game_nhl_2025_20260409_phi_det", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Detroit Red Wings", "away_team": "Philadelphia Flyers", "home_team_abbrev": "DET", @@ -61509,8 +58092,7 @@ "canonical_id": "game_nhl_2025_20260409_cbj_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-09T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "BUF", @@ -61527,8 +58109,7 @@ "canonical_id": "game_mlb_2026_20260409_ari_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "7:10p", + "game_datetime_utc": "2026-04-09T23:10:00Z", "home_team": "New York Mets", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "NYM", @@ -61545,8 +58126,7 @@ "canonical_id": "game_nba_2025_20260409_ind_brk", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-09T23:30:00Z", "home_team": "Brooklyn Nets", "away_team": "Indiana Pacers", "home_team_abbrev": "BKN", @@ -61563,8 +58143,7 @@ "canonical_id": "game_nba_2025_20260409_bos_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-09T23:30:00Z", "home_team": "New York Knicks", "away_team": "Boston Celtics", "home_team_abbrev": "NYK", @@ -61581,8 +58160,7 @@ "canonical_id": "game_mlb_2026_20260409_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "6:40p", + "game_datetime_utc": "2026-04-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -61599,8 +58177,7 @@ "canonical_id": "game_nba_2025_20260409_phi_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T00:00:00Z", "home_team": "Houston Rockets", "away_team": "Philadelphia 76ers", "home_team_abbrev": "HOU", @@ -61617,8 +58194,7 @@ "canonical_id": "game_nhl_2025_20260409_wpg_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Winnipeg Jets", "home_team_abbrev": "STL", @@ -61635,8 +58211,7 @@ "canonical_id": "game_nhl_2025_20260409_car_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Carolina Hurricanes", "home_team_abbrev": "CHI", @@ -61653,8 +58228,7 @@ "canonical_id": "game_nhl_2025_20260409_nsh_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Utah Club", "away_team": "Nashville Predators", "home_team_abbrev": "ARI", @@ -61671,8 +58245,7 @@ "canonical_id": "game_nhl_2025_20260409_cgy_col", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Calgary Flames", "home_team_abbrev": "COL", @@ -61689,8 +58262,7 @@ "canonical_id": "game_nhl_2025_20260409_min_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "8p", + "game_datetime_utc": "2026-04-10T01:00:00Z", "home_team": "Dallas Stars", "away_team": "Minnesota Wild", "home_team_abbrev": "DAL", @@ -61707,8 +58279,7 @@ "canonical_id": "game_mlb_2026_20260410_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-09", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -61725,8 +58296,7 @@ "canonical_id": "game_nba_2025_20260409_lal_gsw", "sport": "NBA", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Golden State Warriors", "away_team": "Los Angeles Lakers", "home_team_abbrev": "GSW", @@ -61743,8 +58313,7 @@ "canonical_id": "game_nhl_2025_20260409_vgk_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Seattle Kraken", "away_team": "Vegas Golden Knights", "home_team_abbrev": "SEA", @@ -61761,8 +58330,7 @@ "canonical_id": "game_nhl_2025_20260409_sj_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7p", + "game_datetime_utc": "2026-04-10T02:00:00Z", "home_team": "Anaheim Ducks", "away_team": "San Jose Sharks", "home_team_abbrev": "ANA", @@ -61779,8 +58347,7 @@ "canonical_id": "game_nhl_2025_20260409_van_la", "sport": "NHL", "season": "2026", - "date": "2026-04-09", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T02:30:00Z", "home_team": "Los Angeles Kings", "away_team": "Vancouver Canucks", "home_team_abbrev": "LA", @@ -61797,8 +58364,7 @@ "canonical_id": "game_mlb_2026_20260410_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "1:20p", + "game_datetime_utc": "2026-04-10T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -61815,8 +58381,7 @@ "canonical_id": "game_mlb_2026_20260410_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -61833,8 +58398,7 @@ "canonical_id": "game_mlb_2026_20260410_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -61851,8 +58415,7 @@ "canonical_id": "game_mlb_2026_20260410_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -61869,8 +58432,7 @@ "canonical_id": "game_nba_2025_20260410_cle_atl", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Atlanta Hawks", "away_team": "Cleveland Cavaliers", "home_team_abbrev": "ATL", @@ -61887,8 +58449,7 @@ "canonical_id": "game_nba_2025_20260410_det_cho", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Charlotte Hornets", "away_team": "Detroit Pistons", "home_team_abbrev": "CHA", @@ -61905,8 +58466,7 @@ "canonical_id": "game_nba_2025_20260410_mia_was", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-10T23:00:00Z", "home_team": "Washington Wizards", "away_team": "Miami Heat", "home_team_abbrev": "WAS", @@ -61923,8 +58483,7 @@ "canonical_id": "game_mlb_2026_20260410_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:05p", + "game_datetime_utc": "2026-04-10T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -61941,8 +58500,7 @@ "canonical_id": "game_mlb_2026_20260410_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:07p", + "game_datetime_utc": "2026-04-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -61959,8 +58517,7 @@ "canonical_id": "game_mlb_2026_20260410_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-10T23:10:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -61977,8 +58534,7 @@ "canonical_id": "game_mlb_2026_20260410_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-10T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -61995,8 +58551,7 @@ "canonical_id": "game_mlb_2026_20260410_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:15p", + "game_datetime_utc": "2026-04-10T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -62013,8 +58568,7 @@ "canonical_id": "game_nba_2025_20260410_nop_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "Boston Celtics", "away_team": "New Orleans Pelicans", "home_team_abbrev": "BOS", @@ -62031,8 +58585,7 @@ "canonical_id": "game_nba_2025_20260410_tor_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "New York Knicks", "away_team": "Toronto Raptors", "home_team_abbrev": "NYK", @@ -62049,8 +58602,7 @@ "canonical_id": "game_nba_2025_20260410_phi_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-10T23:30:00Z", "home_team": "Indiana Pacers", "away_team": "Philadelphia 76ers", "home_team_abbrev": "IND", @@ -62067,8 +58619,7 @@ "canonical_id": "game_mlb_2026_20260410_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -62085,8 +58636,7 @@ "canonical_id": "game_mlb_2026_20260410_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-10T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -62103,8 +58653,7 @@ "canonical_id": "game_nba_2025_20260410_orl_chi", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "Chicago Bulls", "away_team": "Orlando Magic", "home_team_abbrev": "CHI", @@ -62121,8 +58670,7 @@ "canonical_id": "game_nba_2025_20260410_brk_mil", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "Milwaukee Bucks", "away_team": "Brooklyn Nets", "home_team_abbrev": "MIL", @@ -62139,8 +58687,7 @@ "canonical_id": "game_nba_2025_20260410_dal_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T00:00:00Z", "home_team": "San Antonio Spurs", "away_team": "Dallas Mavericks", "home_team_abbrev": "SAS", @@ -62157,8 +58704,7 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -62175,8 +58721,7 @@ "canonical_id": "game_nba_2025_20260410_okc_den", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T01:00:00Z", "home_team": "Denver Nuggets", "away_team": "Oklahoma City Thunder", "home_team_abbrev": "DEN", @@ -62193,8 +58738,7 @@ "canonical_id": "game_nba_2025_20260410_min_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "8:30p", + "game_datetime_utc": "2026-04-11T01:30:00Z", "home_team": "Houston Rockets", "away_team": "Minnesota Timberwolves", "home_team_abbrev": "HOU", @@ -62211,8 +58755,7 @@ "canonical_id": "game_nba_2025_20260410_mem_uta", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T01:30:00Z", "home_team": "Utah Jazz", "away_team": "Memphis Grizzlies", "home_team_abbrev": "UTA", @@ -62229,8 +58772,7 @@ "canonical_id": "game_mlb_2026_20260411_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-11T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -62247,8 +58789,7 @@ "canonical_id": "game_mlb_2026_20260411_col_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "6:40p", + "game_datetime_utc": "2026-04-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -62265,8 +58806,7 @@ "canonical_id": "game_nba_2025_20260410_gsw_sac", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T02:00:00Z", "home_team": "Sacramento Kings", "away_team": "Golden State Warriors", "home_team_abbrev": "SAC", @@ -62283,8 +58823,7 @@ "canonical_id": "game_nba_2025_20260410_lac_por", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7p", + "game_datetime_utc": "2026-04-11T02:00:00Z", "home_team": "Portland Blazers", "away_team": "Los Angeles Clippers", "home_team_abbrev": "POR", @@ -62301,8 +58840,7 @@ "canonical_id": "game_mlb_2026_20260411_tex_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-10", - "time": "7:10p", + "game_datetime_utc": "2026-04-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -62319,8 +58857,7 @@ "canonical_id": "game_nba_2025_20260410_phx_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-10", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T02:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Phoenix Suns", "home_team_abbrev": "LAL", @@ -62337,8 +58874,7 @@ "canonical_id": "game_nhl_2025_20260411_tb_bos", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "12:30p", + "game_datetime_utc": "2026-04-11T16:30:00Z", "home_team": "Boston Bruins", "away_team": "Tampa Bay Lightning", "home_team_abbrev": "BOS", @@ -62355,8 +58891,7 @@ "canonical_id": "game_mls_2026_20260411_cin_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "TOR", @@ -62373,8 +58908,7 @@ "canonical_id": "game_nhl_2025_20260411_ott_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T17:00:00Z", "home_team": "New York Islanders", "away_team": "Ottawa Senators", "home_team_abbrev": "NYI", @@ -62391,8 +58925,7 @@ "canonical_id": "game_mlb_2026_20260411_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:05p", + "game_datetime_utc": "2026-04-11T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -62409,8 +58942,7 @@ "canonical_id": "game_mlb_2026_20260411_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:10p", + "game_datetime_utc": "2026-04-11T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -62427,8 +58959,7 @@ "canonical_id": "game_mlb_2026_20260411_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "1:20p", + "game_datetime_utc": "2026-04-11T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -62445,8 +58976,7 @@ "canonical_id": "game_mls_2026_20260411_lag_aus", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1:30p", + "game_datetime_utc": "2026-04-11T18:30:00Z", "home_team": "Austin Austin FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "AUS", @@ -62463,8 +58993,7 @@ "canonical_id": "game_nhl_2025_20260411_was_pit", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "3p", + "game_datetime_utc": "2026-04-11T19:00:00Z", "home_team": "Pittsburgh Penguins", "away_team": "Washington Capitals", "home_team_abbrev": "PIT", @@ -62481,8 +59010,7 @@ "canonical_id": "game_mlb_2026_20260411_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "3:07p", + "game_datetime_utc": "2026-04-11T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -62499,8 +59027,7 @@ "canonical_id": "game_nhl_2025_20260411_edm_la", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "1p", + "game_datetime_utc": "2026-04-11T20:00:00Z", "home_team": "Los Angeles Kings", "away_team": "Edmonton Oilers", "home_team_abbrev": "LA", @@ -62517,8 +59044,7 @@ "canonical_id": "game_mlb_2026_20260411_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "3:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -62535,8 +59061,7 @@ "canonical_id": "game_mlb_2026_20260411_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "4:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -62553,8 +59078,7 @@ "canonical_id": "game_mlb_2026_20260411_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "4:10p", + "game_datetime_utc": "2026-04-11T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -62571,8 +59095,7 @@ "canonical_id": "game_mls_2026_20260411_lafc_por", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "1:30p", + "game_datetime_utc": "2026-04-11T20:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "POR", @@ -62589,8 +59112,7 @@ "canonical_id": "game_nhl_2025_20260411_nyr_dal", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Dallas Stars", "away_team": "New York Rangers", "home_team_abbrev": "DAL", @@ -62607,8 +59129,7 @@ "canonical_id": "game_nhl_2025_20260411_car_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "3p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Utah Club", "away_team": "Carolina Hurricanes", "home_team_abbrev": "ARI", @@ -62625,8 +59146,7 @@ "canonical_id": "game_nhl_2025_20260411_min_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Nashville Predators", "away_team": "Minnesota Wild", "home_team_abbrev": "NSH", @@ -62643,8 +59163,7 @@ "canonical_id": "game_nhl_2025_20260411_njd_det", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "5p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Detroit Red Wings", "away_team": "New Jersey Devils", "home_team_abbrev": "DET", @@ -62661,8 +59180,7 @@ "canonical_id": "game_nhl_2025_20260411_stl_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T21:00:00Z", "home_team": "Chicago Blackhawks", "away_team": "St. Louis Blues", "home_team_abbrev": "CHI", @@ -62679,8 +59197,7 @@ "canonical_id": "game_mlb_2026_20260411_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-11T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -62697,8 +59214,7 @@ "canonical_id": "game_nhl_2025_20260411_cgy_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "4p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Seattle Kraken", "away_team": "Calgary Flames", "home_team_abbrev": "SEA", @@ -62715,8 +59231,7 @@ "canonical_id": "game_nhl_2025_20260411_cbj_mtl", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Montreal Canadiens", "away_team": "Columbus Blue Jackets", "home_team_abbrev": "MTL", @@ -62733,8 +59248,7 @@ "canonical_id": "game_nhl_2025_20260411_fla_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Florida Panthers", "home_team_abbrev": "TOR", @@ -62751,8 +59265,7 @@ "canonical_id": "game_nhl_2025_20260411_phi_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "6p", + "game_datetime_utc": "2026-04-11T23:00:00Z", "home_team": "Winnipeg Jets", "away_team": "Philadelphia Flyers", "home_team_abbrev": "WPG", @@ -62769,8 +59282,7 @@ "canonical_id": "game_mlb_2026_20260411_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-11T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -62787,8 +59299,7 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -62805,8 +59316,7 @@ "canonical_id": "game_mlb_2026_20260411_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -62823,8 +59333,7 @@ "canonical_id": "game_mlb_2026_20260411_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "7:15p", + "game_datetime_utc": "2026-04-11T23:15:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -62841,8 +59350,7 @@ "canonical_id": "game_mls_2026_20260411_dc_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Washington D.C. United", "home_team_abbrev": "NE", @@ -62859,8 +59367,7 @@ "canonical_id": "game_mls_2026_20260411_ny_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New York New York Red Bulls", "home_team_abbrev": "MIA", @@ -62877,8 +59384,7 @@ "canonical_id": "game_mls_2026_20260411_nsh_clt", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CLT", @@ -62895,8 +59401,7 @@ "canonical_id": "game_mls_2026_20260411_nyc_van", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "4:30p", + "game_datetime_utc": "2026-04-11T23:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "New York New York City FC", "home_team_abbrev": "VAN", @@ -62913,8 +59418,7 @@ "canonical_id": "game_nhl_2025_20260411_vgk_col", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "6p", + "game_datetime_utc": "2026-04-12T00:00:00Z", "home_team": "Colorado Avalanche", "away_team": "Vegas Golden Knights", "home_team_abbrev": "COL", @@ -62931,8 +59435,7 @@ "canonical_id": "game_mls_2026_20260412_atl_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CHI", @@ -62949,8 +59452,7 @@ "canonical_id": "game_mls_2026_20260412_stl_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "DAL", @@ -62967,8 +59469,7 @@ "canonical_id": "game_mls_2026_20260412_sj_skc", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SKC", @@ -62985,8 +59486,7 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "5:40p", + "game_datetime_utc": "2026-04-12T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -63003,8 +59503,7 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:10p", + "game_datetime_utc": "2026-04-12T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -63021,8 +59520,7 @@ "canonical_id": "game_mls_2026_20260412_hou_col", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "COL", @@ -63039,8 +59537,7 @@ "canonical_id": "game_mlb_2026_20260412_hou_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-11", - "time": "6:40p", + "game_datetime_utc": "2026-04-12T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63057,8 +59554,7 @@ "canonical_id": "game_nhl_2025_20260411_van_sj", "sport": "NHL", "season": "2026", - "date": "2026-04-11", - "time": "7p", + "game_datetime_utc": "2026-04-12T02:00:00Z", "home_team": "San Jose Sharks", "away_team": "Vancouver Canucks", "home_team_abbrev": "SJ", @@ -63075,8 +59571,7 @@ "canonical_id": "game_mls_2026_20260412_min_sd", "sport": "MLS", "season": "2026", - "date": "2026-04-11", - "time": "7:30p", + "game_datetime_utc": "2026-04-12T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SD", @@ -63093,8 +59588,7 @@ "canonical_id": "game_mlb_2026_20260412_sf_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:35p", + "game_datetime_utc": "2026-04-12T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "San Francisco Giants", "home_team_abbrev": "BAL", @@ -63111,8 +59605,7 @@ "canonical_id": "game_mlb_2026_20260412_ari_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:35p", + "game_datetime_utc": "2026-04-12T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PHI", @@ -63129,8 +59622,7 @@ "canonical_id": "game_mlb_2026_20260412_min_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:37p", + "game_datetime_utc": "2026-04-12T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Minnesota Twins", "home_team_abbrev": "TOR", @@ -63147,8 +59639,7 @@ "canonical_id": "game_mlb_2026_20260412_mia_det", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Miami Marlins", "home_team_abbrev": "DET", @@ -63165,8 +59656,7 @@ "canonical_id": "game_mlb_2026_20260412_laa_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Angels", "home_team_abbrev": "CIN", @@ -63183,8 +59673,7 @@ "canonical_id": "game_mlb_2026_20260412_oak_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "New York Mets", "away_team": "Oakland Athletics", "home_team_abbrev": "NYM", @@ -63201,8 +59690,7 @@ "canonical_id": "game_mlb_2026_20260412_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:40p", + "game_datetime_utc": "2026-04-12T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -63219,8 +59707,7 @@ "canonical_id": "game_mlb_2026_20260412_wsn_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Washington Nationals", "home_team_abbrev": "MIL", @@ -63237,8 +59724,7 @@ "canonical_id": "game_mlb_2026_20260412_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -63255,8 +59741,7 @@ "canonical_id": "game_mlb_2026_20260412_bos_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:15p", + "game_datetime_utc": "2026-04-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Boston Red Sox", "home_team_abbrev": "STL", @@ -63273,8 +59758,7 @@ "canonical_id": "game_mlb_2026_20260412_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:20p", + "game_datetime_utc": "2026-04-12T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -63291,8 +59775,7 @@ "canonical_id": "game_mls_2026_20260412_phi_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "2:30p", + "game_datetime_utc": "2026-04-12T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "MTL", @@ -63309,8 +59792,7 @@ "canonical_id": "game_nhl_2025_20260412_pit_was", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "3p", + "game_datetime_utc": "2026-04-12T19:00:00Z", "home_team": "Washington Capitals", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "WAS", @@ -63327,8 +59809,7 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Texas Rangers", "home_team_abbrev": "LAD", @@ -63345,8 +59826,7 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -63363,8 +59843,7 @@ "canonical_id": "game_mlb_2026_20260412_hou_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "1:10p", + "game_datetime_utc": "2026-04-12T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63381,8 +59860,7 @@ "canonical_id": "game_nba_2025_20260412_orl_bos", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Boston Celtics", "away_team": "Orlando Magic", "home_team_abbrev": "BOS", @@ -63399,8 +59877,7 @@ "canonical_id": "game_nba_2025_20260412_was_cle", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Cleveland Cavaliers", "away_team": "Washington Wizards", "home_team_abbrev": "CLE", @@ -63417,8 +59894,7 @@ "canonical_id": "game_nba_2025_20260412_det_ind", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Indiana Pacers", "away_team": "Detroit Pistons", "home_team_abbrev": "IND", @@ -63435,8 +59911,7 @@ "canonical_id": "game_nba_2025_20260412_atl_mia", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Miami Heat", "away_team": "Atlanta Hawks", "home_team_abbrev": "MIA", @@ -63453,8 +59928,7 @@ "canonical_id": "game_nba_2025_20260412_cho_nyk", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "New York Knicks", "away_team": "Charlotte Hornets", "home_team_abbrev": "NYK", @@ -63471,8 +59945,7 @@ "canonical_id": "game_nba_2025_20260412_mil_phi", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "3p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Philadelphia 76ers", "away_team": "Milwaukee Bucks", "home_team_abbrev": "PHI", @@ -63489,8 +59962,7 @@ "canonical_id": "game_nba_2025_20260412_brk_tor", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Toronto Raptors", "away_team": "Brooklyn Nets", "home_team_abbrev": "TOR", @@ -63507,8 +59979,7 @@ "canonical_id": "game_nhl_2025_20260412_bos_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Boston Bruins", "home_team_abbrev": "CBJ", @@ -63525,8 +59996,7 @@ "canonical_id": "game_nhl_2025_20260412_mtl_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-12T22:00:00Z", "home_team": "New York Islanders", "away_team": "Montreal Canadiens", "home_team_abbrev": "NYI", @@ -63543,8 +60013,7 @@ "canonical_id": "game_mls_2026_20260412_orl_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-12T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Orlando Orlando City", "home_team_abbrev": "CLB", @@ -63561,8 +60030,7 @@ "canonical_id": "game_nhl_2025_20260412_ott_njd", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-12T23:00:00Z", "home_team": "New Jersey Devils", "away_team": "Ottawa Senators", "home_team_abbrev": "NJ", @@ -63579,8 +60047,7 @@ "canonical_id": "game_mlb_2026_20260412_cle_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-12", - "time": "7:20p", + "game_datetime_utc": "2026-04-12T23:20:00Z", "home_team": "Atlanta Braves", "away_team": "Cleveland Guardians", "home_team_abbrev": "ATL", @@ -63597,8 +60064,7 @@ "canonical_id": "game_nhl_2025_20260412_van_ana", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "5p", + "game_datetime_utc": "2026-04-13T00:00:00Z", "home_team": "Anaheim Ducks", "away_team": "Vancouver Canucks", "home_team_abbrev": "ANA", @@ -63615,8 +60081,7 @@ "canonical_id": "game_nba_2025_20260412_nop_min", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Minnesota Timberwolves", "away_team": "New Orleans Pelicans", "home_team_abbrev": "MIN", @@ -63633,8 +60098,7 @@ "canonical_id": "game_nba_2025_20260412_phx_okc", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Oklahoma City Thunder", "away_team": "Phoenix Suns", "home_team_abbrev": "OKC", @@ -63651,8 +60115,7 @@ "canonical_id": "game_nba_2025_20260412_uta_lal", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Los Angeles Lakers", "away_team": "Utah Jazz", "home_team_abbrev": "LAL", @@ -63669,8 +60132,7 @@ "canonical_id": "game_nba_2025_20260412_gsw_lac", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Los Angeles Clippers", "away_team": "Golden State Warriors", "home_team_abbrev": "LAC", @@ -63687,8 +60149,7 @@ "canonical_id": "game_nba_2025_20260412_mem_hou", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Houston Rockets", "away_team": "Memphis Grizzlies", "home_team_abbrev": "HOU", @@ -63705,8 +60166,7 @@ "canonical_id": "game_nba_2025_20260412_chi_dal", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Dallas Mavericks", "away_team": "Chicago Bulls", "home_team_abbrev": "DAL", @@ -63723,8 +60183,7 @@ "canonical_id": "game_nba_2025_20260412_sac_por", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "5:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "Portland Blazers", "away_team": "Sacramento Kings", "home_team_abbrev": "POR", @@ -63741,8 +60200,7 @@ "canonical_id": "game_nba_2025_20260412_den_sas", "sport": "NBA", "season": "2026", - "date": "2026-04-12", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T00:30:00Z", "home_team": "San Antonio Spurs", "away_team": "Denver Nuggets", "home_team_abbrev": "SAS", @@ -63759,8 +60217,7 @@ "canonical_id": "game_mls_2026_20260413_slc_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-12", - "time": "6p", + "game_datetime_utc": "2026-04-13T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SEA", @@ -63777,8 +60234,7 @@ "canonical_id": "game_nhl_2025_20260412_ari_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-12", - "time": "7p", + "game_datetime_utc": "2026-04-13T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Utah Club", "home_team_abbrev": "CGY", @@ -63795,8 +60251,7 @@ "canonical_id": "game_mlb_2026_20260413_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "1:10p", + "game_datetime_utc": "2026-04-13T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -63813,8 +60268,7 @@ "canonical_id": "game_mlb_2026_20260413_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:35p", + "game_datetime_utc": "2026-04-13T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -63831,8 +60285,7 @@ "canonical_id": "game_mlb_2026_20260413_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -63849,8 +60302,7 @@ "canonical_id": "game_mlb_2026_20260413_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -63867,8 +60319,7 @@ "canonical_id": "game_nhl_2025_20260413_car_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Carolina Hurricanes", "home_team_abbrev": "PHI", @@ -63885,8 +60336,7 @@ "canonical_id": "game_nhl_2025_20260413_det_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "Detroit Red Wings", "home_team_abbrev": "TB", @@ -63903,8 +60353,7 @@ "canonical_id": "game_nhl_2025_20260413_nyr_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-13T23:00:00Z", "home_team": "Florida Panthers", "away_team": "New York Rangers", "home_team_abbrev": "FLA", @@ -63921,8 +60370,7 @@ "canonical_id": "game_mlb_2026_20260413_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:05p", + "game_datetime_utc": "2026-04-13T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -63939,8 +60387,7 @@ "canonical_id": "game_mlb_2026_20260413_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:15p", + "game_datetime_utc": "2026-04-13T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -63957,8 +60404,7 @@ "canonical_id": "game_nhl_2025_20260413_dal_tor", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-13T23:30:00Z", "home_team": "Toronto Maple Leafs", "away_team": "Dallas Stars", "home_team_abbrev": "TOR", @@ -63975,8 +60421,7 @@ "canonical_id": "game_mlb_2026_20260413_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-13T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -63993,8 +60438,7 @@ "canonical_id": "game_mlb_2026_20260413_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:45p", + "game_datetime_utc": "2026-04-13T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64011,8 +60455,7 @@ "canonical_id": "game_nhl_2025_20260413_sj_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T00:00:00Z", "home_team": "Nashville Predators", "away_team": "San Jose Sharks", "home_team_abbrev": "NSH", @@ -64029,8 +60472,7 @@ "canonical_id": "game_nhl_2025_20260413_min_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T00:00:00Z", "home_team": "St. Louis Blues", "away_team": "Minnesota Wild", "home_team_abbrev": "STL", @@ -64047,8 +60489,7 @@ "canonical_id": "game_nhl_2025_20260413_buf_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-14T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "Buffalo Sabres", "home_team_abbrev": "CHI", @@ -64065,8 +60506,7 @@ "canonical_id": "game_nhl_2025_20260413_col_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7:30p", + "game_datetime_utc": "2026-04-14T01:30:00Z", "home_team": "Edmonton Oilers", "away_team": "Colorado Avalanche", "home_team_abbrev": "EDM", @@ -64083,8 +60523,7 @@ "canonical_id": "game_nhl_2025_20260413_la_sea", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "6:30p", + "game_datetime_utc": "2026-04-14T01:30:00Z", "home_team": "Seattle Kraken", "away_team": "Los Angeles Kings", "home_team_abbrev": "SEA", @@ -64101,8 +60540,7 @@ "canonical_id": "game_mlb_2026_20260414_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64119,8 +60557,7 @@ "canonical_id": "game_nhl_2025_20260413_wpg_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-13", - "time": "7p", + "game_datetime_utc": "2026-04-14T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Winnipeg Jets", "home_team_abbrev": "VGK", @@ -64137,8 +60574,7 @@ "canonical_id": "game_mlb_2026_20260414_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-13", - "time": "7:10p", + "game_datetime_utc": "2026-04-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64155,8 +60591,7 @@ "canonical_id": "game_mlb_2026_20260414_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:35p", + "game_datetime_utc": "2026-04-14T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -64173,8 +60608,7 @@ "canonical_id": "game_mlb_2026_20260414_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -64191,8 +60625,7 @@ "canonical_id": "game_mlb_2026_20260414_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -64209,8 +60642,7 @@ "canonical_id": "game_mlb_2026_20260414_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64227,8 +60659,7 @@ "canonical_id": "game_mlb_2026_20260414_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -64245,8 +60676,7 @@ "canonical_id": "game_nhl_2025_20260414_njd_bos", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Boston Bruins", "away_team": "New Jersey Devils", "home_team_abbrev": "BOS", @@ -64263,8 +60693,7 @@ "canonical_id": "game_nhl_2025_20260414_mtl_phi", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Philadelphia Flyers", "away_team": "Montreal Canadiens", "home_team_abbrev": "PHI", @@ -64281,8 +60710,7 @@ "canonical_id": "game_nhl_2025_20260414_was_cbj", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "Columbus Blue Jackets", "away_team": "Washington Capitals", "home_team_abbrev": "CBJ", @@ -64299,8 +60727,7 @@ "canonical_id": "game_nhl_2025_20260414_car_nyi", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-14T23:00:00Z", "home_team": "New York Islanders", "away_team": "Carolina Hurricanes", "home_team_abbrev": "NYI", @@ -64317,8 +60744,7 @@ "canonical_id": "game_mlb_2026_20260414_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:05p", + "game_datetime_utc": "2026-04-14T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -64335,8 +60761,7 @@ "canonical_id": "game_mlb_2026_20260414_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:15p", + "game_datetime_utc": "2026-04-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -64353,8 +60778,7 @@ "canonical_id": "game_mlb_2026_20260414_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -64371,8 +60795,7 @@ "canonical_id": "game_mlb_2026_20260414_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -64389,8 +60812,7 @@ "canonical_id": "game_mlb_2026_20260414_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-14T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -64407,8 +60829,7 @@ "canonical_id": "game_mlb_2026_20260414_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:45p", + "game_datetime_utc": "2026-04-14T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64425,8 +60846,7 @@ "canonical_id": "game_nhl_2025_20260414_ana_min", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T00:00:00Z", "home_team": "Minnesota Wild", "away_team": "Anaheim Ducks", "home_team_abbrev": "MIN", @@ -64443,8 +60863,7 @@ "canonical_id": "game_mlb_2026_20260415_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:10p", + "game_datetime_utc": "2026-04-15T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -64461,8 +60880,7 @@ "canonical_id": "game_nhl_2025_20260414_wpg_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T01:00:00Z", "home_team": "Utah Club", "away_team": "Winnipeg Jets", "home_team_abbrev": "ARI", @@ -64479,8 +60897,7 @@ "canonical_id": "game_nhl_2025_20260414_col_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Colorado Avalanche", "home_team_abbrev": "CGY", @@ -64497,8 +60914,7 @@ "canonical_id": "game_nhl_2025_20260414_pit_stl", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "8:30p", + "game_datetime_utc": "2026-04-15T01:30:00Z", "home_team": "St. Louis Blues", "away_team": "Pittsburgh Penguins", "home_team_abbrev": "STL", @@ -64515,8 +60931,7 @@ "canonical_id": "game_mlb_2026_20260415_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -64533,8 +60948,7 @@ "canonical_id": "game_mlb_2026_20260415_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64551,8 +60965,7 @@ "canonical_id": "game_nhl_2025_20260414_la_van", "sport": "NHL", "season": "2026", - "date": "2026-04-14", - "time": "7p", + "game_datetime_utc": "2026-04-15T02:00:00Z", "home_team": "Vancouver Canucks", "away_team": "Los Angeles Kings", "home_team_abbrev": "VAN", @@ -64569,8 +60982,7 @@ "canonical_id": "game_mlb_2026_20260415_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-14", - "time": "7:10p", + "game_datetime_utc": "2026-04-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64587,8 +60999,7 @@ "canonical_id": "game_mlb_2026_20260415_ari_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:35p", + "game_datetime_utc": "2026-04-15T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BAL", @@ -64605,8 +61016,7 @@ "canonical_id": "game_mlb_2026_20260415_cle_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:15p", + "game_datetime_utc": "2026-04-15T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cleveland Guardians", "home_team_abbrev": "STL", @@ -64623,8 +61033,7 @@ "canonical_id": "game_mlb_2026_20260415_bos_min", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "12:40p", + "game_datetime_utc": "2026-04-15T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIN", @@ -64641,8 +61050,7 @@ "canonical_id": "game_mlb_2026_20260415_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -64659,8 +61067,7 @@ "canonical_id": "game_mlb_2026_20260415_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -64677,8 +61084,7 @@ "canonical_id": "game_mlb_2026_20260415_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64695,8 +61101,7 @@ "canonical_id": "game_mlb_2026_20260415_chc_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago Cubs", "home_team_abbrev": "PHI", @@ -64713,8 +61118,7 @@ "canonical_id": "game_nhl_2025_20260415_nyr_tb", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Tampa Bay Lightning", "away_team": "New York Rangers", "home_team_abbrev": "TB", @@ -64731,8 +61135,7 @@ "canonical_id": "game_nhl_2025_20260415_dal_buf", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Buffalo Sabres", "away_team": "Dallas Stars", "home_team_abbrev": "BUF", @@ -64749,8 +61152,7 @@ "canonical_id": "game_nhl_2025_20260415_det_fla", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-15T23:00:00Z", "home_team": "Florida Panthers", "away_team": "Detroit Red Wings", "home_team_abbrev": "FLA", @@ -64767,8 +61169,7 @@ "canonical_id": "game_mlb_2026_20260415_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:05p", + "game_datetime_utc": "2026-04-15T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -64785,8 +61186,7 @@ "canonical_id": "game_mlb_2026_20260415_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:15p", + "game_datetime_utc": "2026-04-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -64803,8 +61203,7 @@ "canonical_id": "game_nhl_2025_20260415_tor_ott", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7:30p", + "game_datetime_utc": "2026-04-15T23:30:00Z", "home_team": "Ottawa Senators", "away_team": "Toronto Maple Leafs", "home_team_abbrev": "OTT", @@ -64821,8 +61220,7 @@ "canonical_id": "game_mlb_2026_20260415_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -64839,8 +61237,7 @@ "canonical_id": "game_mlb_2026_20260415_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-15T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -64857,8 +61254,7 @@ "canonical_id": "game_mlb_2026_20260416_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:10p", + "game_datetime_utc": "2026-04-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -64875,8 +61271,7 @@ "canonical_id": "game_nhl_2025_20260415_sj_chi", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7:30p", + "game_datetime_utc": "2026-04-16T00:30:00Z", "home_team": "Chicago Blackhawks", "away_team": "San Jose Sharks", "home_team_abbrev": "CHI", @@ -64893,8 +61288,7 @@ "canonical_id": "game_mlb_2026_20260416_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-16T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -64911,8 +61305,7 @@ "canonical_id": "game_mlb_2026_20260416_tex_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "6:40p", + "game_datetime_utc": "2026-04-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -64929,8 +61322,7 @@ "canonical_id": "game_nhl_2025_20260415_sea_vgk", "sport": "NHL", "season": "2026", - "date": "2026-04-15", - "time": "7p", + "game_datetime_utc": "2026-04-16T02:00:00Z", "home_team": "Vegas Golden Knights", "away_team": "Seattle Kraken", "home_team_abbrev": "VGK", @@ -64947,8 +61339,7 @@ "canonical_id": "game_mlb_2026_20260416_nym_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-15", - "time": "7:10p", + "game_datetime_utc": "2026-04-16T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "New York Mets", "home_team_abbrev": "LAD", @@ -64965,8 +61356,7 @@ "canonical_id": "game_mlb_2026_20260416_wsn_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:35p", + "game_datetime_utc": "2026-04-16T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Washington Nationals", "home_team_abbrev": "PIT", @@ -64983,8 +61373,7 @@ "canonical_id": "game_mlb_2026_20260416_sf_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:40p", + "game_datetime_utc": "2026-04-16T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Francisco Giants", "home_team_abbrev": "CIN", @@ -65001,8 +61390,7 @@ "canonical_id": "game_mlb_2026_20260416_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:10p", + "game_datetime_utc": "2026-04-16T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -65019,8 +61407,7 @@ "canonical_id": "game_mlb_2026_20260416_laa_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:35p", + "game_datetime_utc": "2026-04-16T17:35:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Angels", "home_team_abbrev": "NYY", @@ -65037,8 +61424,7 @@ "canonical_id": "game_mlb_2026_20260416_tor_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:40p", + "game_datetime_utc": "2026-04-16T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIL", @@ -65055,8 +61441,7 @@ "canonical_id": "game_mlb_2026_20260416_tbr_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "1:10p", + "game_datetime_utc": "2026-04-16T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CHW", @@ -65073,8 +61458,7 @@ "canonical_id": "game_mlb_2026_20260416_tex_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "12:05p", + "game_datetime_utc": "2026-04-16T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -65091,8 +61475,7 @@ "canonical_id": "game_mlb_2026_20260416_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "6:10p", + "game_datetime_utc": "2026-04-16T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65109,8 +61492,7 @@ "canonical_id": "game_nhl_2025_20260416_stl_ari", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "6p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Utah Club", "away_team": "St. Louis Blues", "home_team_abbrev": "ARI", @@ -65127,8 +61509,7 @@ "canonical_id": "game_nhl_2025_20260416_ana_nsh", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Nashville Predators", "away_team": "Anaheim Ducks", "home_team_abbrev": "NSH", @@ -65145,8 +61526,7 @@ "canonical_id": "game_nhl_2025_20260416_sj_wpg", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T00:00:00Z", "home_team": "Winnipeg Jets", "away_team": "San Jose Sharks", "home_team_abbrev": "WPG", @@ -65163,8 +61543,7 @@ "canonical_id": "game_mlb_2026_20260417_col_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Colorado Rockies", "home_team_abbrev": "HOU", @@ -65181,8 +61560,7 @@ "canonical_id": "game_mlb_2026_20260417_sea_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-16", - "time": "5:40p", + "game_datetime_utc": "2026-04-17T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Seattle Mariners", "home_team_abbrev": "SD", @@ -65199,8 +61577,7 @@ "canonical_id": "game_nhl_2025_20260416_la_cgy", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T01:00:00Z", "home_team": "Calgary Flames", "away_team": "Los Angeles Kings", "home_team_abbrev": "CGY", @@ -65217,8 +61594,7 @@ "canonical_id": "game_nhl_2025_20260416_van_edm", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "7p", + "game_datetime_utc": "2026-04-17T01:00:00Z", "home_team": "Edmonton Oilers", "away_team": "Vancouver Canucks", "home_team_abbrev": "EDM", @@ -65235,8 +61611,7 @@ "canonical_id": "game_nhl_2025_20260416_sea_col", "sport": "NHL", "season": "2026", - "date": "2026-04-16", - "time": "8:30p", + "game_datetime_utc": "2026-04-17T02:30:00Z", "home_team": "Colorado Avalanche", "away_team": "Seattle Kraken", "home_team_abbrev": "COL", @@ -65253,8 +61628,7 @@ "canonical_id": "game_mlb_2026_20260417_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "1:20p", + "game_datetime_utc": "2026-04-17T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -65271,8 +61645,7 @@ "canonical_id": "game_mlb_2026_20260417_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:10p", + "game_datetime_utc": "2026-04-17T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65289,8 +61662,7 @@ "canonical_id": "game_mlb_2026_20260417_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-17T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -65307,8 +61679,7 @@ "canonical_id": "game_mlb_2026_20260417_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-17T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -65325,8 +61696,7 @@ "canonical_id": "game_mlb_2026_20260417_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:45p", + "game_datetime_utc": "2026-04-17T22:45:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -65343,8 +61713,7 @@ "canonical_id": "game_mlb_2026_20260417_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:05p", + "game_datetime_utc": "2026-04-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -65361,8 +61730,7 @@ "canonical_id": "game_mlb_2026_20260417_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -65379,8 +61747,7 @@ "canonical_id": "game_mlb_2026_20260417_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -65397,8 +61764,7 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-18T00:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -65415,8 +61781,7 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "7:10p", + "game_datetime_utc": "2026-04-18T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -65433,8 +61798,7 @@ "canonical_id": "game_mlb_2026_20260418_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -65451,8 +61815,7 @@ "canonical_id": "game_mlb_2026_20260418_sd_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:38p", + "game_datetime_utc": "2026-04-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -65469,8 +61832,7 @@ "canonical_id": "game_mlb_2026_20260418_tor_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -65487,8 +61849,7 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -65505,8 +61866,7 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-17", - "time": "6:40p", + "game_datetime_utc": "2026-04-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -65523,8 +61883,7 @@ "canonical_id": "game_mls_2026_20260418_skc_van", "sport": "MLS", "season": "2026", - "date": "2026-04-17", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "VAN", @@ -65541,8 +61900,7 @@ "canonical_id": "game_mls_2026_20260418_aus_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "1p", + "game_datetime_utc": "2026-04-18T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Austin Austin FC", "home_team_abbrev": "TOR", @@ -65559,8 +61917,7 @@ "canonical_id": "game_mlb_2026_20260418_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:35p", + "game_datetime_utc": "2026-04-18T17:35:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -65577,8 +61934,7 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:10p", + "game_datetime_utc": "2026-04-18T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -65595,8 +61951,7 @@ "canonical_id": "game_mlb_2026_20260418_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:20p", + "game_datetime_utc": "2026-04-18T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -65613,8 +61968,7 @@ "canonical_id": "game_mls_2026_20260418_ny_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "2:30p", + "game_datetime_utc": "2026-04-18T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New York New York Red Bulls", "home_team_abbrev": "MTL", @@ -65631,8 +61985,7 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "1:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -65649,8 +62002,7 @@ "canonical_id": "game_mlb_2026_20260418_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -65667,8 +62019,7 @@ "canonical_id": "game_mlb_2026_20260418_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:05p", + "game_datetime_utc": "2026-04-18T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -65685,8 +62036,7 @@ "canonical_id": "game_mlb_2026_20260418_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:10p", + "game_datetime_utc": "2026-04-18T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -65703,8 +62053,7 @@ "canonical_id": "game_mlb_2026_20260418_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:10p", + "game_datetime_utc": "2026-04-18T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -65721,8 +62070,7 @@ "canonical_id": "game_mls_2026_20260418_mia_col", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "2:30p", + "game_datetime_utc": "2026-04-18T20:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Miami Inter Miami", "home_team_abbrev": "COL", @@ -65739,8 +62087,7 @@ "canonical_id": "game_mlb_2026_20260418_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-18T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -65757,8 +62104,7 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-18T23:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -65775,8 +62121,7 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "4:15p", + "game_datetime_utc": "2026-04-18T23:15:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -65793,8 +62138,7 @@ "canonical_id": "game_mlb_2026_20260418_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "7:15p", + "game_datetime_utc": "2026-04-18T23:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -65811,8 +62155,7 @@ "canonical_id": "game_mls_2026_20260418_chi_cin", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CIN", @@ -65829,8 +62172,7 @@ "canonical_id": "game_mls_2026_20260418_clb_ne", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NE", @@ -65847,8 +62189,7 @@ "canonical_id": "game_mls_2026_20260418_clt_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NYC", @@ -65865,8 +62206,7 @@ "canonical_id": "game_mls_2026_20260418_hou_orl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "ORL", @@ -65883,8 +62223,7 @@ "canonical_id": "game_mls_2026_20260418_dc_phi", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Washington D.C. United", "home_team_abbrev": "PHI", @@ -65901,8 +62240,7 @@ "canonical_id": "game_mls_2026_20260418_nsh_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-18T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Nashville Nashville SC", "home_team_abbrev": "ATL", @@ -65919,8 +62257,7 @@ "canonical_id": "game_mlb_2026_20260419_tor_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "5:10p", + "game_datetime_utc": "2026-04-19T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -65937,8 +62274,7 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:10p", + "game_datetime_utc": "2026-04-19T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -65955,8 +62291,7 @@ "canonical_id": "game_mls_2026_20260419_por_min", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MIN", @@ -65973,8 +62308,7 @@ "canonical_id": "game_mls_2026_20260419_lag_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "DAL", @@ -65991,8 +62325,7 @@ "canonical_id": "game_mls_2026_20260419_sd_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "7:30p", + "game_datetime_utc": "2026-04-19T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SLC", @@ -66009,8 +62342,7 @@ "canonical_id": "game_mls_2026_20260419_stl_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-18", - "time": "6:30p", + "game_datetime_utc": "2026-04-19T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SEA", @@ -66027,8 +62359,7 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-18", - "time": "6:38p", + "game_datetime_utc": "2026-04-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -66045,8 +62376,7 @@ "canonical_id": "game_mlb_2026_20260419_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -66063,8 +62393,7 @@ "canonical_id": "game_mlb_2026_20260419_kc_nyy", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "New York Yankees", "away_team": "Kansas City Royals", "home_team_abbrev": "NYY", @@ -66081,8 +62410,7 @@ "canonical_id": "game_mlb_2026_20260419_tbr_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PIT", @@ -66099,8 +62427,7 @@ "canonical_id": "game_mlb_2026_20260419_sf_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:35p", + "game_datetime_utc": "2026-04-19T17:35:00Z", "home_team": "Washington Nationals", "away_team": "San Francisco Giants", "home_team_abbrev": "WSN", @@ -66117,8 +62444,7 @@ "canonical_id": "game_mlb_2026_20260419_bal_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:40p", + "game_datetime_utc": "2026-04-19T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Baltimore Orioles", "home_team_abbrev": "CLE", @@ -66135,8 +62461,7 @@ "canonical_id": "game_mlb_2026_20260419_mil_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:40p", + "game_datetime_utc": "2026-04-19T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIA", @@ -66153,8 +62478,7 @@ "canonical_id": "game_mlb_2026_20260419_stl_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T18:10:00Z", "home_team": "Houston Astros", "away_team": "St. Louis Cardinals", "home_team_abbrev": "HOU", @@ -66171,8 +62495,7 @@ "canonical_id": "game_mlb_2026_20260419_cin_min", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIN", @@ -66189,8 +62512,7 @@ "canonical_id": "game_mlb_2026_20260419_nym_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:20p", + "game_datetime_utc": "2026-04-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Mets", "home_team_abbrev": "CHC", @@ -66207,8 +62529,7 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -66225,8 +62546,7 @@ "canonical_id": "game_mlb_2026_20260419_chw_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:05p", + "game_datetime_utc": "2026-04-19T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Chicago White Sox", "home_team_abbrev": "OAK", @@ -66243,8 +62563,7 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:07p", + "game_datetime_utc": "2026-04-19T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "San Diego Padres", "home_team_abbrev": "LAA", @@ -66261,8 +62580,7 @@ "canonical_id": "game_mlb_2026_20260419_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -66279,8 +62597,7 @@ "canonical_id": "game_mlb_2026_20260419_tor_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "1:10p", + "game_datetime_utc": "2026-04-19T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ARI", @@ -66297,8 +62614,7 @@ "canonical_id": "game_mls_2026_20260419_sj_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-19", - "time": "4p", + "game_datetime_utc": "2026-04-19T23:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "LAFC", @@ -66315,8 +62631,7 @@ "canonical_id": "game_mlb_2026_20260419_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-19", - "time": "7:20p", + "game_datetime_utc": "2026-04-19T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -66333,8 +62648,7 @@ "canonical_id": "game_mlb_2026_20260420_det_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "11:10a", + "game_datetime_utc": "2026-04-20T15:10:00Z", "home_team": "Boston Red Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "BOS", @@ -66351,8 +62665,7 @@ "canonical_id": "game_mlb_2026_20260420_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:10p", + "game_datetime_utc": "2026-04-20T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66369,8 +62682,7 @@ "canonical_id": "game_mlb_2026_20260420_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66387,8 +62699,7 @@ "canonical_id": "game_mlb_2026_20260420_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T22:40:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66405,8 +62716,7 @@ "canonical_id": "game_mlb_2026_20260420_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:45p", + "game_datetime_utc": "2026-04-20T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66423,8 +62733,7 @@ "canonical_id": "game_mlb_2026_20260420_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -66441,8 +62750,7 @@ "canonical_id": "game_mlb_2026_20260420_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66459,8 +62767,7 @@ "canonical_id": "game_mlb_2026_20260421_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -66477,8 +62784,7 @@ "canonical_id": "game_mlb_2026_20260421_tor_laa", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:38p", + "game_datetime_utc": "2026-04-21T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66495,8 +62801,7 @@ "canonical_id": "game_mlb_2026_20260421_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-04-20", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66513,8 +62818,7 @@ "canonical_id": "game_mlb_2026_20260421_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:10p", + "game_datetime_utc": "2026-04-21T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66531,8 +62835,7 @@ "canonical_id": "game_mlb_2026_20260421_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66549,8 +62852,7 @@ "canonical_id": "game_mlb_2026_20260421_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -66567,8 +62869,7 @@ "canonical_id": "game_mlb_2026_20260421_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66585,8 +62886,7 @@ "canonical_id": "game_mlb_2026_20260421_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-21T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -66603,8 +62903,7 @@ "canonical_id": "game_mlb_2026_20260421_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-21T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66621,8 +62920,7 @@ "canonical_id": "game_mlb_2026_20260421_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "7:10p", + "game_datetime_utc": "2026-04-21T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -66639,8 +62937,7 @@ "canonical_id": "game_mlb_2026_20260421_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66657,8 +62954,7 @@ "canonical_id": "game_mlb_2026_20260421_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-21T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -66675,8 +62971,7 @@ "canonical_id": "game_mlb_2026_20260422_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "7:05p", + "game_datetime_utc": "2026-04-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -66693,8 +62988,7 @@ "canonical_id": "game_mlb_2026_20260422_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -66711,8 +63005,7 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:38p", + "game_datetime_utc": "2026-04-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66729,8 +63022,7 @@ "canonical_id": "game_mlb_2026_20260422_chw_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -66747,8 +63039,7 @@ "canonical_id": "game_mlb_2026_20260422_oak_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66765,8 +63056,7 @@ "canonical_id": "game_mlb_2026_20260422_lad_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-21", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -66783,8 +63073,7 @@ "canonical_id": "game_mlb_2026_20260422_stl_mia", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "12:10p", + "game_datetime_utc": "2026-04-22T16:10:00Z", "home_team": "Miami Marlins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIA", @@ -66801,8 +63090,7 @@ "canonical_id": "game_mlb_2026_20260422_hou_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Houston Astros", "home_team_abbrev": "CLE", @@ -66819,8 +63107,7 @@ "canonical_id": "game_mlb_2026_20260422_cin_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TB", @@ -66837,8 +63124,7 @@ "canonical_id": "game_mlb_2026_20260422_bal_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Baltimore Orioles", "home_team_abbrev": "KC", @@ -66855,8 +63141,7 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "12:07p", + "game_datetime_utc": "2026-04-22T19:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Toronto Blue Jays", "home_team_abbrev": "LAA", @@ -66873,8 +63158,7 @@ "canonical_id": "game_mlb_2026_20260422_oak_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "1:10p", + "game_datetime_utc": "2026-04-22T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -66891,8 +63175,7 @@ "canonical_id": "game_mlb_2026_20260422_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -66909,8 +63192,7 @@ "canonical_id": "game_mlb_2026_20260422_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -66927,8 +63209,7 @@ "canonical_id": "game_mlb_2026_20260422_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-22T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -66945,8 +63226,7 @@ "canonical_id": "game_mlb_2026_20260422_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "7:10p", + "game_datetime_utc": "2026-04-22T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -66963,8 +63243,7 @@ "canonical_id": "game_mls_2026_20260422_dc_ny", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Washington D.C. United", "home_team_abbrev": "RB", @@ -66981,8 +63260,7 @@ "canonical_id": "game_mls_2026_20260422_cin_nyc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NYC", @@ -66999,8 +63277,7 @@ "canonical_id": "game_mls_2026_20260422_clt_orl", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "ORL", @@ -67017,8 +63294,7 @@ "canonical_id": "game_mls_2026_20260422_phi_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "TOR", @@ -67035,8 +63311,7 @@ "canonical_id": "game_mls_2026_20260422_ne_atl", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New England New England Revolution", "home_team_abbrev": "ATL", @@ -67053,8 +63328,7 @@ "canonical_id": "game_mls_2026_20260422_lag_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-22T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "CLB", @@ -67071,8 +63345,7 @@ "canonical_id": "game_mlb_2026_20260422_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-22T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -67089,8 +63362,7 @@ "canonical_id": "game_mlb_2026_20260423_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "7:05p", + "game_datetime_utc": "2026-04-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -67107,8 +63379,7 @@ "canonical_id": "game_mls_2026_20260423_min_dal", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "DAL", @@ -67125,8 +63396,7 @@ "canonical_id": "game_mls_2026_20260423_sd_hou", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "San Diego San Diego FC", "home_team_abbrev": "HOU", @@ -67143,8 +63413,7 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -67161,8 +63430,7 @@ "canonical_id": "game_mls_2026_20260423_mia_slc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Miami Inter Miami", "home_team_abbrev": "SLC", @@ -67179,8 +63447,7 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:40p", + "game_datetime_utc": "2026-04-23T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -67197,8 +63464,7 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-22", - "time": "6:45p", + "game_datetime_utc": "2026-04-23T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -67215,8 +63481,7 @@ "canonical_id": "game_mls_2026_20260423_aus_sj", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Austin Austin FC", "home_team_abbrev": "SJ", @@ -67233,8 +63498,7 @@ "canonical_id": "game_mls_2026_20260423_col_lafc", "sport": "MLS", "season": "2026", - "date": "2026-04-22", - "time": "7:30p", + "game_datetime_utc": "2026-04-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "LAFC", @@ -67251,8 +63515,7 @@ "canonical_id": "game_mlb_2026_20260423_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:05p", + "game_datetime_utc": "2026-04-23T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -67269,8 +63532,7 @@ "canonical_id": "game_mlb_2026_20260423_mil_det", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:10p", + "game_datetime_utc": "2026-04-23T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "DET", @@ -67287,8 +63549,7 @@ "canonical_id": "game_mlb_2026_20260423_phi_chc", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:20p", + "game_datetime_utc": "2026-04-23T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CHC", @@ -67305,8 +63566,7 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "1:10p", + "game_datetime_utc": "2026-04-23T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -67323,8 +63583,7 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "12:40p", + "game_datetime_utc": "2026-04-23T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago White Sox", "home_team_abbrev": "ARI", @@ -67341,8 +63600,7 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "12:45p", + "game_datetime_utc": "2026-04-23T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -67359,8 +63617,7 @@ "canonical_id": "game_mlb_2026_20260423_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "6:10p", + "game_datetime_utc": "2026-04-23T22:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -67377,8 +63634,7 @@ "canonical_id": "game_mlb_2026_20260423_min_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "7:10p", + "game_datetime_utc": "2026-04-23T23:10:00Z", "home_team": "New York Mets", "away_team": "Minnesota Twins", "home_team_abbrev": "NYM", @@ -67395,8 +63651,7 @@ "canonical_id": "game_mlb_2026_20260424_pit_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-23", - "time": "7:05p", + "game_datetime_utc": "2026-04-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TEX", @@ -67413,8 +63668,7 @@ "canonical_id": "game_nwsl_2026_20260424_orl_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-04-24", - "time": "5:30p", + "game_datetime_utc": "2026-04-24T21:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "RGN", @@ -67431,8 +63685,7 @@ "canonical_id": "game_mlb_2026_20260424_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -67449,8 +63702,7 @@ "canonical_id": "game_mlb_2026_20260424_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:05p", + "game_datetime_utc": "2026-04-24T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -67467,8 +63719,7 @@ "canonical_id": "game_mlb_2026_20260424_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:07p", + "game_datetime_utc": "2026-04-24T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -67485,8 +63736,7 @@ "canonical_id": "game_mlb_2026_20260424_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -67503,8 +63753,7 @@ "canonical_id": "game_mlb_2026_20260424_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-24T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -67521,8 +63770,7 @@ "canonical_id": "game_mlb_2026_20260424_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-24T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -67539,8 +63787,7 @@ "canonical_id": "game_mlb_2026_20260424_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -67557,8 +63804,7 @@ "canonical_id": "game_mlb_2026_20260424_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -67575,8 +63821,7 @@ "canonical_id": "game_mlb_2026_20260424_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "6:40p", + "game_datetime_utc": "2026-04-24T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -67593,8 +63838,7 @@ "canonical_id": "game_nwsl_2026_20260425_kcc_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-04-24", - "time": "8p", + "game_datetime_utc": "2026-04-25T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "WSH", @@ -67611,8 +63855,7 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:05p", + "game_datetime_utc": "2026-04-25T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -67629,8 +63872,7 @@ "canonical_id": "game_mlb_2026_20260425_nyy_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-25T00:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -67647,8 +63889,7 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -67665,8 +63906,7 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:10p", + "game_datetime_utc": "2026-04-25T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -67683,8 +63923,7 @@ "canonical_id": "game_mlb_2026_20260425_mia_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-04-24", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -67701,8 +63940,7 @@ "canonical_id": "game_mls_2026_20260425_atl_tor", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "1p", + "game_datetime_utc": "2026-04-25T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "TOR", @@ -67719,8 +63957,7 @@ "canonical_id": "game_nwsl_2026_20260425_bay_njy", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "1p", + "game_datetime_utc": "2026-04-25T17:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "NJY", @@ -67737,8 +63974,7 @@ "canonical_id": "game_mls_2026_20260425_lafc_min", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "12:30p", + "game_datetime_utc": "2026-04-25T17:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "MIN", @@ -67755,8 +63991,7 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "1:15p", + "game_datetime_utc": "2026-04-25T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -67773,8 +64008,7 @@ "canonical_id": "game_mlb_2026_20260425_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "3:07p", + "game_datetime_utc": "2026-04-25T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -67791,8 +64025,7 @@ "canonical_id": "game_mlb_2026_20260425_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:05p", + "game_datetime_utc": "2026-04-25T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -67809,8 +64042,7 @@ "canonical_id": "game_mlb_2026_20260425_mia_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "1:05p", + "game_datetime_utc": "2026-04-25T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -67827,8 +64059,7 @@ "canonical_id": "game_mlb_2026_20260425_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -67845,8 +64076,7 @@ "canonical_id": "game_mlb_2026_20260425_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "3:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -67863,8 +64093,7 @@ "canonical_id": "game_mlb_2026_20260425_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:10p", + "game_datetime_utc": "2026-04-25T20:10:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -67881,8 +64110,7 @@ "canonical_id": "game_mlb_2026_20260425_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:05p", + "game_datetime_utc": "2026-04-25T22:05:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -67899,8 +64127,7 @@ "canonical_id": "game_nwsl_2026_20260425_bos_chi", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "5:30p", + "game_datetime_utc": "2026-04-25T22:30:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "CHI", @@ -67917,8 +64144,7 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:05p", + "game_datetime_utc": "2026-04-25T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -67935,8 +64161,7 @@ "canonical_id": "game_mlb_2026_20260425_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -67953,8 +64178,7 @@ "canonical_id": "game_mlb_2026_20260425_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -67971,8 +64195,7 @@ "canonical_id": "game_mlb_2026_20260425_nyy_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "6:10p", + "game_datetime_utc": "2026-04-25T23:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -67989,8 +64212,7 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "4:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -68007,8 +64229,7 @@ "canonical_id": "game_mlb_2026_20260425_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -68025,8 +64246,7 @@ "canonical_id": "game_mlb_2026_20260425_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-25", - "time": "7:15p", + "game_datetime_utc": "2026-04-25T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -68043,8 +64263,7 @@ "canonical_id": "game_mls_2026_20260425_ne_mia", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New England New England Revolution", "home_team_abbrev": "MIA", @@ -68061,8 +64280,7 @@ "canonical_id": "game_mls_2026_20260425_ny_cin", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CIN", @@ -68079,8 +64297,7 @@ "canonical_id": "game_mls_2026_20260425_orl_dc", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Orlando Orlando City", "home_team_abbrev": "DC", @@ -68097,8 +64314,7 @@ "canonical_id": "game_mls_2026_20260425_phi_clb", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-25T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CLB", @@ -68115,8 +64331,7 @@ "canonical_id": "game_nwsl_2026_20260426_ncc_hou", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "7p", + "game_datetime_utc": "2026-04-26T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "HOU", @@ -68133,8 +64348,7 @@ "canonical_id": "game_mls_2026_20260426_hou_aus", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "AUS", @@ -68151,8 +64365,7 @@ "canonical_id": "game_mls_2026_20260426_clt_nsh", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NSH", @@ -68169,8 +64382,7 @@ "canonical_id": "game_mls_2026_20260426_skc_chi", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "CHI", @@ -68187,8 +64399,7 @@ "canonical_id": "game_mls_2026_20260426_sj_stl", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "STL", @@ -68205,8 +64416,7 @@ "canonical_id": "game_nwsl_2026_20260426_sdw_den", "sport": "NWSL", "season": "2026", - "date": "2026-04-25", - "time": "6:45p", + "game_datetime_utc": "2026-04-26T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "DEN", @@ -68223,8 +64433,7 @@ "canonical_id": "game_mls_2026_20260426_por_sd", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "6:30p", + "game_datetime_utc": "2026-04-26T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SD", @@ -68241,8 +64450,7 @@ "canonical_id": "game_mls_2026_20260426_dal_sea", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SEA", @@ -68259,8 +64467,7 @@ "canonical_id": "game_mls_2026_20260426_col_van", "sport": "MLS", "season": "2026", - "date": "2026-04-25", - "time": "7:30p", + "game_datetime_utc": "2026-04-26T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "VAN", @@ -68277,8 +64484,7 @@ "canonical_id": "game_mlb_2026_20260426_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -68295,8 +64501,7 @@ "canonical_id": "game_mlb_2026_20260426_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -68313,8 +64518,7 @@ "canonical_id": "game_mlb_2026_20260426_cle_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:37p", + "game_datetime_utc": "2026-04-26T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TOR", @@ -68331,8 +64535,7 @@ "canonical_id": "game_mlb_2026_20260426_det_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Detroit Tigers", "home_team_abbrev": "CIN", @@ -68349,8 +64552,7 @@ "canonical_id": "game_mlb_2026_20260426_col_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "New York Mets", "away_team": "Colorado Rockies", "home_team_abbrev": "NYM", @@ -68367,8 +64569,7 @@ "canonical_id": "game_mlb_2026_20260426_min_tbr", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:40p", + "game_datetime_utc": "2026-04-26T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Minnesota Twins", "home_team_abbrev": "TB", @@ -68385,8 +64586,7 @@ "canonical_id": "game_mlb_2026_20260426_wsn_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Washington Nationals", "home_team_abbrev": "CHW", @@ -68403,8 +64603,7 @@ "canonical_id": "game_mlb_2026_20260426_nyy_hou", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Houston Astros", "away_team": "New York Yankees", "home_team_abbrev": "HOU", @@ -68421,8 +64620,7 @@ "canonical_id": "game_mlb_2026_20260426_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -68439,8 +64637,7 @@ "canonical_id": "game_mlb_2026_20260426_sea_stl", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:15p", + "game_datetime_utc": "2026-04-26T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Seattle Mariners", "home_team_abbrev": "STL", @@ -68457,8 +64654,7 @@ "canonical_id": "game_mls_2026_20260426_nyc_mtl", "sport": "MLS", "season": "2026", - "date": "2026-04-26", - "time": "2:30p", + "game_datetime_utc": "2026-04-26T18:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New York New York City FC", "home_team_abbrev": "MTL", @@ -68475,8 +64671,7 @@ "canonical_id": "game_mlb_2026_20260426_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:35p", + "game_datetime_utc": "2026-04-26T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -68493,8 +64688,7 @@ "canonical_id": "game_mlb_2026_20260426_mia_sf", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:05p", + "game_datetime_utc": "2026-04-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Miami Marlins", "home_team_abbrev": "SF", @@ -68511,8 +64705,7 @@ "canonical_id": "game_mlb_2026_20260426_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "2:05p", + "game_datetime_utc": "2026-04-26T20:05:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -68529,8 +64722,7 @@ "canonical_id": "game_mlb_2026_20260426_chc_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "1:10p", + "game_datetime_utc": "2026-04-26T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Chicago Cubs", "home_team_abbrev": "LAD", @@ -68547,8 +64739,7 @@ "canonical_id": "game_nwsl_2026_20260426_por_ang", "sport": "NWSL", "season": "2026", - "date": "2026-04-26", - "time": "3p", + "game_datetime_utc": "2026-04-26T22:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "ANG", @@ -68565,8 +64756,7 @@ "canonical_id": "game_mls_2026_20260426_slc_lag", "sport": "MLS", "season": "2026", - "date": "2026-04-26", - "time": "4p", + "game_datetime_utc": "2026-04-26T23:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "LAG", @@ -68583,8 +64773,7 @@ "canonical_id": "game_mlb_2026_20260426_laa_kc", "sport": "MLB", "season": "2026", - "date": "2026-04-26", - "time": "6:20p", + "game_datetime_utc": "2026-04-26T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Los Angeles Angels", "home_team_abbrev": "KC", @@ -68601,8 +64790,7 @@ "canonical_id": "game_nwsl_2026_20260427_uta_sea", "sport": "NWSL", "season": "2026", - "date": "2026-04-26", - "time": "5p", + "game_datetime_utc": "2026-04-27T00:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Utah Utah Royals", "home_team_abbrev": "SEA", @@ -68619,8 +64807,7 @@ "canonical_id": "game_mlb_2026_20260427_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:10p", + "game_datetime_utc": "2026-04-27T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -68637,8 +64824,7 @@ "canonical_id": "game_mlb_2026_20260427_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -68655,8 +64841,7 @@ "canonical_id": "game_mlb_2026_20260427_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:07p", + "game_datetime_utc": "2026-04-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -68673,8 +64858,7 @@ "canonical_id": "game_mlb_2026_20260427_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -68691,8 +64875,7 @@ "canonical_id": "game_mlb_2026_20260427_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-27T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -68709,8 +64892,7 @@ "canonical_id": "game_mlb_2026_20260428_nyy_tex", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:05p", + "game_datetime_utc": "2026-04-28T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -68727,8 +64909,7 @@ "canonical_id": "game_mlb_2026_20260428_chc_sd", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -68745,8 +64926,7 @@ "canonical_id": "game_mlb_2026_20260428_mia_lad", "sport": "MLB", "season": "2026", - "date": "2026-04-27", - "time": "7:10p", + "game_datetime_utc": "2026-04-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -68763,8 +64943,7 @@ "canonical_id": "game_mlb_2026_20260428_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:10p", + "game_datetime_utc": "2026-04-28T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -68781,8 +64960,7 @@ "canonical_id": "game_mlb_2026_20260428_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:35p", + "game_datetime_utc": "2026-04-28T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -68799,8 +64977,7 @@ "canonical_id": "game_mlb_2026_20260428_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -68817,8 +64994,7 @@ "canonical_id": "game_mlb_2026_20260428_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -68835,8 +65011,7 @@ "canonical_id": "game_mlb_2026_20260428_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -68853,8 +65028,7 @@ "canonical_id": "game_mlb_2026_20260428_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:07p", + "game_datetime_utc": "2026-04-28T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -68871,8 +65045,7 @@ "canonical_id": "game_mlb_2026_20260428_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:10p", + "game_datetime_utc": "2026-04-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -68889,8 +65062,7 @@ "canonical_id": "game_mlb_2026_20260428_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:15p", + "game_datetime_utc": "2026-04-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -68907,8 +65079,7 @@ "canonical_id": "game_mlb_2026_20260428_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -68925,8 +65096,7 @@ "canonical_id": "game_mlb_2026_20260428_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -68943,8 +65113,7 @@ "canonical_id": "game_mlb_2026_20260428_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-28T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -68961,8 +65130,7 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:05p", + "game_datetime_utc": "2026-04-29T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -68979,8 +65147,7 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -68997,8 +65164,7 @@ "canonical_id": "game_mlb_2026_20260429_kc_oak", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69015,8 +65181,7 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-04-28", - "time": "7:10p", + "game_datetime_utc": "2026-04-29T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -69033,8 +65198,7 @@ "canonical_id": "game_mlb_2026_20260429_laa_chw", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:10p", + "game_datetime_utc": "2026-04-29T17:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "CHW", @@ -69051,8 +65215,7 @@ "canonical_id": "game_mlb_2026_20260429_tbr_cle", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:10p", + "game_datetime_utc": "2026-04-29T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Tampa Bay Rays", "home_team_abbrev": "CLE", @@ -69069,8 +65232,7 @@ "canonical_id": "game_mlb_2026_20260429_sea_min", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:40p", + "game_datetime_utc": "2026-04-29T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIN", @@ -69087,8 +65249,7 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:35p", + "game_datetime_utc": "2026-04-29T18:35:00Z", "home_team": "Texas Rangers", "away_team": "New York Yankees", "home_team_abbrev": "TEX", @@ -69105,8 +65266,7 @@ "canonical_id": "game_mlb_2026_20260429_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "3:07p", + "game_datetime_utc": "2026-04-29T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -69123,8 +65283,7 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "12:10p", + "game_datetime_utc": "2026-04-29T19:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Miami Marlins", "home_team_abbrev": "LAD", @@ -69141,8 +65300,7 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "1:10p", + "game_datetime_utc": "2026-04-29T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago Cubs", "home_team_abbrev": "SD", @@ -69159,8 +65317,7 @@ "canonical_id": "game_mlb_2026_20260429_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:35p", + "game_datetime_utc": "2026-04-29T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -69177,8 +65334,7 @@ "canonical_id": "game_mlb_2026_20260429_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -69195,8 +65351,7 @@ "canonical_id": "game_mlb_2026_20260429_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -69213,8 +65368,7 @@ "canonical_id": "game_mlb_2026_20260429_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -69231,8 +65385,7 @@ "canonical_id": "game_nwsl_2026_20260429_rgn_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-29T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "WSH", @@ -69249,8 +65402,7 @@ "canonical_id": "game_mlb_2026_20260429_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "7:10p", + "game_datetime_utc": "2026-04-29T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -69267,8 +65419,7 @@ "canonical_id": "game_mlb_2026_20260429_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "7:15p", + "game_datetime_utc": "2026-04-29T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -69285,8 +65436,7 @@ "canonical_id": "game_mlb_2026_20260429_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-29T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -69303,8 +65453,7 @@ "canonical_id": "game_nwsl_2026_20260430_ncc_bos", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "8p", + "game_datetime_utc": "2026-04-30T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "BOS", @@ -69321,8 +65470,7 @@ "canonical_id": "game_nwsl_2026_20260430_njy_chi", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-30T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "CHI", @@ -69339,8 +65487,7 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-04-29", - "time": "6:40p", + "game_datetime_utc": "2026-04-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69357,8 +65504,7 @@ "canonical_id": "game_nwsl_2026_20260430_sdw_por", "sport": "NWSL", "season": "2026", - "date": "2026-04-29", - "time": "7p", + "game_datetime_utc": "2026-04-30T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "POR", @@ -69375,8 +65521,7 @@ "canonical_id": "game_mlb_2026_20260430_det_atl", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:15p", + "game_datetime_utc": "2026-04-30T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Detroit Tigers", "home_team_abbrev": "ATL", @@ -69393,8 +65538,7 @@ "canonical_id": "game_mlb_2026_20260430_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:35p", + "game_datetime_utc": "2026-04-30T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -69411,8 +65555,7 @@ "canonical_id": "game_mlb_2026_20260430_hou_bal", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:35p", + "game_datetime_utc": "2026-04-30T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Houston Astros", "home_team_abbrev": "BAL", @@ -69429,8 +65572,7 @@ "canonical_id": "game_mlb_2026_20260430_col_cin", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:40p", + "game_datetime_utc": "2026-04-30T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Colorado Rockies", "home_team_abbrev": "CIN", @@ -69447,8 +65589,7 @@ "canonical_id": "game_mlb_2026_20260430_sf_phi", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "1:05p", + "game_datetime_utc": "2026-04-30T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Francisco Giants", "home_team_abbrev": "PHI", @@ -69465,8 +65606,7 @@ "canonical_id": "game_mlb_2026_20260430_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "1:10p", + "game_datetime_utc": "2026-04-30T17:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -69483,8 +65623,7 @@ "canonical_id": "game_mlb_2026_20260430_ari_mil", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:40p", + "game_datetime_utc": "2026-04-30T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIL", @@ -69501,8 +65640,7 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "12:05p", + "game_datetime_utc": "2026-04-30T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Kansas City Royals", "home_team_abbrev": "OAK", @@ -69519,8 +65657,7 @@ "canonical_id": "game_mlb_2026_20260430_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-04-30", - "time": "6:40p", + "game_datetime_utc": "2026-04-30T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69537,8 +65674,7 @@ "canonical_id": "game_mlb_2026_20260501_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "1:20p", + "game_datetime_utc": "2026-05-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -69555,8 +65691,7 @@ "canonical_id": "game_mlb_2026_20260501_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-01T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -69573,8 +65708,7 @@ "canonical_id": "game_mlb_2026_20260501_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-01T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -69591,8 +65725,7 @@ "canonical_id": "game_mlb_2026_20260501_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:45p", + "game_datetime_utc": "2026-05-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -69609,8 +65742,7 @@ "canonical_id": "game_mlb_2026_20260501_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:05p", + "game_datetime_utc": "2026-05-01T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -69627,8 +65759,7 @@ "canonical_id": "game_mlb_2026_20260501_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -69645,8 +65776,7 @@ "canonical_id": "game_mlb_2026_20260501_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -69663,8 +65793,7 @@ "canonical_id": "game_mlb_2026_20260501_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-01T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -69681,8 +65810,7 @@ "canonical_id": "game_nwsl_2026_20260502_sea_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-01", - "time": "7p", + "game_datetime_utc": "2026-05-02T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "HOU", @@ -69699,8 +65827,7 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:10p", + "game_datetime_utc": "2026-05-02T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69717,8 +65844,7 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "7:15p", + "game_datetime_utc": "2026-05-02T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -69735,8 +65861,7 @@ "canonical_id": "game_mlb_2026_20260502_atl_col", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -69753,8 +65878,7 @@ "canonical_id": "game_mlb_2026_20260502_nym_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:38p", + "game_datetime_utc": "2026-05-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -69771,8 +65895,7 @@ "canonical_id": "game_mlb_2026_20260502_chw_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -69789,8 +65912,7 @@ "canonical_id": "game_mlb_2026_20260502_cle_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -69807,8 +65929,7 @@ "canonical_id": "game_mlb_2026_20260502_kc_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-01", - "time": "6:40p", + "game_datetime_utc": "2026-05-02T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -69825,8 +65946,7 @@ "canonical_id": "game_mls_2026_20260502_sj_tor", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "1p", + "game_datetime_utc": "2026-05-02T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "TOR", @@ -69843,8 +65963,7 @@ "canonical_id": "game_mlb_2026_20260502_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:35p", + "game_datetime_utc": "2026-05-02T17:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -69861,8 +65980,7 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:10p", + "game_datetime_utc": "2026-05-02T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -69879,8 +65997,7 @@ "canonical_id": "game_mlb_2026_20260502_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:20p", + "game_datetime_utc": "2026-05-02T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -69897,8 +66014,7 @@ "canonical_id": "game_mls_2026_20260502_sea_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "1:30p", + "game_datetime_utc": "2026-05-02T18:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SKC", @@ -69915,8 +66031,7 @@ "canonical_id": "game_nwsl_2026_20260502_wsh_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "4p", + "game_datetime_utc": "2026-05-02T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Washington Washington Spirit", "home_team_abbrev": "ORL", @@ -69933,8 +66048,7 @@ "canonical_id": "game_mlb_2026_20260502_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -69951,8 +66065,7 @@ "canonical_id": "game_mlb_2026_20260502_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -69969,8 +66082,7 @@ "canonical_id": "game_mlb_2026_20260502_cle_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "1:05p", + "game_datetime_utc": "2026-05-02T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -69987,8 +66099,7 @@ "canonical_id": "game_mlb_2026_20260502_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:10p", + "game_datetime_utc": "2026-05-02T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70005,8 +66116,7 @@ "canonical_id": "game_mlb_2026_20260502_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "4:10p", + "game_datetime_utc": "2026-05-02T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -70023,8 +66133,7 @@ "canonical_id": "game_mls_2026_20260502_por_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "2:30p", + "game_datetime_utc": "2026-05-02T20:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SLC", @@ -70041,8 +66150,7 @@ "canonical_id": "game_mlb_2026_20260502_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:10p", + "game_datetime_utc": "2026-05-02T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -70059,8 +66167,7 @@ "canonical_id": "game_nwsl_2026_20260502_kcc_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "6:30p", + "game_datetime_utc": "2026-05-02T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "NCC", @@ -70077,8 +66184,7 @@ "canonical_id": "game_mls_2026_20260502_orl_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7p", + "game_datetime_utc": "2026-05-02T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Orlando Orlando City", "home_team_abbrev": "MIA", @@ -70095,8 +66201,7 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:15p", + "game_datetime_utc": "2026-05-02T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -70113,8 +66218,7 @@ "canonical_id": "game_mlb_2026_20260502_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "7:15p", + "game_datetime_utc": "2026-05-02T23:15:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -70131,8 +66235,7 @@ "canonical_id": "game_mls_2026_20260502_min_clb", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "CLB", @@ -70149,8 +66252,7 @@ "canonical_id": "game_mls_2026_20260502_clt_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "NE", @@ -70167,8 +66269,7 @@ "canonical_id": "game_mls_2026_20260502_dal_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Dallas FC Dallas", "home_team_abbrev": "RB", @@ -70185,8 +66286,7 @@ "canonical_id": "game_mls_2026_20260502_nsh_phi", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Nashville Nashville SC", "home_team_abbrev": "PHI", @@ -70203,8 +66303,7 @@ "canonical_id": "game_mls_2026_20260502_mtl_atl", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-02T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Montreal CF Montreal", "home_team_abbrev": "ATL", @@ -70221,8 +66320,7 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:10p", + "game_datetime_utc": "2026-05-03T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -70239,8 +66337,7 @@ "canonical_id": "game_mls_2026_20260503_col_hou", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "HOU", @@ -70257,8 +66354,7 @@ "canonical_id": "game_mls_2026_20260503_cin_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CHI", @@ -70275,8 +66371,7 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "5:40p", + "game_datetime_utc": "2026-05-03T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -70293,8 +66388,7 @@ "canonical_id": "game_nwsl_2026_20260503_uta_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-02", - "time": "5:45p", + "game_datetime_utc": "2026-05-03T00:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "ANG", @@ -70311,8 +66405,7 @@ "canonical_id": "game_mls_2026_20260503_lafc_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "6:30p", + "game_datetime_utc": "2026-05-03T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SD", @@ -70329,8 +66422,7 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:38p", + "game_datetime_utc": "2026-05-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -70347,8 +66439,7 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-02", - "time": "6:40p", + "game_datetime_utc": "2026-05-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -70365,8 +66456,7 @@ "canonical_id": "game_mls_2026_20260503_van_lag", "sport": "MLS", "season": "2026", - "date": "2026-05-02", - "time": "7:30p", + "game_datetime_utc": "2026-05-03T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "LAG", @@ -70383,8 +66473,7 @@ "canonical_id": "game_mlb_2026_20260503_tor_min", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "11:35a", + "game_datetime_utc": "2026-05-03T16:35:00Z", "home_team": "Minnesota Twins", "away_team": "Toronto Blue Jays", "home_team_abbrev": "MIN", @@ -70401,8 +66490,7 @@ "canonical_id": "game_nwsl_2026_20260503_por_chi", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "12p", + "game_datetime_utc": "2026-05-03T17:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Portland Portland Thorns", "home_team_abbrev": "CHI", @@ -70419,8 +66507,7 @@ "canonical_id": "game_mlb_2026_20260503_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -70437,8 +66524,7 @@ "canonical_id": "game_mlb_2026_20260503_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -70455,8 +66541,7 @@ "canonical_id": "game_mlb_2026_20260503_mil_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "WSN", @@ -70473,8 +66558,7 @@ "canonical_id": "game_mlb_2026_20260503_hou_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:35p", + "game_datetime_utc": "2026-05-03T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Houston Astros", "home_team_abbrev": "BOS", @@ -70491,8 +66575,7 @@ "canonical_id": "game_mlb_2026_20260503_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:40p", + "game_datetime_utc": "2026-05-03T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70509,8 +66592,7 @@ "canonical_id": "game_mlb_2026_20260503_sf_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:40p", + "game_datetime_utc": "2026-05-03T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Francisco Giants", "home_team_abbrev": "TB", @@ -70527,8 +66609,7 @@ "canonical_id": "game_mlb_2026_20260503_lad_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:15p", + "game_datetime_utc": "2026-05-03T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "STL", @@ -70545,8 +66626,7 @@ "canonical_id": "game_mlb_2026_20260503_ari_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:20p", + "game_datetime_utc": "2026-05-03T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CHC", @@ -70563,8 +66643,7 @@ "canonical_id": "game_nwsl_2026_20260503_den_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "3p", + "game_datetime_utc": "2026-05-03T19:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "BOS", @@ -70581,8 +66660,7 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Atlanta Braves", "home_team_abbrev": "COL", @@ -70599,8 +66677,7 @@ "canonical_id": "game_mlb_2026_20260503_cle_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:05p", + "game_datetime_utc": "2026-05-03T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Cleveland Guardians", "home_team_abbrev": "OAK", @@ -70617,8 +66694,7 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:07p", + "game_datetime_utc": "2026-05-03T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Mets", "home_team_abbrev": "LAA", @@ -70635,8 +66711,7 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Kansas City Royals", "home_team_abbrev": "SEA", @@ -70653,8 +66728,7 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "1:10p", + "game_datetime_utc": "2026-05-03T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Chicago White Sox", "home_team_abbrev": "SD", @@ -70671,8 +66745,7 @@ "canonical_id": "game_mls_2026_20260503_dc_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-03", - "time": "4:30p", + "game_datetime_utc": "2026-05-03T20:30:00Z", "home_team": "New York New York City FC", "away_team": "Washington D.C. United", "home_team_abbrev": "NYC", @@ -70689,8 +66762,7 @@ "canonical_id": "game_nwsl_2026_20260503_rgn_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "5p", + "game_datetime_utc": "2026-05-03T21:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "NJY", @@ -70707,8 +66779,7 @@ "canonical_id": "game_mls_2026_20260503_stl_aus", "sport": "MLS", "season": "2026", - "date": "2026-05-03", - "time": "6p", + "game_datetime_utc": "2026-05-03T23:00:00Z", "home_team": "Austin Austin FC", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "AUS", @@ -70725,8 +66796,7 @@ "canonical_id": "game_nwsl_2026_20260503_bay_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-03", - "time": "4p", + "game_datetime_utc": "2026-05-03T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "San Francisco Bay FC", "home_team_abbrev": "SDW", @@ -70743,8 +66813,7 @@ "canonical_id": "game_mlb_2026_20260503_tex_det", "sport": "MLB", "season": "2026", - "date": "2026-05-03", - "time": "7:20p", + "game_datetime_utc": "2026-05-03T23:20:00Z", "home_team": "Detroit Tigers", "away_team": "Texas Rangers", "home_team_abbrev": "DET", @@ -70761,8 +66830,7 @@ "canonical_id": "game_mlb_2026_20260504_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -70779,8 +66847,7 @@ "canonical_id": "game_mlb_2026_20260504_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -70797,8 +66864,7 @@ "canonical_id": "game_mlb_2026_20260504_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -70815,8 +66881,7 @@ "canonical_id": "game_mlb_2026_20260504_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "7:05p", + "game_datetime_utc": "2026-05-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -70833,8 +66898,7 @@ "canonical_id": "game_mlb_2026_20260504_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -70851,8 +66915,7 @@ "canonical_id": "game_mlb_2026_20260504_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-04T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -70869,8 +66932,7 @@ "canonical_id": "game_mlb_2026_20260504_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:45p", + "game_datetime_utc": "2026-05-04T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -70887,8 +66949,7 @@ "canonical_id": "game_mlb_2026_20260505_lad_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "7:10p", + "game_datetime_utc": "2026-05-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -70905,8 +66966,7 @@ "canonical_id": "game_mlb_2026_20260505_nym_col", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -70923,8 +66983,7 @@ "canonical_id": "game_mlb_2026_20260505_chw_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:38p", + "game_datetime_utc": "2026-05-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -70941,8 +67000,7 @@ "canonical_id": "game_mlb_2026_20260505_atl_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -70959,8 +67017,7 @@ "canonical_id": "game_mlb_2026_20260505_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-04", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -70977,8 +67034,7 @@ "canonical_id": "game_mlb_2026_20260505_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -70995,8 +67051,7 @@ "canonical_id": "game_mlb_2026_20260505_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -71013,8 +67068,7 @@ "canonical_id": "game_mlb_2026_20260505_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -71031,8 +67085,7 @@ "canonical_id": "game_mlb_2026_20260505_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71049,8 +67102,7 @@ "canonical_id": "game_mlb_2026_20260505_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71067,8 +67119,7 @@ "canonical_id": "game_mlb_2026_20260505_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "7:05p", + "game_datetime_utc": "2026-05-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71085,8 +67136,7 @@ "canonical_id": "game_mlb_2026_20260505_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71103,8 +67153,7 @@ "canonical_id": "game_mlb_2026_20260505_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-05T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71121,8 +67170,7 @@ "canonical_id": "game_mlb_2026_20260505_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-05T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -71139,8 +67187,7 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "7:10p", + "game_datetime_utc": "2026-05-06T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -71157,8 +67204,7 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -71175,8 +67221,7 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:38p", + "game_datetime_utc": "2026-05-06T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -71193,8 +67238,7 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -71211,8 +67255,7 @@ "canonical_id": "game_mlb_2026_20260506_pit_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71229,8 +67272,7 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-05", - "time": "6:45p", + "game_datetime_utc": "2026-05-06T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -71247,8 +67289,7 @@ "canonical_id": "game_mlb_2026_20260506_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -71265,8 +67306,7 @@ "canonical_id": "game_mlb_2026_20260506_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "12:15p", + "game_datetime_utc": "2026-05-06T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -71283,8 +67323,7 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T18:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "HOU", @@ -71301,8 +67340,7 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "New York Mets", "home_team_abbrev": "COL", @@ -71319,8 +67357,7 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "12:45p", + "game_datetime_utc": "2026-05-06T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -71337,8 +67374,7 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:07p", + "game_datetime_utc": "2026-05-06T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Chicago White Sox", "home_team_abbrev": "LAA", @@ -71355,8 +67391,7 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "1:10p", + "game_datetime_utc": "2026-05-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Atlanta Braves", "home_team_abbrev": "SEA", @@ -71373,8 +67408,7 @@ "canonical_id": "game_mlb_2026_20260506_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -71391,8 +67425,7 @@ "canonical_id": "game_mlb_2026_20260506_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71409,8 +67442,7 @@ "canonical_id": "game_mlb_2026_20260506_bos_det", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Boston Red Sox", "home_team_abbrev": "DET", @@ -71427,8 +67459,7 @@ "canonical_id": "game_mlb_2026_20260506_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:45p", + "game_datetime_utc": "2026-05-06T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71445,8 +67476,7 @@ "canonical_id": "game_mlb_2026_20260506_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "7:05p", + "game_datetime_utc": "2026-05-06T23:05:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71463,8 +67493,7 @@ "canonical_id": "game_mls_2026_20260506_lafc_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-06", - "time": "7:30p", + "game_datetime_utc": "2026-05-06T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "NYC", @@ -71481,8 +67510,7 @@ "canonical_id": "game_mlb_2026_20260506_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71499,8 +67527,7 @@ "canonical_id": "game_mlb_2026_20260506_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-06T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71517,8 +67544,7 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-06", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71535,8 +67561,7 @@ "canonical_id": "game_nwsl_2026_20260507_hou_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-06", - "time": "8p", + "game_datetime_utc": "2026-05-07T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Houston Houston Dash", "home_team_abbrev": "UTA", @@ -71553,8 +67578,7 @@ "canonical_id": "game_mlb_2026_20260507_tex_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "12:35p", + "game_datetime_utc": "2026-05-07T16:35:00Z", "home_team": "New York Yankees", "away_team": "Texas Rangers", "home_team_abbrev": "NYY", @@ -71571,8 +67595,7 @@ "canonical_id": "game_mlb_2026_20260507_min_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:05p", + "game_datetime_utc": "2026-05-07T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Minnesota Twins", "home_team_abbrev": "WSN", @@ -71589,8 +67612,7 @@ "canonical_id": "game_mlb_2026_20260507_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:10p", + "game_datetime_utc": "2026-05-07T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -71607,8 +67629,7 @@ "canonical_id": "game_mlb_2026_20260507_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "1:20p", + "game_datetime_utc": "2026-05-07T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -71625,8 +67646,7 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "12:40p", + "game_datetime_utc": "2026-05-07T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ARI", @@ -71643,8 +67663,7 @@ "canonical_id": "game_mlb_2026_20260507_bal_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIA", @@ -71661,8 +67680,7 @@ "canonical_id": "game_mlb_2026_20260507_oak_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "6:40p", + "game_datetime_utc": "2026-05-07T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Oakland Athletics", "home_team_abbrev": "PHI", @@ -71679,8 +67697,7 @@ "canonical_id": "game_mlb_2026_20260507_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "7:10p", + "game_datetime_utc": "2026-05-07T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -71697,8 +67714,7 @@ "canonical_id": "game_mlb_2026_20260508_stl_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-07", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T02:10:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -71715,8 +67731,7 @@ "canonical_id": "game_nwsl_2026_20260508_por_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-08", - "time": "6:30p", + "game_datetime_utc": "2026-05-08T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Portland Portland Thorns", "home_team_abbrev": "RGN", @@ -71733,8 +67748,7 @@ "canonical_id": "game_mlb_2026_20260508_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -71751,8 +67765,7 @@ "canonical_id": "game_mlb_2026_20260508_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -71769,8 +67782,7 @@ "canonical_id": "game_mlb_2026_20260508_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:05p", + "game_datetime_utc": "2026-05-08T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -71787,8 +67799,7 @@ "canonical_id": "game_mlb_2026_20260508_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:07p", + "game_datetime_utc": "2026-05-08T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -71805,8 +67816,7 @@ "canonical_id": "game_mlb_2026_20260508_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -71823,8 +67833,7 @@ "canonical_id": "game_mlb_2026_20260508_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -71841,8 +67850,7 @@ "canonical_id": "game_mlb_2026_20260508_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-08T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -71859,8 +67867,7 @@ "canonical_id": "game_wnba_2026_20260508_con_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-08", - "time": "7:30p", + "game_datetime_utc": "2026-05-08T23:30:00Z", "home_team": "New York Liberty", "away_team": "Connecticut Sun", "home_team_abbrev": "NY", @@ -71877,8 +67884,7 @@ "canonical_id": "game_mlb_2026_20260508_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -71895,8 +67901,7 @@ "canonical_id": "game_mlb_2026_20260508_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -71913,8 +67918,7 @@ "canonical_id": "game_mlb_2026_20260508_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-08T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -71931,8 +67935,7 @@ "canonical_id": "game_nwsl_2026_20260509_ncc_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-08", - "time": "8p", + "game_datetime_utc": "2026-05-09T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "ORL", @@ -71949,8 +67952,7 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:05p", + "game_datetime_utc": "2026-05-09T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -71967,8 +67969,7 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-09T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -71985,8 +67986,7 @@ "canonical_id": "game_mlb_2026_20260509_stl_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "6:40p", + "game_datetime_utc": "2026-05-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72003,8 +68003,7 @@ "canonical_id": "game_wnba_2026_20260509_gsv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-08", - "time": "7p", + "game_datetime_utc": "2026-05-09T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Golden State Valkyries", "home_team_abbrev": "SEA", @@ -72021,8 +68020,7 @@ "canonical_id": "game_mlb_2026_20260509_atl_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:10p", + "game_datetime_utc": "2026-05-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72039,8 +68037,7 @@ "canonical_id": "game_mlb_2026_20260509_pit_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-08", - "time": "7:15p", + "game_datetime_utc": "2026-05-09T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72057,8 +68054,7 @@ "canonical_id": "game_mls_2026_20260509_mia_tor", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "1p", + "game_datetime_utc": "2026-05-09T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Miami Inter Miami", "home_team_abbrev": "TOR", @@ -72075,8 +68071,7 @@ "canonical_id": "game_wnba_2026_20260509_dal_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-09", - "time": "1p", + "game_datetime_utc": "2026-05-09T17:00:00Z", "home_team": "Indiana Fever", "away_team": "Dallas Wings", "home_team_abbrev": "IND", @@ -72093,8 +68088,7 @@ "canonical_id": "game_mls_2026_20260509_ny_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "1:30p", + "game_datetime_utc": "2026-05-09T18:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CHI", @@ -72111,8 +68105,7 @@ "canonical_id": "game_mlb_2026_20260509_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "3:07p", + "game_datetime_utc": "2026-05-09T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -72129,8 +68122,7 @@ "canonical_id": "game_wnba_2026_20260509_phx_lv", "sport": "WNBA", "season": "2026", - "date": "2026-05-09", - "time": "12:30p", + "game_datetime_utc": "2026-05-09T19:30:00Z", "home_team": "Las Vegas Aces", "away_team": "Phoenix Mercury", "home_team_abbrev": "LV", @@ -72147,8 +68139,7 @@ "canonical_id": "game_mlb_2026_20260509_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:05p", + "game_datetime_utc": "2026-05-09T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -72165,8 +68156,7 @@ "canonical_id": "game_mlb_2026_20260509_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -72183,8 +68173,7 @@ "canonical_id": "game_mlb_2026_20260509_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -72201,8 +68190,7 @@ "canonical_id": "game_mlb_2026_20260509_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:10p", + "game_datetime_utc": "2026-05-09T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -72219,8 +68207,7 @@ "canonical_id": "game_mls_2026_20260509_orl_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "4:30p", + "game_datetime_utc": "2026-05-09T20:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Orlando Orlando City", "home_team_abbrev": "MTL", @@ -72237,8 +68224,7 @@ "canonical_id": "game_mlb_2026_20260509_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-09T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -72255,8 +68241,7 @@ "canonical_id": "game_mlb_2026_20260509_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -72273,8 +68258,7 @@ "canonical_id": "game_nwsl_2026_20260509_bos_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "6:30p", + "game_datetime_utc": "2026-05-09T22:30:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "NJY", @@ -72291,8 +68275,7 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-09T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -72309,8 +68292,7 @@ "canonical_id": "game_mlb_2026_20260509_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -72327,8 +68309,7 @@ "canonical_id": "game_mlb_2026_20260509_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -72345,8 +68326,7 @@ "canonical_id": "game_mlb_2026_20260509_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-09T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -72363,8 +68343,7 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:15p", + "game_datetime_utc": "2026-05-09T23:15:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -72381,8 +68360,7 @@ "canonical_id": "game_mlb_2026_20260509_stl_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "4:15p", + "game_datetime_utc": "2026-05-09T23:15:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72399,8 +68377,7 @@ "canonical_id": "game_mls_2026_20260509_phi_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NE", @@ -72417,8 +68394,7 @@ "canonical_id": "game_mls_2026_20260509_cin_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CLT", @@ -72435,8 +68411,7 @@ "canonical_id": "game_mls_2026_20260509_lag_atl", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-09T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "ATL", @@ -72453,8 +68428,7 @@ "canonical_id": "game_nwsl_2026_20260510_den_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "7p", + "game_datetime_utc": "2026-05-10T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "HOU", @@ -72471,8 +68445,7 @@ "canonical_id": "game_mls_2026_20260510_slc_dal", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "DAL", @@ -72489,8 +68462,7 @@ "canonical_id": "game_nwsl_2026_20260510_sdw_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-09", - "time": "5:45p", + "game_datetime_utc": "2026-05-10T00:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "ANG", @@ -72507,8 +68479,7 @@ "canonical_id": "game_mls_2026_20260510_dc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "8p", + "game_datetime_utc": "2026-05-10T01:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Washington D.C. United", "home_team_abbrev": "NSH", @@ -72525,8 +68496,7 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:05p", + "game_datetime_utc": "2026-05-10T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72543,8 +68513,7 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-05-09", - "time": "6:10p", + "game_datetime_utc": "2026-05-10T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72561,8 +68530,7 @@ "canonical_id": "game_mls_2026_20260510_stl_col", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "COL", @@ -72579,8 +68547,7 @@ "canonical_id": "game_mls_2026_20260510_sd_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "San Diego San Diego FC", "home_team_abbrev": "SEA", @@ -72597,8 +68564,7 @@ "canonical_id": "game_mls_2026_20260510_skc_por", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "POR", @@ -72615,8 +68581,7 @@ "canonical_id": "game_mls_2026_20260510_van_sj", "sport": "MLS", "season": "2026", - "date": "2026-05-09", - "time": "7:30p", + "game_datetime_utc": "2026-05-10T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SJ", @@ -72633,8 +68598,7 @@ "canonical_id": "game_mlb_2026_20260510_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "12:10p", + "game_datetime_utc": "2026-05-10T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -72651,8 +68615,7 @@ "canonical_id": "game_nwsl_2026_20260510_chi_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "11:30a", + "game_datetime_utc": "2026-05-10T16:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "KCC", @@ -72669,8 +68632,7 @@ "canonical_id": "game_wnba_2026_20260510_sea_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "1p", + "game_datetime_utc": "2026-05-10T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "Seattle Storm", "home_team_abbrev": "CON", @@ -72687,8 +68649,7 @@ "canonical_id": "game_mlb_2026_20260510_oak_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Oakland Athletics", "home_team_abbrev": "BAL", @@ -72705,8 +68666,7 @@ "canonical_id": "game_mlb_2026_20260510_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -72723,8 +68683,7 @@ "canonical_id": "game_mlb_2026_20260510_col_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Colorado Rockies", "home_team_abbrev": "PHI", @@ -72741,8 +68700,7 @@ "canonical_id": "game_mlb_2026_20260510_laa_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:37p", + "game_datetime_utc": "2026-05-10T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TOR", @@ -72759,8 +68717,7 @@ "canonical_id": "game_mlb_2026_20260510_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:40p", + "game_datetime_utc": "2026-05-10T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -72777,8 +68734,7 @@ "canonical_id": "game_mlb_2026_20260510_hou_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:40p", + "game_datetime_utc": "2026-05-10T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Houston Astros", "home_team_abbrev": "CIN", @@ -72795,8 +68751,7 @@ "canonical_id": "game_mlb_2026_20260510_nyy_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Yankees", "home_team_abbrev": "MIL", @@ -72813,8 +68768,7 @@ "canonical_id": "game_mlb_2026_20260510_sea_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "CHW", @@ -72831,8 +68785,7 @@ "canonical_id": "game_mlb_2026_20260510_chc_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:35p", + "game_datetime_utc": "2026-05-10T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Chicago Cubs", "home_team_abbrev": "TEX", @@ -72849,8 +68802,7 @@ "canonical_id": "game_wnba_2026_20260510_ny_was", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "3p", + "game_datetime_utc": "2026-05-10T19:00:00Z", "home_team": "Washington Mystics", "away_team": "New York Liberty", "home_team_abbrev": "WAS", @@ -72867,8 +68819,7 @@ "canonical_id": "game_nwsl_2026_20260510_uta_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "1p", + "game_datetime_utc": "2026-05-10T20:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "BAY", @@ -72885,8 +68836,7 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:05p", + "game_datetime_utc": "2026-05-10T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SF", @@ -72903,8 +68853,7 @@ "canonical_id": "game_mlb_2026_20260510_nym_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Mets", "home_team_abbrev": "ARI", @@ -72921,8 +68870,7 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Atlanta Braves", "home_team_abbrev": "LAD", @@ -72939,8 +68887,7 @@ "canonical_id": "game_mlb_2026_20260510_stl_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "1:10p", + "game_datetime_utc": "2026-05-10T20:10:00Z", "home_team": "San Diego Padres", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SD", @@ -72957,8 +68904,7 @@ "canonical_id": "game_mls_2026_20260510_clb_nyc", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "4:30p", + "game_datetime_utc": "2026-05-10T20:30:00Z", "home_team": "New York New York City FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NYC", @@ -72975,8 +68921,7 @@ "canonical_id": "game_wnba_2026_20260510_lv_la", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "3p", + "game_datetime_utc": "2026-05-10T22:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Las Vegas Aces", "home_team_abbrev": "LA", @@ -72993,8 +68938,7 @@ "canonical_id": "game_mls_2026_20260510_aus_min", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Austin Austin FC", "home_team_abbrev": "MIN", @@ -73011,8 +68955,7 @@ "canonical_id": "game_nwsl_2026_20260510_wsh_sea", "sport": "NWSL", "season": "2026", - "date": "2026-05-10", - "time": "4p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Washington Washington Spirit", "home_team_abbrev": "SEA", @@ -73029,8 +68972,7 @@ "canonical_id": "game_wnba_2026_20260510_atl_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-10T23:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Atlanta Dream", "home_team_abbrev": "MIN", @@ -73047,8 +68989,7 @@ "canonical_id": "game_mlb_2026_20260510_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-10", - "time": "6:20p", + "game_datetime_utc": "2026-05-10T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -73065,8 +69006,7 @@ "canonical_id": "game_wnba_2026_20260511_phx_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-10", - "time": "5:30p", + "game_datetime_utc": "2026-05-11T00:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Phoenix Mercury", "home_team_abbrev": "GSV", @@ -73083,8 +69023,7 @@ "canonical_id": "game_mls_2026_20260511_hou_lafc", "sport": "MLS", "season": "2026", - "date": "2026-05-10", - "time": "6p", + "game_datetime_utc": "2026-05-11T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "LAFC", @@ -73101,8 +69040,7 @@ "canonical_id": "game_mlb_2026_20260511_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "6:10p", + "game_datetime_utc": "2026-05-11T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73119,8 +69057,7 @@ "canonical_id": "game_mlb_2026_20260511_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "6:35p", + "game_datetime_utc": "2026-05-11T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73137,8 +69074,7 @@ "canonical_id": "game_mlb_2026_20260511_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:07p", + "game_datetime_utc": "2026-05-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73155,8 +69091,7 @@ "canonical_id": "game_mlb_2026_20260512_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:05p", + "game_datetime_utc": "2026-05-12T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73173,8 +69108,7 @@ "canonical_id": "game_mlb_2026_20260512_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73191,8 +69125,7 @@ "canonical_id": "game_mlb_2026_20260512_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-11", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -73209,8 +69142,7 @@ "canonical_id": "game_mlb_2026_20260512_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:10p", + "game_datetime_utc": "2026-05-12T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73227,8 +69159,7 @@ "canonical_id": "game_mlb_2026_20260512_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:35p", + "game_datetime_utc": "2026-05-12T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73245,8 +69176,7 @@ "canonical_id": "game_mlb_2026_20260512_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -73263,8 +69193,7 @@ "canonical_id": "game_mlb_2026_20260512_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -73281,8 +69210,7 @@ "canonical_id": "game_mlb_2026_20260512_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:45p", + "game_datetime_utc": "2026-05-12T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -73299,8 +69227,7 @@ "canonical_id": "game_mlb_2026_20260512_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:07p", + "game_datetime_utc": "2026-05-12T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73317,8 +69244,7 @@ "canonical_id": "game_mlb_2026_20260512_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-12T23:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -73335,8 +69261,7 @@ "canonical_id": "game_mlb_2026_20260512_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:15p", + "game_datetime_utc": "2026-05-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -73353,8 +69278,7 @@ "canonical_id": "game_mlb_2026_20260512_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -73371,8 +69295,7 @@ "canonical_id": "game_mlb_2026_20260512_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -73389,8 +69312,7 @@ "canonical_id": "game_mlb_2026_20260512_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-12T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -73407,8 +69329,7 @@ "canonical_id": "game_nwsl_2026_20260513_orl_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-12", - "time": "8p", + "game_datetime_utc": "2026-05-13T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "BOS", @@ -73425,8 +69346,7 @@ "canonical_id": "game_wnba_2026_20260513_atl_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-12", - "time": "7p", + "game_datetime_utc": "2026-05-13T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Atlanta Dream", "home_team_abbrev": "DAL", @@ -73443,8 +69363,7 @@ "canonical_id": "game_mlb_2026_20260513_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:05p", + "game_datetime_utc": "2026-05-13T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73461,8 +69380,7 @@ "canonical_id": "game_mlb_2026_20260513_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73479,8 +69397,7 @@ "canonical_id": "game_mlb_2026_20260513_stl_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -73497,8 +69414,7 @@ "canonical_id": "game_wnba_2026_20260513_min_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-12", - "time": "10p", + "game_datetime_utc": "2026-05-13T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Minnesota Lynx", "home_team_abbrev": "PHX", @@ -73515,8 +69431,7 @@ "canonical_id": "game_mlb_2026_20260513_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-12", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -73533,8 +69448,7 @@ "canonical_id": "game_mlb_2026_20260513_laa_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "1:10p", + "game_datetime_utc": "2026-05-13T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Los Angeles Angels", "home_team_abbrev": "CLE", @@ -73551,8 +69465,7 @@ "canonical_id": "game_mlb_2026_20260513_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:35p", + "game_datetime_utc": "2026-05-13T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -73569,8 +69482,7 @@ "canonical_id": "game_mlb_2026_20260513_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -73587,8 +69499,7 @@ "canonical_id": "game_mlb_2026_20260513_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -73605,8 +69516,7 @@ "canonical_id": "game_mlb_2026_20260513_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:45p", + "game_datetime_utc": "2026-05-13T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -73623,8 +69533,7 @@ "canonical_id": "game_mls_2026_20260513_nyc_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-13T23:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New York New York City FC", "home_team_abbrev": "CLT", @@ -73641,8 +69550,7 @@ "canonical_id": "game_mlb_2026_20260513_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:07p", + "game_datetime_utc": "2026-05-13T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -73659,8 +69567,7 @@ "canonical_id": "game_mlb_2026_20260513_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-13T23:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -73677,8 +69584,7 @@ "canonical_id": "game_mlb_2026_20260513_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:15p", + "game_datetime_utc": "2026-05-13T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -73695,8 +69601,7 @@ "canonical_id": "game_mls_2026_20260513_nsh_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Nashville Nashville SC", "home_team_abbrev": "NE", @@ -73713,8 +69618,7 @@ "canonical_id": "game_mls_2026_20260513_clb_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "RB", @@ -73731,8 +69635,7 @@ "canonical_id": "game_mls_2026_20260513_phi_orl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "ORL", @@ -73749,8 +69652,7 @@ "canonical_id": "game_mls_2026_20260513_por_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MTL", @@ -73767,8 +69669,7 @@ "canonical_id": "game_mls_2026_20260513_chi_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "DC", @@ -73785,8 +69686,7 @@ "canonical_id": "game_mls_2026_20260513_mia_cin", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-13T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Miami Inter Miami", "home_team_abbrev": "CIN", @@ -73803,8 +69703,7 @@ "canonical_id": "game_mlb_2026_20260513_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -73821,8 +69720,7 @@ "canonical_id": "game_mlb_2026_20260513_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -73839,8 +69737,7 @@ "canonical_id": "game_mlb_2026_20260513_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-13T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -73857,8 +69754,7 @@ "canonical_id": "game_wnba_2026_20260514_lv_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "8p", + "game_datetime_utc": "2026-05-14T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Las Vegas Aces", "home_team_abbrev": "CON", @@ -73875,8 +69771,7 @@ "canonical_id": "game_mlb_2026_20260514_ari_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:05p", + "game_datetime_utc": "2026-05-14T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TEX", @@ -73893,8 +69788,7 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-14T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -73911,8 +69805,7 @@ "canonical_id": "game_mls_2026_20260514_van_dal", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "DAL", @@ -73929,8 +69822,7 @@ "canonical_id": "game_mls_2026_20260514_lafc_stl", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "STL", @@ -73947,8 +69839,7 @@ "canonical_id": "game_mls_2026_20260514_lag_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SKC", @@ -73965,8 +69856,7 @@ "canonical_id": "game_mls_2026_20260514_col_min", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "MIN", @@ -73983,8 +69873,7 @@ "canonical_id": "game_mls_2026_20260514_hou_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "7:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SLC", @@ -74001,8 +69890,7 @@ "canonical_id": "game_mls_2026_20260514_sj_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "6:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SEA", @@ -74019,8 +69907,7 @@ "canonical_id": "game_mls_2026_20260514_aus_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-13", - "time": "6:30p", + "game_datetime_utc": "2026-05-14T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Austin Austin FC", "home_team_abbrev": "SD", @@ -74037,8 +69924,7 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "6:40p", + "game_datetime_utc": "2026-05-14T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -74055,8 +69941,7 @@ "canonical_id": "game_wnba_2026_20260514_ind_la", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-14T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Indiana Fever", "home_team_abbrev": "LA", @@ -74073,8 +69958,7 @@ "canonical_id": "game_wnba_2026_20260514_chi_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-13", - "time": "7p", + "game_datetime_utc": "2026-05-14T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Chicago Sky", "home_team_abbrev": "GSV", @@ -74091,8 +69975,7 @@ "canonical_id": "game_mlb_2026_20260514_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-13", - "time": "7:10p", + "game_datetime_utc": "2026-05-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -74109,8 +69992,7 @@ "canonical_id": "game_mlb_2026_20260514_col_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:35p", + "game_datetime_utc": "2026-05-14T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Colorado Rockies", "home_team_abbrev": "PIT", @@ -74127,8 +70009,7 @@ "canonical_id": "game_mlb_2026_20260514_wsn_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Washington Nationals", "home_team_abbrev": "CIN", @@ -74145,8 +70026,7 @@ "canonical_id": "game_mlb_2026_20260514_det_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "1:10p", + "game_datetime_utc": "2026-05-14T17:10:00Z", "home_team": "New York Mets", "away_team": "Detroit Tigers", "home_team_abbrev": "NYM", @@ -74163,8 +70043,7 @@ "canonical_id": "game_mlb_2026_20260514_sd_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Diego Padres", "home_team_abbrev": "MIL", @@ -74181,8 +70060,7 @@ "canonical_id": "game_mlb_2026_20260514_mia_min", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:40p", + "game_datetime_utc": "2026-05-14T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Miami Marlins", "home_team_abbrev": "MIN", @@ -74199,8 +70077,7 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "1:10p", + "game_datetime_utc": "2026-05-14T18:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -74217,8 +70094,7 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "12:05p", + "game_datetime_utc": "2026-05-14T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "St. Louis Cardinals", "home_team_abbrev": "OAK", @@ -74235,8 +70111,7 @@ "canonical_id": "game_mlb_2026_20260514_phi_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "6:45p", + "game_datetime_utc": "2026-05-14T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BOS", @@ -74253,8 +70128,7 @@ "canonical_id": "game_mlb_2026_20260514_chc_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "7:15p", + "game_datetime_utc": "2026-05-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Chicago Cubs", "home_team_abbrev": "ATL", @@ -74271,8 +70145,7 @@ "canonical_id": "game_mlb_2026_20260514_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "6:40p", + "game_datetime_utc": "2026-05-14T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -74289,8 +70162,7 @@ "canonical_id": "game_wnba_2026_20260515_min_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-14", - "time": "7p", + "game_datetime_utc": "2026-05-15T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Minnesota Lynx", "home_team_abbrev": "DAL", @@ -74307,8 +70179,7 @@ "canonical_id": "game_mlb_2026_20260515_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-14", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -74325,8 +70196,7 @@ "canonical_id": "game_mlb_2026_20260515_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -74343,8 +70213,7 @@ "canonical_id": "game_mlb_2026_20260515_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -74361,8 +70230,7 @@ "canonical_id": "game_mlb_2026_20260515_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:45p", + "game_datetime_utc": "2026-05-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -74379,8 +70247,7 @@ "canonical_id": "game_mlb_2026_20260515_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -74397,8 +70264,7 @@ "canonical_id": "game_mlb_2026_20260515_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -74415,8 +70281,7 @@ "canonical_id": "game_mlb_2026_20260515_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-15T23:10:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -74433,8 +70298,7 @@ "canonical_id": "game_mlb_2026_20260515_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:15p", + "game_datetime_utc": "2026-05-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -74451,8 +70315,7 @@ "canonical_id": "game_wnba_2026_20260515_lv_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "7:30p", + "game_datetime_utc": "2026-05-15T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Las Vegas Aces", "home_team_abbrev": "CON", @@ -74469,8 +70332,7 @@ "canonical_id": "game_wnba_2026_20260515_was_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "7:30p", + "game_datetime_utc": "2026-05-15T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Washington Mystics", "home_team_abbrev": "IND", @@ -74487,8 +70349,7 @@ "canonical_id": "game_mlb_2026_20260515_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-15T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -74505,8 +70366,7 @@ "canonical_id": "game_nwsl_2026_20260516_hou_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Houston Houston Dash", "home_team_abbrev": "KCC", @@ -74523,8 +70383,7 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-16T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -74541,8 +70400,7 @@ "canonical_id": "game_mlb_2026_20260516_tex_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:10p", + "game_datetime_utc": "2026-05-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -74559,8 +70417,7 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -74577,8 +70434,7 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -74595,8 +70451,7 @@ "canonical_id": "game_mlb_2026_20260516_lad_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:38p", + "game_datetime_utc": "2026-05-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -74613,8 +70468,7 @@ "canonical_id": "game_mlb_2026_20260516_sf_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -74631,8 +70485,7 @@ "canonical_id": "game_mlb_2026_20260516_sd_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-15", - "time": "6:40p", + "game_datetime_utc": "2026-05-16T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -74649,8 +70502,7 @@ "canonical_id": "game_nwsl_2026_20260516_njy_sea", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "SEA", @@ -74667,8 +70519,7 @@ "canonical_id": "game_nwsl_2026_20260516_wsh_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Washington Washington Spirit", "home_team_abbrev": "SDW", @@ -74685,8 +70536,7 @@ "canonical_id": "game_nwsl_2026_20260516_bos_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-15", - "time": "7p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "BAY", @@ -74703,8 +70553,7 @@ "canonical_id": "game_wnba_2026_20260516_chi_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-15", - "time": "10p", + "game_datetime_utc": "2026-05-16T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Chicago Sky", "home_team_abbrev": "PHX", @@ -74721,8 +70570,7 @@ "canonical_id": "game_mlb_2026_20260516_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:10p", + "game_datetime_utc": "2026-05-16T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -74739,8 +70587,7 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:15p", + "game_datetime_utc": "2026-05-16T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -74757,8 +70604,7 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "1:10p", + "game_datetime_utc": "2026-05-16T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -74775,8 +70621,7 @@ "canonical_id": "game_mlb_2026_20260516_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:05p", + "game_datetime_utc": "2026-05-16T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -74793,8 +70638,7 @@ "canonical_id": "game_mlb_2026_20260516_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:05p", + "game_datetime_utc": "2026-05-16T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -74811,8 +70655,7 @@ "canonical_id": "game_mlb_2026_20260516_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:10p", + "game_datetime_utc": "2026-05-16T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -74829,8 +70672,7 @@ "canonical_id": "game_mls_2026_20260516_chi_mtl", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "4:30p", + "game_datetime_utc": "2026-05-16T20:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "MTL", @@ -74847,8 +70689,7 @@ "canonical_id": "game_mlb_2026_20260516_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -74865,8 +70706,7 @@ "canonical_id": "game_nwsl_2026_20260516_chi_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-05-16", - "time": "6:30p", + "game_datetime_utc": "2026-05-16T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "NCC", @@ -74883,8 +70723,7 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -74901,8 +70740,7 @@ "canonical_id": "game_mlb_2026_20260516_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -74919,8 +70757,7 @@ "canonical_id": "game_mlb_2026_20260516_tex_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:10p", + "game_datetime_utc": "2026-05-16T23:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -74937,8 +70774,7 @@ "canonical_id": "game_mlb_2026_20260516_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -74955,8 +70791,7 @@ "canonical_id": "game_mlb_2026_20260516_sd_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "4:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -74973,8 +70808,7 @@ "canonical_id": "game_mlb_2026_20260516_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "7:15p", + "game_datetime_utc": "2026-05-16T23:15:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -74991,8 +70825,7 @@ "canonical_id": "game_mls_2026_20260516_tor_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CLT", @@ -75009,8 +70842,7 @@ "canonical_id": "game_mls_2026_20260516_stl_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "DC", @@ -75027,8 +70859,7 @@ "canonical_id": "game_mls_2026_20260516_min_ne", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "NE", @@ -75045,8 +70876,7 @@ "canonical_id": "game_mls_2026_20260516_nyc_ny", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "New York New York City FC", "home_team_abbrev": "RB", @@ -75063,8 +70893,7 @@ "canonical_id": "game_mls_2026_20260516_atl_orl", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "ORL", @@ -75081,8 +70910,7 @@ "canonical_id": "game_mls_2026_20260516_clb_phi", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-16T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "PHI", @@ -75099,8 +70927,7 @@ "canonical_id": "game_mls_2026_20260517_skc_aus", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "AUS", @@ -75117,8 +70944,7 @@ "canonical_id": "game_mls_2026_20260517_van_hou", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "HOU", @@ -75135,8 +70961,7 @@ "canonical_id": "game_nwsl_2026_20260517_orl_den", "sport": "NWSL", "season": "2026", - "date": "2026-05-16", - "time": "6:45p", + "game_datetime_utc": "2026-05-17T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "DEN", @@ -75153,8 +70978,7 @@ "canonical_id": "game_mls_2026_20260517_lag_sea", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "6p", + "game_datetime_utc": "2026-05-17T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SEA", @@ -75171,8 +70995,7 @@ "canonical_id": "game_mls_2026_20260517_col_slc", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SLC", @@ -75189,8 +71012,7 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:38p", + "game_datetime_utc": "2026-05-17T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -75207,8 +71029,7 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-16", - "time": "6:40p", + "game_datetime_utc": "2026-05-17T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -75225,8 +71046,7 @@ "canonical_id": "game_mls_2026_20260517_dal_sj", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SJ", @@ -75243,8 +71063,7 @@ "canonical_id": "game_mls_2026_20260517_cin_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-16", - "time": "7:30p", + "game_datetime_utc": "2026-05-17T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "SD", @@ -75261,8 +71080,7 @@ "canonical_id": "game_mlb_2026_20260517_mia_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "12:10p", + "game_datetime_utc": "2026-05-17T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Miami Marlins", "home_team_abbrev": "TB", @@ -75279,8 +71097,7 @@ "canonical_id": "game_wnba_2026_20260517_chi_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "12:30p", + "game_datetime_utc": "2026-05-17T17:30:00Z", "home_team": "Minnesota Lynx", "away_team": "Chicago Sky", "home_team_abbrev": "MIN", @@ -75297,8 +71114,7 @@ "canonical_id": "game_mlb_2026_20260517_phi_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Philadelphia Phillies", "home_team_abbrev": "PIT", @@ -75315,8 +71131,7 @@ "canonical_id": "game_mlb_2026_20260517_bal_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Baltimore Orioles", "home_team_abbrev": "WSN", @@ -75333,8 +71148,7 @@ "canonical_id": "game_mlb_2026_20260517_bos_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:35p", + "game_datetime_utc": "2026-05-17T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Boston Red Sox", "home_team_abbrev": "ATL", @@ -75351,8 +71165,7 @@ "canonical_id": "game_mlb_2026_20260517_tor_det", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "DET", @@ -75369,8 +71182,7 @@ "canonical_id": "game_mlb_2026_20260517_cin_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Cincinnati Reds", "home_team_abbrev": "CLE", @@ -75387,8 +71199,7 @@ "canonical_id": "game_mlb_2026_20260517_nyy_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:40p", + "game_datetime_utc": "2026-05-17T17:40:00Z", "home_team": "New York Mets", "away_team": "New York Yankees", "home_team_abbrev": "NYM", @@ -75405,8 +71216,7 @@ "canonical_id": "game_mlb_2026_20260517_chc_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "CHW", @@ -75423,8 +71233,7 @@ "canonical_id": "game_mlb_2026_20260517_tex_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -75441,8 +71250,7 @@ "canonical_id": "game_mlb_2026_20260517_mil_min", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Milwaukee Brewers", "home_team_abbrev": "MIN", @@ -75459,8 +71267,7 @@ "canonical_id": "game_mlb_2026_20260517_kc_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:15p", + "game_datetime_utc": "2026-05-17T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Kansas City Royals", "home_team_abbrev": "STL", @@ -75477,8 +71284,7 @@ "canonical_id": "game_wnba_2026_20260517_lv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "3p", + "game_datetime_utc": "2026-05-17T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Las Vegas Aces", "home_team_abbrev": "ATL", @@ -75495,8 +71301,7 @@ "canonical_id": "game_mlb_2026_20260517_ari_col", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:10p", + "game_datetime_utc": "2026-05-17T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -75513,8 +71318,7 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:05p", + "game_datetime_utc": "2026-05-17T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "San Francisco Giants", "home_team_abbrev": "OAK", @@ -75531,8 +71335,7 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "1:07p", + "game_datetime_utc": "2026-05-17T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "LAA", @@ -75549,8 +71352,7 @@ "canonical_id": "game_mls_2026_20260517_por_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Portland Portland Timbers", "home_team_abbrev": "MIA", @@ -75567,8 +71369,7 @@ "canonical_id": "game_nwsl_2026_20260517_ang_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-17", - "time": "3p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "POR", @@ -75585,8 +71386,7 @@ "canonical_id": "game_wnba_2026_20260517_sea_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-17T22:00:00Z", "home_team": "Indiana Fever", "away_team": "Seattle Storm", "home_team_abbrev": "IND", @@ -75603,8 +71403,7 @@ "canonical_id": "game_mlb_2026_20260517_sd_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-17", - "time": "4:20p", + "game_datetime_utc": "2026-05-17T23:20:00Z", "home_team": "Seattle Mariners", "away_team": "San Diego Padres", "home_team_abbrev": "SEA", @@ -75621,8 +71420,7 @@ "canonical_id": "game_mls_2026_20260518_lafc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-17", - "time": "7p", + "game_datetime_utc": "2026-05-18T00:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "NSH", @@ -75639,8 +71437,7 @@ "canonical_id": "game_nwsl_2026_20260518_rgn_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-17", - "time": "6p", + "game_datetime_utc": "2026-05-18T00:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "UTA", @@ -75657,8 +71454,7 @@ "canonical_id": "game_mlb_2026_20260518_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -75675,8 +71471,7 @@ "canonical_id": "game_mlb_2026_20260518_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -75693,8 +71488,7 @@ "canonical_id": "game_mlb_2026_20260518_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -75711,8 +71505,7 @@ "canonical_id": "game_mlb_2026_20260518_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -75729,8 +71522,7 @@ "canonical_id": "game_mlb_2026_20260518_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:45p", + "game_datetime_utc": "2026-05-18T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -75747,8 +71539,7 @@ "canonical_id": "game_mlb_2026_20260518_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "7:05p", + "game_datetime_utc": "2026-05-18T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -75765,8 +71556,7 @@ "canonical_id": "game_mlb_2026_20260518_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -75783,8 +71573,7 @@ "canonical_id": "game_mlb_2026_20260518_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -75801,8 +71590,7 @@ "canonical_id": "game_mlb_2026_20260518_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-18T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -75819,8 +71607,7 @@ "canonical_id": "game_wnba_2026_20260519_was_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-18", - "time": "7p", + "game_datetime_utc": "2026-05-19T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Washington Mystics", "home_team_abbrev": "DAL", @@ -75837,8 +71624,7 @@ "canonical_id": "game_mlb_2026_20260519_tex_col", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -75855,8 +71641,7 @@ "canonical_id": "game_mlb_2026_20260519_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:38p", + "game_datetime_utc": "2026-05-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -75873,8 +71658,7 @@ "canonical_id": "game_mlb_2026_20260519_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -75891,8 +71675,7 @@ "canonical_id": "game_mlb_2026_20260519_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -75909,8 +71692,7 @@ "canonical_id": "game_mlb_2026_20260519_chw_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-18", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -75927,8 +71709,7 @@ "canonical_id": "game_mlb_2026_20260519_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "4:10p", + "game_datetime_utc": "2026-05-19T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -75945,8 +71726,7 @@ "canonical_id": "game_mlb_2026_20260519_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -75963,8 +71743,7 @@ "canonical_id": "game_mlb_2026_20260519_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -75981,8 +71760,7 @@ "canonical_id": "game_mlb_2026_20260519_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -75999,8 +71777,7 @@ "canonical_id": "game_mlb_2026_20260519_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:45p", + "game_datetime_utc": "2026-05-19T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76017,8 +71794,7 @@ "canonical_id": "game_mlb_2026_20260519_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "7:05p", + "game_datetime_utc": "2026-05-19T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76035,8 +71811,7 @@ "canonical_id": "game_mlb_2026_20260519_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -76053,8 +71828,7 @@ "canonical_id": "game_mlb_2026_20260519_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -76071,8 +71845,7 @@ "canonical_id": "game_mlb_2026_20260519_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-19T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -76089,8 +71862,7 @@ "canonical_id": "game_mlb_2026_20260519_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:45p", + "game_datetime_utc": "2026-05-19T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76107,8 +71879,7 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -76125,8 +71896,7 @@ "canonical_id": "game_mlb_2026_20260520_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:38p", + "game_datetime_utc": "2026-05-20T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76143,8 +71913,7 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -76161,8 +71930,7 @@ "canonical_id": "game_mlb_2026_20260520_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -76179,8 +71947,7 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-19", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -76197,8 +71964,7 @@ "canonical_id": "game_mlb_2026_20260520_cin_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:05p", + "game_datetime_utc": "2026-05-20T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cincinnati Reds", "home_team_abbrev": "PHI", @@ -76215,8 +71981,7 @@ "canonical_id": "game_mlb_2026_20260520_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -76233,8 +71998,7 @@ "canonical_id": "game_mlb_2026_20260520_hou_min", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "12:40p", + "game_datetime_utc": "2026-05-20T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Houston Astros", "home_team_abbrev": "MIN", @@ -76251,8 +72015,7 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Texas Rangers", "home_team_abbrev": "COL", @@ -76269,8 +72032,7 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "12:40p", + "game_datetime_utc": "2026-05-20T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -76287,8 +72049,7 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "1:10p", + "game_datetime_utc": "2026-05-20T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago White Sox", "home_team_abbrev": "SEA", @@ -76305,8 +72066,7 @@ "canonical_id": "game_mlb_2026_20260520_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -76323,8 +72083,7 @@ "canonical_id": "game_mlb_2026_20260520_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -76341,8 +72100,7 @@ "canonical_id": "game_mlb_2026_20260520_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:45p", + "game_datetime_utc": "2026-05-20T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76359,8 +72117,7 @@ "canonical_id": "game_mlb_2026_20260520_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "7:05p", + "game_datetime_utc": "2026-05-20T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76377,8 +72134,7 @@ "canonical_id": "game_mlb_2026_20260520_bos_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Boston Red Sox", "home_team_abbrev": "KC", @@ -76395,8 +72151,7 @@ "canonical_id": "game_mlb_2026_20260520_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:40p", + "game_datetime_utc": "2026-05-20T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -76413,8 +72168,7 @@ "canonical_id": "game_mlb_2026_20260520_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:45p", + "game_datetime_utc": "2026-05-20T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76431,8 +72185,7 @@ "canonical_id": "game_nwsl_2026_20260521_sdw_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "HOU", @@ -76449,8 +72202,7 @@ "canonical_id": "game_mlb_2026_20260521_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "5:40p", + "game_datetime_utc": "2026-05-21T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -76467,8 +72219,7 @@ "canonical_id": "game_wnba_2026_20260521_dal_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-20", - "time": "8p", + "game_datetime_utc": "2026-05-21T01:00:00Z", "home_team": "Chicago Sky", "away_team": "Dallas Wings", "home_team_abbrev": "CHI", @@ -76485,8 +72236,7 @@ "canonical_id": "game_mlb_2026_20260521_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-20", - "time": "6:38p", + "game_datetime_utc": "2026-05-21T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76503,8 +72253,7 @@ "canonical_id": "game_nwsl_2026_20260521_kcc_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "ANG", @@ -76521,8 +72270,7 @@ "canonical_id": "game_nwsl_2026_20260521_bay_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "San Francisco Bay FC", "home_team_abbrev": "POR", @@ -76539,8 +72287,7 @@ "canonical_id": "game_wnba_2026_20260521_con_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-20", - "time": "7p", + "game_datetime_utc": "2026-05-21T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Connecticut Sun", "home_team_abbrev": "SEA", @@ -76557,8 +72304,7 @@ "canonical_id": "game_mlb_2026_20260521_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "1:10p", + "game_datetime_utc": "2026-05-21T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -76575,8 +72321,7 @@ "canonical_id": "game_mlb_2026_20260521_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "12:15p", + "game_datetime_utc": "2026-05-21T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -76593,8 +72338,7 @@ "canonical_id": "game_mlb_2026_20260521_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "4:05p", + "game_datetime_utc": "2026-05-21T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -76611,8 +72355,7 @@ "canonical_id": "game_mlb_2026_20260521_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:40p", + "game_datetime_utc": "2026-05-21T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -76629,8 +72372,7 @@ "canonical_id": "game_mlb_2026_20260521_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "7:05p", + "game_datetime_utc": "2026-05-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -76647,8 +72389,7 @@ "canonical_id": "game_wnba_2026_20260522_gsv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-21", - "time": "8p", + "game_datetime_utc": "2026-05-22T00:00:00Z", "home_team": "New York Liberty", "away_team": "Golden State Valkyries", "home_team_abbrev": "NY", @@ -76665,8 +72406,7 @@ "canonical_id": "game_mlb_2026_20260522_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:38p", + "game_datetime_utc": "2026-05-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -76683,8 +72423,7 @@ "canonical_id": "game_mlb_2026_20260522_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-21", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -76701,8 +72440,7 @@ "canonical_id": "game_wnba_2026_20260522_la_phx", "sport": "WNBA", "season": "2026", - "date": "2026-05-21", - "time": "10p", + "game_datetime_utc": "2026-05-22T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Los Angeles Sparks", "home_team_abbrev": "PHX", @@ -76719,8 +72457,7 @@ "canonical_id": "game_mlb_2026_20260522_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "1:20p", + "game_datetime_utc": "2026-05-22T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -76737,8 +72474,7 @@ "canonical_id": "game_mlb_2026_20260522_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -76755,8 +72491,7 @@ "canonical_id": "game_mlb_2026_20260522_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -76773,8 +72508,7 @@ "canonical_id": "game_mlb_2026_20260522_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:05p", + "game_datetime_utc": "2026-05-22T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -76791,8 +72525,7 @@ "canonical_id": "game_mlb_2026_20260522_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:05p", + "game_datetime_utc": "2026-05-22T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -76809,8 +72542,7 @@ "canonical_id": "game_mlb_2026_20260522_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:07p", + "game_datetime_utc": "2026-05-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -76827,8 +72559,7 @@ "canonical_id": "game_mlb_2026_20260522_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:10p", + "game_datetime_utc": "2026-05-22T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -76845,8 +72576,7 @@ "canonical_id": "game_mlb_2026_20260522_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:10p", + "game_datetime_utc": "2026-05-22T23:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -76863,8 +72593,7 @@ "canonical_id": "game_mlb_2026_20260522_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:15p", + "game_datetime_utc": "2026-05-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -76881,8 +72610,7 @@ "canonical_id": "game_wnba_2026_20260522_dal_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7:30p", + "game_datetime_utc": "2026-05-22T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Dallas Wings", "home_team_abbrev": "ATL", @@ -76899,8 +72627,7 @@ "canonical_id": "game_wnba_2026_20260522_gsv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7:30p", + "game_datetime_utc": "2026-05-22T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Golden State Valkyries", "home_team_abbrev": "IND", @@ -76917,8 +72644,7 @@ "canonical_id": "game_mlb_2026_20260522_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -76935,8 +72661,7 @@ "canonical_id": "game_mlb_2026_20260522_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-22T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -76953,8 +72678,7 @@ "canonical_id": "game_nwsl_2026_20260523_sea_bos", "sport": "NWSL", "season": "2026", - "date": "2026-05-22", - "time": "8p", + "game_datetime_utc": "2026-05-23T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "BOS", @@ -76971,8 +72695,7 @@ "canonical_id": "game_mlb_2026_20260523_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:38p", + "game_datetime_utc": "2026-05-23T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -76989,8 +72712,7 @@ "canonical_id": "game_mlb_2026_20260523_oak_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-23T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77007,8 +72729,7 @@ "canonical_id": "game_mlb_2026_20260523_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "6:40p", + "game_datetime_utc": "2026-05-23T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77025,8 +72746,7 @@ "canonical_id": "game_wnba_2026_20260523_con_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-22", - "time": "7p", + "game_datetime_utc": "2026-05-23T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Connecticut Sun", "home_team_abbrev": "SEA", @@ -77043,8 +72763,7 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-22", - "time": "7:15p", + "game_datetime_utc": "2026-05-23T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77061,8 +72780,7 @@ "canonical_id": "game_wnba_2026_20260523_min_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-23", - "time": "12p", + "game_datetime_utc": "2026-05-23T17:00:00Z", "home_team": "Chicago Sky", "away_team": "Minnesota Lynx", "home_team_abbrev": "CHI", @@ -77079,8 +72797,7 @@ "canonical_id": "game_mlb_2026_20260523_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:35p", + "game_datetime_utc": "2026-05-23T17:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -77097,8 +72814,7 @@ "canonical_id": "game_mlb_2026_20260523_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:20p", + "game_datetime_utc": "2026-05-23T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -77115,8 +72831,7 @@ "canonical_id": "game_mls_2026_20260523_aus_stl", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "1:30p", + "game_datetime_utc": "2026-05-23T18:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Austin Austin FC", "home_team_abbrev": "STL", @@ -77133,8 +72848,7 @@ "canonical_id": "game_mlb_2026_20260523_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "3:07p", + "game_datetime_utc": "2026-05-23T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -77151,8 +72865,7 @@ "canonical_id": "game_nwsl_2026_20260523_ncc_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "4p", + "game_datetime_utc": "2026-05-23T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "RGN", @@ -77169,8 +72882,7 @@ "canonical_id": "game_mlb_2026_20260523_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -77187,8 +72899,7 @@ "canonical_id": "game_mlb_2026_20260523_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -77205,8 +72916,7 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "1:05p", + "game_datetime_utc": "2026-05-23T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77223,8 +72933,7 @@ "canonical_id": "game_mlb_2026_20260523_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -77241,8 +72950,7 @@ "canonical_id": "game_mlb_2026_20260523_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "3:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -77259,8 +72967,7 @@ "canonical_id": "game_mlb_2026_20260523_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -77277,8 +72984,7 @@ "canonical_id": "game_mlb_2026_20260523_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "4:10p", + "game_datetime_utc": "2026-05-23T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -77295,8 +73001,7 @@ "canonical_id": "game_nwsl_2026_20260523_den_uta", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "4:30p", + "game_datetime_utc": "2026-05-23T22:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "UTA", @@ -77313,8 +73018,7 @@ "canonical_id": "game_mlb_2026_20260523_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:15p", + "game_datetime_utc": "2026-05-23T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -77331,8 +73035,7 @@ "canonical_id": "game_mlb_2026_20260523_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "6:15p", + "game_datetime_utc": "2026-05-23T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -77349,8 +73052,7 @@ "canonical_id": "game_mls_2026_20260523_orl_cin", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Orlando Orlando City", "home_team_abbrev": "CIN", @@ -77367,8 +73069,7 @@ "canonical_id": "game_mls_2026_20260523_mtl_dc", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Montreal CF Montreal", "home_team_abbrev": "DC", @@ -77385,8 +73086,7 @@ "canonical_id": "game_mls_2026_20260523_ne_clt", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-23T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "New England New England Revolution", "home_team_abbrev": "CLT", @@ -77403,8 +73103,7 @@ "canonical_id": "game_wnba_2026_20260524_la_lv", "sport": "WNBA", "season": "2026", - "date": "2026-05-23", - "time": "5p", + "game_datetime_utc": "2026-05-24T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Los Angeles Sparks", "home_team_abbrev": "LV", @@ -77421,8 +73120,7 @@ "canonical_id": "game_mls_2026_20260524_nyc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New York New York City FC", "home_team_abbrev": "NSH", @@ -77439,8 +73137,7 @@ "canonical_id": "game_mls_2026_20260524_tor_chi", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CHI", @@ -77457,8 +73154,7 @@ "canonical_id": "game_mls_2026_20260524_slc_min", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "MIN", @@ -77475,8 +73171,7 @@ "canonical_id": "game_mls_2026_20260524_ny_skc", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "New York New York Red Bulls", "home_team_abbrev": "SKC", @@ -77493,8 +73188,7 @@ "canonical_id": "game_nwsl_2026_20260524_ang_hou", "sport": "NWSL", "season": "2026", - "date": "2026-05-23", - "time": "7:45p", + "game_datetime_utc": "2026-05-24T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "HOU", @@ -77511,8 +73205,7 @@ "canonical_id": "game_mls_2026_20260524_van_sd", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "6:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SD", @@ -77529,8 +73222,7 @@ "canonical_id": "game_mls_2026_20260524_dal_col", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Dallas FC Dallas", "home_team_abbrev": "COL", @@ -77547,8 +73239,7 @@ "canonical_id": "game_mls_2026_20260524_sj_por", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "6:30p", + "game_datetime_utc": "2026-05-24T01:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "POR", @@ -77565,8 +73256,7 @@ "canonical_id": "game_mlb_2026_20260524_oak_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "6:40p", + "game_datetime_utc": "2026-05-24T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77583,8 +73273,7 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:05p", + "game_datetime_utc": "2026-05-24T02:05:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -77601,8 +73290,7 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-05-23", - "time": "7:10p", + "game_datetime_utc": "2026-05-24T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77619,8 +73307,7 @@ "canonical_id": "game_mls_2026_20260524_hou_lag", "sport": "MLS", "season": "2026", - "date": "2026-05-23", - "time": "7:30p", + "game_datetime_utc": "2026-05-24T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "LAG", @@ -77637,8 +73324,7 @@ "canonical_id": "game_mlb_2026_20260524_pit_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "12:10p", + "game_datetime_utc": "2026-05-24T16:10:00Z", "home_team": "Toronto Blue Jays", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "TOR", @@ -77655,8 +73341,7 @@ "canonical_id": "game_nwsl_2026_20260524_por_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "12p", + "game_datetime_utc": "2026-05-24T17:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Portland Portland Thorns", "home_team_abbrev": "KCC", @@ -77673,8 +73358,7 @@ "canonical_id": "game_mlb_2026_20260524_cle_phi", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Cleveland Guardians", "home_team_abbrev": "PHI", @@ -77691,8 +73375,7 @@ "canonical_id": "game_mlb_2026_20260524_det_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Detroit Tigers", "home_team_abbrev": "BAL", @@ -77709,8 +73392,7 @@ "canonical_id": "game_mlb_2026_20260524_min_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "BOS", @@ -77727,8 +73409,7 @@ "canonical_id": "game_mlb_2026_20260524_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:35p", + "game_datetime_utc": "2026-05-24T17:35:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -77745,8 +73426,7 @@ "canonical_id": "game_mlb_2026_20260524_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:40p", + "game_datetime_utc": "2026-05-24T17:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -77763,8 +73443,7 @@ "canonical_id": "game_mlb_2026_20260524_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:40p", + "game_datetime_utc": "2026-05-24T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -77781,8 +73460,7 @@ "canonical_id": "game_mlb_2026_20260524_lad_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIL", @@ -77799,8 +73477,7 @@ "canonical_id": "game_mlb_2026_20260524_sea_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Seattle Mariners", "home_team_abbrev": "KC", @@ -77817,8 +73494,7 @@ "canonical_id": "game_mlb_2026_20260524_hou_chc", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:20p", + "game_datetime_utc": "2026-05-24T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Houston Astros", "home_team_abbrev": "CHC", @@ -77835,8 +73511,7 @@ "canonical_id": "game_wnba_2026_20260524_phx_atl", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3p", + "game_datetime_utc": "2026-05-24T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Phoenix Mercury", "home_team_abbrev": "ATL", @@ -77853,8 +73528,7 @@ "canonical_id": "game_wnba_2026_20260524_dal_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3:30p", + "game_datetime_utc": "2026-05-24T19:30:00Z", "home_team": "New York Liberty", "away_team": "Dallas Wings", "home_team_abbrev": "NY", @@ -77871,8 +73545,7 @@ "canonical_id": "game_mlb_2026_20260524_chw_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:05p", + "game_datetime_utc": "2026-05-24T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago White Sox", "home_team_abbrev": "SF", @@ -77889,8 +73562,7 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -77907,8 +73579,7 @@ "canonical_id": "game_mlb_2026_20260524_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "4:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -77925,8 +73596,7 @@ "canonical_id": "game_mlb_2026_20260524_oak_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "1:10p", + "game_datetime_utc": "2026-05-24T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Oakland Athletics", "home_team_abbrev": "SD", @@ -77943,8 +73613,7 @@ "canonical_id": "game_mls_2026_20260524_atl_clb", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "5p", + "game_datetime_utc": "2026-05-24T21:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CLB", @@ -77961,8 +73630,7 @@ "canonical_id": "game_nwsl_2026_20260524_chi_bay", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "2p", + "game_datetime_utc": "2026-05-24T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "BAY", @@ -77979,8 +73647,7 @@ "canonical_id": "game_wnba_2026_20260524_was_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-24", - "time": "3p", + "game_datetime_utc": "2026-05-24T22:00:00Z", "home_team": "Seattle Storm", "away_team": "Washington Mystics", "home_team_abbrev": "SEA", @@ -77997,8 +73664,7 @@ "canonical_id": "game_mls_2026_20260524_phi_mia", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "7p", + "game_datetime_utc": "2026-05-24T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "MIA", @@ -78015,8 +73681,7 @@ "canonical_id": "game_nwsl_2026_20260524_orl_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-05-24", - "time": "4p", + "game_datetime_utc": "2026-05-24T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "SDW", @@ -78033,8 +73698,7 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-05-24", - "time": "4:20p", + "game_datetime_utc": "2026-05-24T23:20:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -78051,8 +73715,7 @@ "canonical_id": "game_mls_2026_20260525_sea_lafc", "sport": "MLS", "season": "2026", - "date": "2026-05-24", - "time": "6p", + "game_datetime_utc": "2026-05-25T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "LAFC", @@ -78069,8 +73732,7 @@ "canonical_id": "game_mlb_2026_20260525_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:35p", + "game_datetime_utc": "2026-05-25T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78087,8 +73749,7 @@ "canonical_id": "game_mlb_2026_20260525_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:10p", + "game_datetime_utc": "2026-05-25T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78105,8 +73766,7 @@ "canonical_id": "game_mlb_2026_20260525_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "1:10p", + "game_datetime_utc": "2026-05-25T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78123,8 +73783,7 @@ "canonical_id": "game_mlb_2026_20260525_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "2:40p", + "game_datetime_utc": "2026-05-25T19:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78141,8 +73800,7 @@ "canonical_id": "game_mlb_2026_20260525_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "4:10p", + "game_datetime_utc": "2026-05-25T20:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78159,8 +73817,7 @@ "canonical_id": "game_mlb_2026_20260525_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "2:05p", + "game_datetime_utc": "2026-05-25T21:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78177,8 +73834,7 @@ "canonical_id": "game_mlb_2026_20260525_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:10p", + "game_datetime_utc": "2026-05-25T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78195,8 +73851,7 @@ "canonical_id": "game_mlb_2026_20260525_phi_sd", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "3:40p", + "game_datetime_utc": "2026-05-25T22:40:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78213,8 +73868,7 @@ "canonical_id": "game_mlb_2026_20260525_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:40p", + "game_datetime_utc": "2026-05-25T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78231,8 +73885,7 @@ "canonical_id": "game_mlb_2026_20260525_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:05p", + "game_datetime_utc": "2026-05-25T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78249,8 +73902,7 @@ "canonical_id": "game_mlb_2026_20260525_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "7:07p", + "game_datetime_utc": "2026-05-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78267,8 +73919,7 @@ "canonical_id": "game_mlb_2026_20260526_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:10p", + "game_datetime_utc": "2026-05-26T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78285,8 +73936,7 @@ "canonical_id": "game_mlb_2026_20260526_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-25", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78303,8 +73953,7 @@ "canonical_id": "game_wnba_2026_20260526_con_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-25", - "time": "7p", + "game_datetime_utc": "2026-05-26T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Connecticut Sun", "home_team_abbrev": "GSV", @@ -78321,8 +73970,7 @@ "canonical_id": "game_mlb_2026_20260526_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:10p", + "game_datetime_utc": "2026-05-26T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78339,8 +73987,7 @@ "canonical_id": "game_mlb_2026_20260526_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:35p", + "game_datetime_utc": "2026-05-26T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78357,8 +74004,7 @@ "canonical_id": "game_mlb_2026_20260526_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78375,8 +74021,7 @@ "canonical_id": "game_mlb_2026_20260526_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78393,8 +74038,7 @@ "canonical_id": "game_mlb_2026_20260526_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:45p", + "game_datetime_utc": "2026-05-26T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78411,8 +74055,7 @@ "canonical_id": "game_mlb_2026_20260526_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:07p", + "game_datetime_utc": "2026-05-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78429,8 +74072,7 @@ "canonical_id": "game_mlb_2026_20260526_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:10p", + "game_datetime_utc": "2026-05-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78447,8 +74089,7 @@ "canonical_id": "game_mlb_2026_20260526_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78465,8 +74106,7 @@ "canonical_id": "game_mlb_2026_20260526_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78483,8 +74123,7 @@ "canonical_id": "game_mlb_2026_20260526_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-26T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78501,8 +74140,7 @@ "canonical_id": "game_mlb_2026_20260527_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:05p", + "game_datetime_utc": "2026-05-27T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78519,8 +74157,7 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78537,8 +74174,7 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78555,8 +74191,7 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "6:45p", + "game_datetime_utc": "2026-05-27T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78573,8 +74208,7 @@ "canonical_id": "game_mlb_2026_20260527_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-26", - "time": "7:10p", + "game_datetime_utc": "2026-05-27T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78591,8 +74225,7 @@ "canonical_id": "game_mlb_2026_20260527_mia_tor", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:07p", + "game_datetime_utc": "2026-05-27T17:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Miami Marlins", "home_team_abbrev": "TOR", @@ -78609,8 +74242,7 @@ "canonical_id": "game_mlb_2026_20260527_wsn_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:10p", + "game_datetime_utc": "2026-05-27T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Washington Nationals", "home_team_abbrev": "CLE", @@ -78627,8 +74259,7 @@ "canonical_id": "game_mlb_2026_20260527_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:40p", + "game_datetime_utc": "2026-05-27T17:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -78645,8 +74276,7 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:05p", + "game_datetime_utc": "2026-05-27T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -78663,8 +74293,7 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "12:45p", + "game_datetime_utc": "2026-05-27T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -78681,8 +74310,7 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "1:10p", + "game_datetime_utc": "2026-05-27T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SD", @@ -78699,8 +74327,7 @@ "canonical_id": "game_mlb_2026_20260527_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:35p", + "game_datetime_utc": "2026-05-27T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -78717,8 +74344,7 @@ "canonical_id": "game_mlb_2026_20260527_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78735,8 +74361,7 @@ "canonical_id": "game_mlb_2026_20260527_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -78753,8 +74378,7 @@ "canonical_id": "game_mlb_2026_20260527_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:45p", + "game_datetime_utc": "2026-05-27T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78771,8 +74395,7 @@ "canonical_id": "game_wnba_2026_20260527_phx_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "7p", + "game_datetime_utc": "2026-05-27T23:00:00Z", "home_team": "New York Liberty", "away_team": "Phoenix Mercury", "home_team_abbrev": "NY", @@ -78789,8 +74412,7 @@ "canonical_id": "game_mlb_2026_20260527_cin_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:10p", + "game_datetime_utc": "2026-05-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYM", @@ -78807,8 +74429,7 @@ "canonical_id": "game_mlb_2026_20260527_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78825,8 +74446,7 @@ "canonical_id": "game_mlb_2026_20260527_nyy_kc", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "6:40p", + "game_datetime_utc": "2026-05-27T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "New York Yankees", "home_team_abbrev": "KC", @@ -78843,8 +74463,7 @@ "canonical_id": "game_mlb_2026_20260528_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:05p", + "game_datetime_utc": "2026-05-28T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -78861,8 +74480,7 @@ "canonical_id": "game_wnba_2026_20260528_atl_min", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "8p", + "game_datetime_utc": "2026-05-28T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Atlanta Dream", "home_team_abbrev": "MIN", @@ -78879,8 +74497,7 @@ "canonical_id": "game_wnba_2026_20260528_was_sea", "sport": "WNBA", "season": "2026", - "date": "2026-05-27", - "time": "7p", + "game_datetime_utc": "2026-05-28T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Washington Mystics", "home_team_abbrev": "SEA", @@ -78897,8 +74514,7 @@ "canonical_id": "game_mlb_2026_20260528_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-27", - "time": "7:10p", + "game_datetime_utc": "2026-05-28T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -78915,8 +74531,7 @@ "canonical_id": "game_mlb_2026_20260528_laa_det", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "1:10p", + "game_datetime_utc": "2026-05-28T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Angels", "home_team_abbrev": "DET", @@ -78933,8 +74548,7 @@ "canonical_id": "game_mlb_2026_20260528_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "1:10p", + "game_datetime_utc": "2026-05-28T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -78951,8 +74565,7 @@ "canonical_id": "game_mlb_2026_20260528_atl_bos", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "4:10p", + "game_datetime_utc": "2026-05-28T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "BOS", @@ -78969,8 +74582,7 @@ "canonical_id": "game_mlb_2026_20260528_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "6:35p", + "game_datetime_utc": "2026-05-28T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -78987,8 +74599,7 @@ "canonical_id": "game_mlb_2026_20260528_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "6:40p", + "game_datetime_utc": "2026-05-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -79005,8 +74616,7 @@ "canonical_id": "game_wnba_2026_20260529_lv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-05-28", - "time": "7p", + "game_datetime_utc": "2026-05-29T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Las Vegas Aces", "home_team_abbrev": "DAL", @@ -79023,8 +74633,7 @@ "canonical_id": "game_mlb_2026_20260529_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-28", - "time": "7:05p", + "game_datetime_utc": "2026-05-29T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -79041,8 +74650,7 @@ "canonical_id": "game_wnba_2026_20260529_ind_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-28", - "time": "7p", + "game_datetime_utc": "2026-05-29T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Indiana Fever", "home_team_abbrev": "GSV", @@ -79059,8 +74667,7 @@ "canonical_id": "game_mlb_2026_20260529_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79077,8 +74684,7 @@ "canonical_id": "game_mlb_2026_20260529_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79095,8 +74701,7 @@ "canonical_id": "game_mlb_2026_20260529_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:45p", + "game_datetime_utc": "2026-05-29T22:45:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79113,8 +74718,7 @@ "canonical_id": "game_nwsl_2026_20260529_bay_orl", "sport": "NWSL", "season": "2026", - "date": "2026-05-29", - "time": "7p", + "game_datetime_utc": "2026-05-29T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "San Francisco Bay FC", "home_team_abbrev": "ORL", @@ -79131,8 +74735,7 @@ "canonical_id": "game_mlb_2026_20260529_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:05p", + "game_datetime_utc": "2026-05-29T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79149,8 +74752,7 @@ "canonical_id": "game_mlb_2026_20260529_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79167,8 +74769,7 @@ "canonical_id": "game_mlb_2026_20260529_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79185,8 +74786,7 @@ "canonical_id": "game_mlb_2026_20260529_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-29T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79203,8 +74803,7 @@ "canonical_id": "game_wnba_2026_20260529_phx_ny", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "7:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "New York Liberty", "away_team": "Phoenix Mercury", "home_team_abbrev": "NY", @@ -79221,8 +74820,7 @@ "canonical_id": "game_wnba_2026_20260529_min_chi", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "6:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Minnesota Lynx", "home_team_abbrev": "CHI", @@ -79239,8 +74837,7 @@ "canonical_id": "game_wnba_2026_20260529_la_was", "sport": "WNBA", "season": "2026", - "date": "2026-05-29", - "time": "7:30p", + "game_datetime_utc": "2026-05-29T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Los Angeles Sparks", "home_team_abbrev": "WAS", @@ -79257,8 +74854,7 @@ "canonical_id": "game_mlb_2026_20260529_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-29T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79275,8 +74871,7 @@ "canonical_id": "game_nwsl_2026_20260530_den_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-05-29", - "time": "8p", + "game_datetime_utc": "2026-05-30T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "RGN", @@ -79293,8 +74888,7 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:05p", + "game_datetime_utc": "2026-05-30T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79311,8 +74905,7 @@ "canonical_id": "game_mlb_2026_20260530_mil_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T00:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79329,8 +74922,7 @@ "canonical_id": "game_mlb_2026_20260530_chc_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:15p", + "game_datetime_utc": "2026-05-30T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -79347,8 +74939,7 @@ "canonical_id": "game_mlb_2026_20260530_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-30T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79365,8 +74956,7 @@ "canonical_id": "game_mlb_2026_20260530_nyy_oak", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "6:40p", + "game_datetime_utc": "2026-05-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -79383,8 +74973,7 @@ "canonical_id": "game_mlb_2026_20260530_ari_sea", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -79401,8 +74990,7 @@ "canonical_id": "game_mlb_2026_20260530_phi_lad", "sport": "MLB", "season": "2026", - "date": "2026-05-29", - "time": "7:10p", + "game_datetime_utc": "2026-05-30T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -79419,8 +75007,7 @@ "canonical_id": "game_nwsl_2026_20260530_bos_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "12:30p", + "game_datetime_utc": "2026-05-30T17:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "KCC", @@ -79437,8 +75024,7 @@ "canonical_id": "game_mlb_2026_20260530_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "1:10p", + "game_datetime_utc": "2026-05-30T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79455,8 +75041,7 @@ "canonical_id": "game_nwsl_2026_20260530_uta_por", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "1p", + "game_datetime_utc": "2026-05-30T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Utah Utah Royals", "home_team_abbrev": "POR", @@ -79473,8 +75058,7 @@ "canonical_id": "game_mlb_2026_20260530_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79491,8 +75075,7 @@ "canonical_id": "game_mlb_2026_20260530_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79509,8 +75092,7 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "3:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79527,8 +75109,7 @@ "canonical_id": "game_mlb_2026_20260530_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:05p", + "game_datetime_utc": "2026-05-30T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79545,8 +75126,7 @@ "canonical_id": "game_mlb_2026_20260530_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79563,8 +75143,7 @@ "canonical_id": "game_mlb_2026_20260530_mil_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "3:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79581,8 +75160,7 @@ "canonical_id": "game_mlb_2026_20260530_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79599,8 +75177,7 @@ "canonical_id": "game_mlb_2026_20260530_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "4:10p", + "game_datetime_utc": "2026-05-30T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79617,8 +75194,7 @@ "canonical_id": "game_wnba_2026_20260530_la_con", "sport": "WNBA", "season": "2026", - "date": "2026-05-30", - "time": "6p", + "game_datetime_utc": "2026-05-30T22:00:00Z", "home_team": "Connecticut Sun", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CON", @@ -79635,8 +75211,7 @@ "canonical_id": "game_nwsl_2026_20260530_sea_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-05-30", - "time": "6:30p", + "game_datetime_utc": "2026-05-30T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "WSH", @@ -79653,8 +75228,7 @@ "canonical_id": "game_mlb_2026_20260530_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:15p", + "game_datetime_utc": "2026-05-30T23:15:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79671,8 +75245,7 @@ "canonical_id": "game_mlb_2026_20260530_chc_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "6:15p", + "game_datetime_utc": "2026-05-30T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -79689,8 +75262,7 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79707,8 +75279,7 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:05p", + "game_datetime_utc": "2026-05-31T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -79725,8 +75296,7 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -79743,8 +75313,7 @@ "canonical_id": "game_mlb_2026_20260531_phi_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-05-30", - "time": "7:10p", + "game_datetime_utc": "2026-05-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -79761,8 +75330,7 @@ "canonical_id": "game_mlb_2026_20260531_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "12:10p", + "game_datetime_utc": "2026-05-31T16:10:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -79779,8 +75347,7 @@ "canonical_id": "game_nwsl_2026_20260531_sdw_chi", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "12p", + "game_datetime_utc": "2026-05-31T17:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "CHI", @@ -79797,8 +75364,7 @@ "canonical_id": "game_mlb_2026_20260531_sd_wsn", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T17:35:00Z", "home_team": "Washington Nationals", "away_team": "San Diego Padres", "home_team_abbrev": "WSN", @@ -79815,8 +75381,7 @@ "canonical_id": "game_mlb_2026_20260531_min_pit", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Minnesota Twins", "home_team_abbrev": "PIT", @@ -79833,8 +75398,7 @@ "canonical_id": "game_mlb_2026_20260531_bos_cle", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Boston Red Sox", "home_team_abbrev": "CLE", @@ -79851,8 +75415,7 @@ "canonical_id": "game_mlb_2026_20260531_atl_cin", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Atlanta Braves", "home_team_abbrev": "CIN", @@ -79869,8 +75432,7 @@ "canonical_id": "game_mlb_2026_20260531_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -79887,8 +75449,7 @@ "canonical_id": "game_mlb_2026_20260531_laa_tbr", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:40p", + "game_datetime_utc": "2026-05-31T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Los Angeles Angels", "home_team_abbrev": "TB", @@ -79905,8 +75466,7 @@ "canonical_id": "game_mlb_2026_20260531_mil_hou", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T18:10:00Z", "home_team": "Houston Astros", "away_team": "Milwaukee Brewers", "home_team_abbrev": "HOU", @@ -79923,8 +75483,7 @@ "canonical_id": "game_mlb_2026_20260531_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -79941,8 +75500,7 @@ "canonical_id": "game_mlb_2026_20260531_kc_tex", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:35p", + "game_datetime_utc": "2026-05-31T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Kansas City Royals", "home_team_abbrev": "TEX", @@ -79959,8 +75517,7 @@ "canonical_id": "game_nwsl_2026_20260531_hou_njy", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "3p", + "game_datetime_utc": "2026-05-31T19:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "NJY", @@ -79977,8 +75534,7 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -79995,8 +75551,7 @@ "canonical_id": "game_wnba_2026_20260531_lv_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-05-31", - "time": "12:30p", + "game_datetime_utc": "2026-05-31T19:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Las Vegas Aces", "home_team_abbrev": "GSV", @@ -80013,8 +75568,7 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:05p", + "game_datetime_utc": "2026-05-31T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "New York Yankees", "home_team_abbrev": "OAK", @@ -80031,8 +75585,7 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SEA", @@ -80049,8 +75602,7 @@ "canonical_id": "game_mlb_2026_20260531_phi_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "1:10p", + "game_datetime_utc": "2026-05-31T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAD", @@ -80067,8 +75619,7 @@ "canonical_id": "game_nwsl_2026_20260531_ncc_ang", "sport": "NWSL", "season": "2026", - "date": "2026-05-31", - "time": "4p", + "game_datetime_utc": "2026-05-31T23:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "ANG", @@ -80085,8 +75636,7 @@ "canonical_id": "game_mlb_2026_20260531_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-05-31", - "time": "6:20p", + "game_datetime_utc": "2026-05-31T23:20:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -80103,8 +75653,7 @@ "canonical_id": "game_mlb_2026_20260601_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80121,8 +75670,7 @@ "canonical_id": "game_mlb_2026_20260601_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:45p", + "game_datetime_utc": "2026-06-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80139,8 +75687,7 @@ "canonical_id": "game_mlb_2026_20260601_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "7:10p", + "game_datetime_utc": "2026-06-01T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80157,8 +75704,7 @@ "canonical_id": "game_mlb_2026_20260601_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80175,8 +75721,7 @@ "canonical_id": "game_mlb_2026_20260601_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-01T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80193,8 +75738,7 @@ "canonical_id": "game_mlb_2026_20260601_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:45p", + "game_datetime_utc": "2026-06-01T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80211,8 +75755,7 @@ "canonical_id": "game_wnba_2026_20260602_sea_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-01", - "time": "7p", + "game_datetime_utc": "2026-06-02T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Seattle Storm", "home_team_abbrev": "DAL", @@ -80229,8 +75772,7 @@ "canonical_id": "game_mlb_2026_20260602_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:38p", + "game_datetime_utc": "2026-06-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80247,8 +75789,7 @@ "canonical_id": "game_mlb_2026_20260602_nym_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80265,8 +75806,7 @@ "canonical_id": "game_mlb_2026_20260602_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-01", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80283,8 +75823,7 @@ "canonical_id": "game_wnba_2026_20260602_min_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-01", - "time": "10p", + "game_datetime_utc": "2026-06-02T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Minnesota Lynx", "home_team_abbrev": "PHX", @@ -80301,8 +75840,7 @@ "canonical_id": "game_mlb_2026_20260602_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80319,8 +75857,7 @@ "canonical_id": "game_mlb_2026_20260602_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80337,8 +75874,7 @@ "canonical_id": "game_mlb_2026_20260602_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80355,8 +75891,7 @@ "canonical_id": "game_mlb_2026_20260602_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80373,8 +75908,7 @@ "canonical_id": "game_mlb_2026_20260602_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:05p", + "game_datetime_utc": "2026-06-02T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80391,8 +75925,7 @@ "canonical_id": "game_mlb_2026_20260602_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:10p", + "game_datetime_utc": "2026-06-02T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80409,8 +75942,7 @@ "canonical_id": "game_mlb_2026_20260602_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:15p", + "game_datetime_utc": "2026-06-02T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -80427,8 +75959,7 @@ "canonical_id": "game_wnba_2026_20260602_con_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "7:30p", + "game_datetime_utc": "2026-06-02T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Connecticut Sun", "home_team_abbrev": "ATL", @@ -80445,8 +75976,7 @@ "canonical_id": "game_mlb_2026_20260602_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80463,8 +75993,7 @@ "canonical_id": "game_mlb_2026_20260602_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-02T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80481,8 +76010,7 @@ "canonical_id": "game_mlb_2026_20260602_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:45p", + "game_datetime_utc": "2026-06-02T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80499,8 +76027,7 @@ "canonical_id": "game_wnba_2026_20260603_chi_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "8p", + "game_datetime_utc": "2026-06-03T00:00:00Z", "home_team": "Washington Mystics", "away_team": "Chicago Sky", "home_team_abbrev": "WAS", @@ -80517,8 +76044,7 @@ "canonical_id": "game_mlb_2026_20260603_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:05p", + "game_datetime_utc": "2026-06-03T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -80535,8 +76061,7 @@ "canonical_id": "game_mlb_2026_20260603_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "7:10p", + "game_datetime_utc": "2026-06-03T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -80553,8 +76078,7 @@ "canonical_id": "game_mlb_2026_20260603_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:38p", + "game_datetime_utc": "2026-06-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80571,8 +76095,7 @@ "canonical_id": "game_mlb_2026_20260603_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80589,8 +76112,7 @@ "canonical_id": "game_mlb_2026_20260603_nym_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-02", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80607,8 +76129,7 @@ "canonical_id": "game_wnba_2026_20260603_lv_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-02", - "time": "7p", + "game_datetime_utc": "2026-06-03T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Las Vegas Aces", "home_team_abbrev": "LA", @@ -80625,8 +76146,7 @@ "canonical_id": "game_mlb_2026_20260603_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "1:05p", + "game_datetime_utc": "2026-06-03T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -80643,8 +76163,7 @@ "canonical_id": "game_mlb_2026_20260603_det_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "1:10p", + "game_datetime_utc": "2026-06-03T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Detroit Tigers", "home_team_abbrev": "TB", @@ -80661,8 +76180,7 @@ "canonical_id": "game_mlb_2026_20260603_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "12:40p", + "game_datetime_utc": "2026-06-03T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -80679,8 +76197,7 @@ "canonical_id": "game_mlb_2026_20260603_nym_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "12:40p", + "game_datetime_utc": "2026-06-03T19:40:00Z", "home_team": "Seattle Mariners", "away_team": "New York Mets", "home_team_abbrev": "SEA", @@ -80697,8 +76214,7 @@ "canonical_id": "game_mlb_2026_20260603_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80715,8 +76231,7 @@ "canonical_id": "game_mlb_2026_20260603_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:45p", + "game_datetime_utc": "2026-06-03T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80733,8 +76248,7 @@ "canonical_id": "game_mlb_2026_20260603_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:05p", + "game_datetime_utc": "2026-06-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80751,8 +76265,7 @@ "canonical_id": "game_mlb_2026_20260603_kc_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:10p", + "game_datetime_utc": "2026-06-03T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Kansas City Royals", "home_team_abbrev": "CIN", @@ -80769,8 +76282,7 @@ "canonical_id": "game_mlb_2026_20260603_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:15p", + "game_datetime_utc": "2026-06-03T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -80787,8 +76299,7 @@ "canonical_id": "game_mlb_2026_20260603_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-03T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80805,8 +76316,7 @@ "canonical_id": "game_mlb_2026_20260603_tex_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:45p", + "game_datetime_utc": "2026-06-03T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Texas Rangers", "home_team_abbrev": "STL", @@ -80823,8 +76333,7 @@ "canonical_id": "game_mlb_2026_20260604_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:05p", + "game_datetime_utc": "2026-06-04T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -80841,8 +76350,7 @@ "canonical_id": "game_mlb_2026_20260604_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "7:10p", + "game_datetime_utc": "2026-06-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -80859,8 +76367,7 @@ "canonical_id": "game_mlb_2026_20260604_col_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:38p", + "game_datetime_utc": "2026-06-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Colorado Rockies", "home_team_abbrev": "LAA", @@ -80877,8 +76384,7 @@ "canonical_id": "game_mlb_2026_20260604_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-03", - "time": "6:40p", + "game_datetime_utc": "2026-06-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -80895,8 +76401,7 @@ "canonical_id": "game_wnba_2026_20260604_phx_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-03", - "time": "7p", + "game_datetime_utc": "2026-06-04T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Phoenix Mercury", "home_team_abbrev": "SEA", @@ -80913,8 +76418,7 @@ "canonical_id": "game_mlb_2026_20260604_sd_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:05p", + "game_datetime_utc": "2026-06-04T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "San Diego Padres", "home_team_abbrev": "PHI", @@ -80931,8 +76435,7 @@ "canonical_id": "game_mlb_2026_20260604_cle_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:35p", + "game_datetime_utc": "2026-06-04T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cleveland Guardians", "home_team_abbrev": "NYY", @@ -80949,8 +76452,7 @@ "canonical_id": "game_mlb_2026_20260604_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:35p", + "game_datetime_utc": "2026-06-04T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -80967,8 +76469,7 @@ "canonical_id": "game_mlb_2026_20260604_sf_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "1:10p", + "game_datetime_utc": "2026-06-04T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "San Francisco Giants", "home_team_abbrev": "MIL", @@ -80985,8 +76486,7 @@ "canonical_id": "game_wnba_2026_20260604_atl_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-04", - "time": "7p", + "game_datetime_utc": "2026-06-04T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Atlanta Dream", "home_team_abbrev": "IND", @@ -81003,8 +76503,7 @@ "canonical_id": "game_mlb_2026_20260604_tor_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:15p", + "game_datetime_utc": "2026-06-04T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Toronto Blue Jays", "home_team_abbrev": "ATL", @@ -81021,8 +76520,7 @@ "canonical_id": "game_mlb_2026_20260604_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "6:40p", + "game_datetime_utc": "2026-06-04T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81039,8 +76537,7 @@ "canonical_id": "game_mlb_2026_20260605_oak_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:05p", + "game_datetime_utc": "2026-06-05T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Oakland Athletics", "home_team_abbrev": "CHC", @@ -81057,8 +76554,7 @@ "canonical_id": "game_mlb_2026_20260605_pit_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "7:10p", + "game_datetime_utc": "2026-06-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "HOU", @@ -81075,8 +76571,7 @@ "canonical_id": "game_wnba_2026_20260605_gsv_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-04", - "time": "8p", + "game_datetime_utc": "2026-06-05T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Golden State Valkyries", "home_team_abbrev": "MIN", @@ -81093,8 +76588,7 @@ "canonical_id": "game_mlb_2026_20260605_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-04", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -81111,8 +76605,7 @@ "canonical_id": "game_mlb_2026_20260605_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "1:20p", + "game_datetime_utc": "2026-06-05T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -81129,8 +76622,7 @@ "canonical_id": "game_mlb_2026_20260605_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81147,8 +76639,7 @@ "canonical_id": "game_mlb_2026_20260605_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81165,8 +76656,7 @@ "canonical_id": "game_mlb_2026_20260605_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:05p", + "game_datetime_utc": "2026-06-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81183,8 +76673,7 @@ "canonical_id": "game_mlb_2026_20260605_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:07p", + "game_datetime_utc": "2026-06-05T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81201,8 +76690,7 @@ "canonical_id": "game_mlb_2026_20260605_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-05T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81219,8 +76707,7 @@ "canonical_id": "game_mlb_2026_20260605_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:15p", + "game_datetime_utc": "2026-06-05T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81237,8 +76724,7 @@ "canonical_id": "game_wnba_2026_20260605_con_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-05", - "time": "6:30p", + "game_datetime_utc": "2026-06-05T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Connecticut Sun", "home_team_abbrev": "CHI", @@ -81255,8 +76741,7 @@ "canonical_id": "game_mlb_2026_20260606_cle_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:05p", + "game_datetime_utc": "2026-06-06T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81273,8 +76758,7 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T00:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81291,8 +76775,7 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81309,8 +76792,7 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:15p", + "game_datetime_utc": "2026-06-06T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81327,8 +76809,7 @@ "canonical_id": "game_mlb_2026_20260606_mil_col", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81345,8 +76826,7 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81363,8 +76843,7 @@ "canonical_id": "game_mlb_2026_20260606_nym_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "6:40p", + "game_datetime_utc": "2026-06-06T01:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81381,8 +76860,7 @@ "canonical_id": "game_wnba_2026_20260606_dal_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-05", - "time": "7p", + "game_datetime_utc": "2026-06-06T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Dallas Wings", "home_team_abbrev": "LA", @@ -81399,8 +76877,7 @@ "canonical_id": "game_mlb_2026_20260606_laa_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-05", - "time": "7:10p", + "game_datetime_utc": "2026-06-06T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -81417,8 +76894,7 @@ "canonical_id": "game_wnba_2026_20260606_sea_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "12p", + "game_datetime_utc": "2026-06-06T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Seattle Storm", "home_team_abbrev": "MIN", @@ -81435,8 +76911,7 @@ "canonical_id": "game_mlb_2026_20260606_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81453,8 +76928,7 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81471,8 +76945,7 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:15p", + "game_datetime_utc": "2026-06-06T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81489,8 +76962,7 @@ "canonical_id": "game_mlb_2026_20260606_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:20p", + "game_datetime_utc": "2026-06-06T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -81507,8 +76979,7 @@ "canonical_id": "game_wnba_2026_20260606_gsv_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "12p", + "game_datetime_utc": "2026-06-06T19:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Golden State Valkyries", "home_team_abbrev": "LV", @@ -81525,8 +76996,7 @@ "canonical_id": "game_mlb_2026_20260606_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "3:07p", + "game_datetime_utc": "2026-06-06T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81543,8 +77013,7 @@ "canonical_id": "game_mlb_2026_20260606_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:05p", + "game_datetime_utc": "2026-06-06T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81561,8 +77030,7 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "1:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81579,8 +77047,7 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "3:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81597,8 +77064,7 @@ "canonical_id": "game_mlb_2026_20260606_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81615,8 +77081,7 @@ "canonical_id": "game_mlb_2026_20260606_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "4:10p", + "game_datetime_utc": "2026-06-06T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81633,8 +77098,7 @@ "canonical_id": "game_wnba_2026_20260606_was_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "6p", + "game_datetime_utc": "2026-06-06T22:00:00Z", "home_team": "Atlanta Dream", "away_team": "Washington Mystics", "home_team_abbrev": "ATL", @@ -81651,8 +77115,7 @@ "canonical_id": "game_mlb_2026_20260606_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:35p", + "game_datetime_utc": "2026-06-06T23:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81669,8 +77132,7 @@ "canonical_id": "game_mlb_2026_20260606_cle_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "6:35p", + "game_datetime_utc": "2026-06-06T23:35:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81687,8 +77149,7 @@ "canonical_id": "game_wnba_2026_20260607_ind_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-06", - "time": "8p", + "game_datetime_utc": "2026-06-07T00:00:00Z", "home_team": "New York Liberty", "away_team": "Indiana Fever", "home_team_abbrev": "NY", @@ -81705,8 +77166,7 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81723,8 +77183,7 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -81741,8 +77200,7 @@ "canonical_id": "game_mlb_2026_20260607_nym_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-06", - "time": "7:10p", + "game_datetime_utc": "2026-06-07T02:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81759,8 +77217,7 @@ "canonical_id": "game_mlb_2026_20260607_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -81777,8 +77234,7 @@ "canonical_id": "game_mlb_2026_20260607_pit_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "ATL", @@ -81795,8 +77251,7 @@ "canonical_id": "game_mlb_2026_20260607_chw_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Chicago White Sox", "home_team_abbrev": "PHI", @@ -81813,8 +77268,7 @@ "canonical_id": "game_mlb_2026_20260607_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:37p", + "game_datetime_utc": "2026-06-07T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -81831,8 +77285,7 @@ "canonical_id": "game_mlb_2026_20260607_tbr_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:40p", + "game_datetime_utc": "2026-06-07T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Tampa Bay Rays", "home_team_abbrev": "MIA", @@ -81849,8 +77302,7 @@ "canonical_id": "game_mlb_2026_20260607_sea_det", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:40p", + "game_datetime_utc": "2026-06-07T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Seattle Mariners", "home_team_abbrev": "DET", @@ -81867,8 +77319,7 @@ "canonical_id": "game_mlb_2026_20260607_oak_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T18:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -81885,8 +77336,7 @@ "canonical_id": "game_mlb_2026_20260607_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -81903,8 +77353,7 @@ "canonical_id": "game_mlb_2026_20260607_cin_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:15p", + "game_datetime_utc": "2026-06-07T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -81921,8 +77370,7 @@ "canonical_id": "game_mlb_2026_20260607_cle_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:35p", + "game_datetime_utc": "2026-06-07T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Cleveland Guardians", "home_team_abbrev": "TEX", @@ -81939,8 +77387,7 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "COL", @@ -81957,8 +77404,7 @@ "canonical_id": "game_mlb_2026_20260607_wsn_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "12:10p", + "game_datetime_utc": "2026-06-07T19:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Washington Nationals", "home_team_abbrev": "ARI", @@ -81975,8 +77421,7 @@ "canonical_id": "game_mlb_2026_20260607_nym_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T20:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Mets", "home_team_abbrev": "SD", @@ -81993,8 +77438,7 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "1:10p", + "game_datetime_utc": "2026-06-07T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Los Angeles Angels", "home_team_abbrev": "LAD", @@ -82011,8 +77455,7 @@ "canonical_id": "game_mlb_2026_20260608_sf_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-07", - "time": "7:20p", + "game_datetime_utc": "2026-06-08T00:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Francisco Giants", "home_team_abbrev": "CHC", @@ -82029,8 +77472,7 @@ "canonical_id": "game_mlb_2026_20260608_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:35p", + "game_datetime_utc": "2026-06-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82047,8 +77489,7 @@ "canonical_id": "game_mlb_2026_20260608_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82065,8 +77506,7 @@ "canonical_id": "game_mlb_2026_20260608_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-08T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82083,8 +77523,7 @@ "canonical_id": "game_wnba_2026_20260608_ny_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "7p", + "game_datetime_utc": "2026-06-08T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "New York Liberty", "home_team_abbrev": "CON", @@ -82101,8 +77540,7 @@ "canonical_id": "game_mlb_2026_20260608_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "7:07p", + "game_datetime_utc": "2026-06-08T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82119,8 +77557,7 @@ "canonical_id": "game_wnba_2026_20260609_ind_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "8p", + "game_datetime_utc": "2026-06-09T00:00:00Z", "home_team": "Washington Mystics", "away_team": "Indiana Fever", "home_team_abbrev": "WAS", @@ -82137,8 +77574,7 @@ "canonical_id": "game_mlb_2026_20260609_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:38p", + "game_datetime_utc": "2026-06-09T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82155,8 +77591,7 @@ "canonical_id": "game_mlb_2026_20260609_cin_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82173,8 +77608,7 @@ "canonical_id": "game_mlb_2026_20260609_wsn_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "6:45p", + "game_datetime_utc": "2026-06-09T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82191,8 +77625,7 @@ "canonical_id": "game_wnba_2026_20260609_sea_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-08", - "time": "7p", + "game_datetime_utc": "2026-06-09T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Seattle Storm", "home_team_abbrev": "LV", @@ -82209,8 +77642,7 @@ "canonical_id": "game_mlb_2026_20260609_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-08", - "time": "7:05p", + "game_datetime_utc": "2026-06-09T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82227,8 +77659,7 @@ "canonical_id": "game_mlb_2026_20260609_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:35p", + "game_datetime_utc": "2026-06-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82245,8 +77676,7 @@ "canonical_id": "game_mlb_2026_20260609_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82263,8 +77693,7 @@ "canonical_id": "game_mlb_2026_20260609_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82281,8 +77710,7 @@ "canonical_id": "game_mlb_2026_20260609_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82299,8 +77727,7 @@ "canonical_id": "game_mlb_2026_20260609_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82317,8 +77744,7 @@ "canonical_id": "game_mlb_2026_20260609_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82335,8 +77761,7 @@ "canonical_id": "game_mlb_2026_20260609_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:07p", + "game_datetime_utc": "2026-06-09T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82353,8 +77778,7 @@ "canonical_id": "game_mlb_2026_20260609_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:10p", + "game_datetime_utc": "2026-06-09T23:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82371,8 +77795,7 @@ "canonical_id": "game_mlb_2026_20260609_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -82389,8 +77812,7 @@ "canonical_id": "game_mlb_2026_20260609_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82407,8 +77829,7 @@ "canonical_id": "game_wnba_2026_20260610_atl_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Atlanta Dream", "home_team_abbrev": "CHI", @@ -82425,8 +77846,7 @@ "canonical_id": "game_wnba_2026_20260610_dal_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Dallas Wings", "home_team_abbrev": "MIN", @@ -82443,8 +77863,7 @@ "canonical_id": "game_mlb_2026_20260610_chc_col", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82461,8 +77880,7 @@ "canonical_id": "game_mlb_2026_20260610_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:38p", + "game_datetime_utc": "2026-06-10T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82479,8 +77897,7 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82497,8 +77914,7 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "6:45p", + "game_datetime_utc": "2026-06-10T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82515,8 +77931,7 @@ "canonical_id": "game_wnba_2026_20260610_phx_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-09", - "time": "7p", + "game_datetime_utc": "2026-06-10T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Phoenix Mercury", "home_team_abbrev": "GSV", @@ -82533,8 +77948,7 @@ "canonical_id": "game_mlb_2026_20260610_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-09", - "time": "7:05p", + "game_datetime_utc": "2026-06-10T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82551,8 +77965,7 @@ "canonical_id": "game_mlb_2026_20260610_nyy_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Yankees", "home_team_abbrev": "CLE", @@ -82569,8 +77982,7 @@ "canonical_id": "game_mlb_2026_20260610_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -82587,8 +77999,7 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "12:45p", + "game_datetime_utc": "2026-06-10T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Washington Nationals", "home_team_abbrev": "SF", @@ -82605,8 +78016,7 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "1:10p", + "game_datetime_utc": "2026-06-10T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Cincinnati Reds", "home_team_abbrev": "SD", @@ -82623,8 +78033,7 @@ "canonical_id": "game_mlb_2026_20260610_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:35p", + "game_datetime_utc": "2026-06-10T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82641,8 +78050,7 @@ "canonical_id": "game_mlb_2026_20260610_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82659,8 +78067,7 @@ "canonical_id": "game_mlb_2026_20260610_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82677,8 +78084,7 @@ "canonical_id": "game_mlb_2026_20260610_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82695,8 +78101,7 @@ "canonical_id": "game_mlb_2026_20260610_phi_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "7:07p", + "game_datetime_utc": "2026-06-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Philadelphia Phillies", "home_team_abbrev": "TOR", @@ -82713,8 +78118,7 @@ "canonical_id": "game_mlb_2026_20260610_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "7:10p", + "game_datetime_utc": "2026-06-10T23:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82731,8 +78135,7 @@ "canonical_id": "game_mlb_2026_20260610_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82749,8 +78152,7 @@ "canonical_id": "game_mlb_2026_20260610_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -82767,8 +78169,7 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82785,8 +78186,7 @@ "canonical_id": "game_mlb_2026_20260611_mil_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:05p", + "game_datetime_utc": "2026-06-11T01:05:00Z", "home_team": "Oakland Athletics", "away_team": "Milwaukee Brewers", "home_team_abbrev": "OAK", @@ -82803,8 +78203,7 @@ "canonical_id": "game_mlb_2026_20260611_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-10", - "time": "6:38p", + "game_datetime_utc": "2026-06-11T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -82821,8 +78220,7 @@ "canonical_id": "game_wnba_2026_20260611_la_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-10", - "time": "7p", + "game_datetime_utc": "2026-06-11T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Los Angeles Sparks", "home_team_abbrev": "SEA", @@ -82839,8 +78237,7 @@ "canonical_id": "game_mlb_2026_20260611_stl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "New York Mets", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYM", @@ -82857,8 +78254,7 @@ "canonical_id": "game_mlb_2026_20260611_min_det", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -82875,8 +78271,7 @@ "canonical_id": "game_mlb_2026_20260611_ari_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "MIA", @@ -82893,8 +78288,7 @@ "canonical_id": "game_mlb_2026_20260611_tex_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Texas Rangers", "home_team_abbrev": "KC", @@ -82911,8 +78305,7 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "1:10p", + "game_datetime_utc": "2026-06-11T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Chicago Cubs", "home_team_abbrev": "COL", @@ -82929,8 +78322,7 @@ "canonical_id": "game_mlb_2026_20260611_lad_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PIT", @@ -82947,8 +78339,7 @@ "canonical_id": "game_wnba_2026_20260611_chi_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "7p", + "game_datetime_utc": "2026-06-11T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Chicago Sky", "home_team_abbrev": "IND", @@ -82965,8 +78356,7 @@ "canonical_id": "game_mlb_2026_20260611_sea_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "7:05p", + "game_datetime_utc": "2026-06-11T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Seattle Mariners", "home_team_abbrev": "BAL", @@ -82983,8 +78373,7 @@ "canonical_id": "game_wnba_2026_20260611_ny_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "7:30p", + "game_datetime_utc": "2026-06-11T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "New York Liberty", "home_team_abbrev": "ATL", @@ -83001,8 +78390,7 @@ "canonical_id": "game_mlb_2026_20260611_atl_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-11", - "time": "6:40p", + "game_datetime_utc": "2026-06-11T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Atlanta Braves", "home_team_abbrev": "CHW", @@ -83019,8 +78407,7 @@ "canonical_id": "game_wnba_2026_20260612_phx_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-11", - "time": "8p", + "game_datetime_utc": "2026-06-12T01:00:00Z", "home_team": "Dallas Wings", "away_team": "Phoenix Mercury", "home_team_abbrev": "DAL", @@ -83037,8 +78424,7 @@ "canonical_id": "game_mlb_2026_20260612_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83055,8 +78441,7 @@ "canonical_id": "game_mlb_2026_20260612_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:45p", + "game_datetime_utc": "2026-06-12T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83073,8 +78458,7 @@ "canonical_id": "game_mlb_2026_20260612_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:05p", + "game_datetime_utc": "2026-06-12T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83091,8 +78475,7 @@ "canonical_id": "game_mlb_2026_20260612_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83109,8 +78492,7 @@ "canonical_id": "game_mlb_2026_20260612_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83127,8 +78509,7 @@ "canonical_id": "game_mlb_2026_20260612_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83145,8 +78526,7 @@ "canonical_id": "game_mlb_2026_20260612_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-12T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83163,8 +78543,7 @@ "canonical_id": "game_mlb_2026_20260612_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:37p", + "game_datetime_utc": "2026-06-12T23:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83181,8 +78560,7 @@ "canonical_id": "game_mlb_2026_20260612_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83199,8 +78577,7 @@ "canonical_id": "game_mlb_2026_20260612_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:40p", + "game_datetime_utc": "2026-06-12T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83217,8 +78594,7 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-13T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83235,8 +78611,7 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:10p", + "game_datetime_utc": "2026-06-13T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83253,8 +78628,7 @@ "canonical_id": "game_mlb_2026_20260613_tbr_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "6:38p", + "game_datetime_utc": "2026-06-13T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83271,8 +78645,7 @@ "canonical_id": "game_wnba_2026_20260613_gsv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-12", - "time": "7p", + "game_datetime_utc": "2026-06-13T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Golden State Valkyries", "home_team_abbrev": "SEA", @@ -83289,8 +78662,7 @@ "canonical_id": "game_mlb_2026_20260613_col_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:05p", + "game_datetime_utc": "2026-06-13T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83307,8 +78679,7 @@ "canonical_id": "game_mlb_2026_20260613_chc_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-12", - "time": "7:15p", + "game_datetime_utc": "2026-06-13T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83325,8 +78696,7 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "1:10p", + "game_datetime_utc": "2026-06-13T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83343,8 +78713,7 @@ "canonical_id": "game_mlb_2026_20260613_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "3:07p", + "game_datetime_utc": "2026-06-13T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83361,8 +78730,7 @@ "canonical_id": "game_mlb_2026_20260613_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83379,8 +78747,7 @@ "canonical_id": "game_mlb_2026_20260613_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83397,8 +78764,7 @@ "canonical_id": "game_mlb_2026_20260613_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:05p", + "game_datetime_utc": "2026-06-13T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83415,8 +78781,7 @@ "canonical_id": "game_mlb_2026_20260613_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83433,8 +78798,7 @@ "canonical_id": "game_mlb_2026_20260613_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83451,8 +78815,7 @@ "canonical_id": "game_mlb_2026_20260613_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83469,8 +78832,7 @@ "canonical_id": "game_mlb_2026_20260613_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "4:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83487,8 +78849,7 @@ "canonical_id": "game_mlb_2026_20260613_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "3:10p", + "game_datetime_utc": "2026-06-13T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83505,8 +78866,7 @@ "canonical_id": "game_wnba_2026_20260613_ind_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "6p", + "game_datetime_utc": "2026-06-13T22:00:00Z", "home_team": "Connecticut Sun", "away_team": "Indiana Fever", "home_team_abbrev": "CON", @@ -83523,8 +78883,7 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "6:15p", + "game_datetime_utc": "2026-06-13T23:15:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83541,8 +78900,7 @@ "canonical_id": "game_mlb_2026_20260613_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "6:15p", + "game_datetime_utc": "2026-06-13T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83559,8 +78917,7 @@ "canonical_id": "game_wnba_2026_20260614_min_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "5p", + "game_datetime_utc": "2026-06-14T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Minnesota Lynx", "home_team_abbrev": "LV", @@ -83577,8 +78934,7 @@ "canonical_id": "game_wnba_2026_20260614_la_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-13", - "time": "10p", + "game_datetime_utc": "2026-06-14T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Los Angeles Sparks", "home_team_abbrev": "PHX", @@ -83595,8 +78951,7 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:05p", + "game_datetime_utc": "2026-06-14T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83613,8 +78968,7 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:05p", + "game_datetime_utc": "2026-06-14T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83631,8 +78985,7 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-13", - "time": "7:07p", + "game_datetime_utc": "2026-06-14T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83649,8 +79002,7 @@ "canonical_id": "game_mlb_2026_20260614_mia_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:10p", + "game_datetime_utc": "2026-06-14T16:10:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Miami Marlins", "home_team_abbrev": "PIT", @@ -83667,8 +79019,7 @@ "canonical_id": "game_mlb_2026_20260614_sd_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:35p", + "game_datetime_utc": "2026-06-14T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "San Diego Padres", "home_team_abbrev": "BAL", @@ -83685,8 +79036,7 @@ "canonical_id": "game_mlb_2026_20260614_sea_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:35p", + "game_datetime_utc": "2026-06-14T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Seattle Mariners", "home_team_abbrev": "WSN", @@ -83703,8 +79053,7 @@ "canonical_id": "game_mlb_2026_20260614_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:37p", + "game_datetime_utc": "2026-06-14T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -83721,8 +79070,7 @@ "canonical_id": "game_mlb_2026_20260614_ari_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CIN", @@ -83739,8 +79087,7 @@ "canonical_id": "game_mlb_2026_20260614_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -83757,8 +79104,7 @@ "canonical_id": "game_mlb_2026_20260614_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:40p", + "game_datetime_utc": "2026-06-14T17:40:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -83775,8 +79121,7 @@ "canonical_id": "game_mlb_2026_20260614_hou_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Houston Astros", "home_team_abbrev": "KC", @@ -83793,8 +79138,7 @@ "canonical_id": "game_mlb_2026_20260614_phi_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIL", @@ -83811,8 +79155,7 @@ "canonical_id": "game_mlb_2026_20260614_lad_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHW", @@ -83829,8 +79172,7 @@ "canonical_id": "game_mlb_2026_20260614_stl_min", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:10p", + "game_datetime_utc": "2026-06-14T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIN", @@ -83847,8 +79189,7 @@ "canonical_id": "game_wnba_2026_20260614_was_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-14", - "time": "3p", + "game_datetime_utc": "2026-06-14T19:00:00Z", "home_team": "New York Liberty", "away_team": "Washington Mystics", "home_team_abbrev": "NY", @@ -83865,8 +79206,7 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:05p", + "game_datetime_utc": "2026-06-14T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Colorado Rockies", "home_team_abbrev": "OAK", @@ -83883,8 +79223,7 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "12:10p", + "game_datetime_utc": "2026-06-14T19:10:00Z", "home_team": "San Francisco Giants", "away_team": "Chicago Cubs", "home_team_abbrev": "SF", @@ -83901,8 +79240,7 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "1:07p", + "game_datetime_utc": "2026-06-14T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAA", @@ -83919,8 +79257,7 @@ "canonical_id": "game_mlb_2026_20260614_tex_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-14", - "time": "7:20p", + "game_datetime_utc": "2026-06-14T23:20:00Z", "home_team": "Boston Red Sox", "away_team": "Texas Rangers", "home_team_abbrev": "BOS", @@ -83937,8 +79274,7 @@ "canonical_id": "game_mlb_2026_20260615_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-15T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -83955,8 +79291,7 @@ "canonical_id": "game_mlb_2026_20260615_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:45p", + "game_datetime_utc": "2026-06-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -83973,8 +79308,7 @@ "canonical_id": "game_mlb_2026_20260615_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-15T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -83991,8 +79325,7 @@ "canonical_id": "game_mlb_2026_20260615_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:45p", + "game_datetime_utc": "2026-06-15T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84009,8 +79342,7 @@ "canonical_id": "game_wnba_2026_20260616_lv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-15", - "time": "7p", + "game_datetime_utc": "2026-06-16T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Las Vegas Aces", "home_team_abbrev": "DAL", @@ -84027,8 +79359,7 @@ "canonical_id": "game_mlb_2026_20260616_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84045,8 +79376,7 @@ "canonical_id": "game_mlb_2026_20260616_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84063,8 +79393,7 @@ "canonical_id": "game_mlb_2026_20260616_det_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84081,8 +79410,7 @@ "canonical_id": "game_mlb_2026_20260616_laa_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84099,8 +79427,7 @@ "canonical_id": "game_mlb_2026_20260616_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84117,8 +79444,7 @@ "canonical_id": "game_wnba_2026_20260616_la_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-15", - "time": "7p", + "game_datetime_utc": "2026-06-16T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Los Angeles Sparks", "home_team_abbrev": "GSV", @@ -84135,8 +79461,7 @@ "canonical_id": "game_mlb_2026_20260616_tbr_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-15", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84153,8 +79478,7 @@ "canonical_id": "game_mlb_2026_20260616_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -84171,8 +79495,7 @@ "canonical_id": "game_mlb_2026_20260616_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -84189,8 +79512,7 @@ "canonical_id": "game_mlb_2026_20260616_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84207,8 +79529,7 @@ "canonical_id": "game_mlb_2026_20260616_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-16T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84225,8 +79546,7 @@ "canonical_id": "game_mlb_2026_20260616_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-16T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -84243,8 +79563,7 @@ "canonical_id": "game_mlb_2026_20260616_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:15p", + "game_datetime_utc": "2026-06-16T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84261,8 +79580,7 @@ "canonical_id": "game_mlb_2026_20260616_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-16T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84279,8 +79597,7 @@ "canonical_id": "game_mlb_2026_20260616_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:45p", + "game_datetime_utc": "2026-06-16T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84297,8 +79614,7 @@ "canonical_id": "game_mlb_2026_20260617_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84315,8 +79631,7 @@ "canonical_id": "game_mlb_2026_20260617_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84333,8 +79648,7 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84351,8 +79665,7 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84369,8 +79682,7 @@ "canonical_id": "game_mlb_2026_20260617_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84387,8 +79699,7 @@ "canonical_id": "game_mlb_2026_20260617_bal_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84405,8 +79716,7 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-16", - "time": "7:10p", + "game_datetime_utc": "2026-06-17T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84423,8 +79733,7 @@ "canonical_id": "game_mlb_2026_20260617_nym_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:40p", + "game_datetime_utc": "2026-06-17T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "New York Mets", "home_team_abbrev": "CIN", @@ -84441,8 +79750,7 @@ "canonical_id": "game_mlb_2026_20260617_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:05p", + "game_datetime_utc": "2026-06-17T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -84459,8 +79767,7 @@ "canonical_id": "game_mlb_2026_20260617_kc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:05p", + "game_datetime_utc": "2026-06-17T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Kansas City Royals", "home_team_abbrev": "WSN", @@ -84477,8 +79784,7 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:10p", + "game_datetime_utc": "2026-06-17T18:10:00Z", "home_team": "Houston Astros", "away_team": "Detroit Tigers", "home_team_abbrev": "HOU", @@ -84495,8 +79801,7 @@ "canonical_id": "game_mlb_2026_20260617_sd_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "1:15p", + "game_datetime_utc": "2026-06-17T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Diego Padres", "home_team_abbrev": "STL", @@ -84513,8 +79818,7 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:10p", + "game_datetime_utc": "2026-06-17T19:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "LAD", @@ -84531,8 +79835,7 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "12:40p", + "game_datetime_utc": "2026-06-17T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Angels", "home_team_abbrev": "ARI", @@ -84549,8 +79852,7 @@ "canonical_id": "game_mlb_2026_20260617_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:45p", + "game_datetime_utc": "2026-06-17T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84567,8 +79869,7 @@ "canonical_id": "game_wnba_2026_20260617_was_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-17T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Washington Mystics", "home_team_abbrev": "CON", @@ -84585,8 +79886,7 @@ "canonical_id": "game_mlb_2026_20260617_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:05p", + "game_datetime_utc": "2026-06-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84603,8 +79903,7 @@ "canonical_id": "game_mlb_2026_20260617_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:15p", + "game_datetime_utc": "2026-06-17T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84621,8 +79920,7 @@ "canonical_id": "game_mlb_2026_20260617_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-17T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84639,8 +79937,7 @@ "canonical_id": "game_wnba_2026_20260618_ny_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T00:00:00Z", "home_team": "Chicago Sky", "away_team": "New York Liberty", "home_team_abbrev": "CHI", @@ -84657,8 +79954,7 @@ "canonical_id": "game_mlb_2026_20260618_col_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "7:05p", + "game_datetime_utc": "2026-06-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Colorado Rockies", "home_team_abbrev": "CHC", @@ -84675,8 +79971,7 @@ "canonical_id": "game_mlb_2026_20260618_pit_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "OAK", @@ -84693,8 +79988,7 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-17", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84711,8 +80005,7 @@ "canonical_id": "game_wnba_2026_20260618_lv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "10p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Las Vegas Aces", "home_team_abbrev": "PHX", @@ -84729,8 +80022,7 @@ "canonical_id": "game_wnba_2026_20260618_dal_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Dallas Wings", "home_team_abbrev": "GSV", @@ -84747,8 +80039,7 @@ "canonical_id": "game_wnba_2026_20260618_min_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-17", - "time": "7p", + "game_datetime_utc": "2026-06-18T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Minnesota Lynx", "home_team_abbrev": "LA", @@ -84765,8 +80056,7 @@ "canonical_id": "game_mlb_2026_20260618_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:35p", + "game_datetime_utc": "2026-06-18T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -84783,8 +80073,7 @@ "canonical_id": "game_mlb_2026_20260618_cle_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:10p", + "game_datetime_utc": "2026-06-18T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIL", @@ -84801,8 +80090,7 @@ "canonical_id": "game_mlb_2026_20260618_min_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:35p", + "game_datetime_utc": "2026-06-18T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Minnesota Twins", "home_team_abbrev": "TEX", @@ -84819,8 +80107,7 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "1:10p", + "game_datetime_utc": "2026-06-18T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Baltimore Orioles", "home_team_abbrev": "SEA", @@ -84837,8 +80124,7 @@ "canonical_id": "game_mlb_2026_20260618_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -84855,8 +80141,7 @@ "canonical_id": "game_mlb_2026_20260618_chw_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "7:05p", + "game_datetime_utc": "2026-06-18T23:05:00Z", "home_team": "New York Yankees", "away_team": "Chicago White Sox", "home_team_abbrev": "NYY", @@ -84873,8 +80158,7 @@ "canonical_id": "game_mlb_2026_20260618_sf_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "7:15p", + "game_datetime_utc": "2026-06-18T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Francisco Giants", "home_team_abbrev": "ATL", @@ -84891,8 +80175,7 @@ "canonical_id": "game_wnba_2026_20260618_atl_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-18", - "time": "7:30p", + "game_datetime_utc": "2026-06-18T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Atlanta Dream", "home_team_abbrev": "IND", @@ -84909,8 +80192,7 @@ "canonical_id": "game_mlb_2026_20260618_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -84927,8 +80209,7 @@ "canonical_id": "game_mlb_2026_20260619_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-18", - "time": "6:40p", + "game_datetime_utc": "2026-06-19T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -84945,8 +80226,7 @@ "canonical_id": "game_mlb_2026_20260619_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "1:20p", + "game_datetime_utc": "2026-06-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -84963,8 +80243,7 @@ "canonical_id": "game_mlb_2026_20260619_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-19T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -84981,8 +80260,7 @@ "canonical_id": "game_mlb_2026_20260619_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:05p", + "game_datetime_utc": "2026-06-19T23:05:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -84999,8 +80277,7 @@ "canonical_id": "game_mlb_2026_20260619_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-19T23:10:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85017,8 +80294,7 @@ "canonical_id": "game_mlb_2026_20260619_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-19T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85035,8 +80311,7 @@ "canonical_id": "game_mlb_2026_20260619_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:15p", + "game_datetime_utc": "2026-06-19T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85053,8 +80328,7 @@ "canonical_id": "game_wnba_2026_20260619_was_ny", "sport": "WNBA", "season": "2026", - "date": "2026-06-19", - "time": "7:30p", + "game_datetime_utc": "2026-06-19T23:30:00Z", "home_team": "New York Liberty", "away_team": "Washington Mystics", "home_team_abbrev": "NY", @@ -85071,8 +80345,7 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:05p", + "game_datetime_utc": "2026-06-20T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85089,8 +80362,7 @@ "canonical_id": "game_mlb_2026_20260620_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -85107,8 +80379,7 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T00:10:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85125,8 +80396,7 @@ "canonical_id": "game_mlb_2026_20260620_pit_col", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85143,8 +80413,7 @@ "canonical_id": "game_mlb_2026_20260620_min_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85161,8 +80430,7 @@ "canonical_id": "game_mlb_2026_20260620_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "6:40p", + "game_datetime_utc": "2026-06-20T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85179,8 +80447,7 @@ "canonical_id": "game_wnba_2026_20260620_min_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-19", - "time": "7p", + "game_datetime_utc": "2026-06-20T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Minnesota Lynx", "home_team_abbrev": "GSV", @@ -85197,8 +80464,7 @@ "canonical_id": "game_mlb_2026_20260620_bal_lad", "sport": "MLB", "season": "2026", - "date": "2026-06-19", - "time": "7:10p", + "game_datetime_utc": "2026-06-20T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85215,8 +80481,7 @@ "canonical_id": "game_wnba_2026_20260620_ind_atl", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "1p", + "game_datetime_utc": "2026-06-20T17:00:00Z", "home_team": "Atlanta Dream", "away_team": "Indiana Fever", "home_team_abbrev": "ATL", @@ -85233,8 +80498,7 @@ "canonical_id": "game_mlb_2026_20260620_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:10p", + "game_datetime_utc": "2026-06-20T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -85251,8 +80515,7 @@ "canonical_id": "game_mlb_2026_20260620_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:35p", + "game_datetime_utc": "2026-06-20T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -85269,8 +80532,7 @@ "canonical_id": "game_mlb_2026_20260620_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:20p", + "game_datetime_utc": "2026-06-20T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -85287,8 +80549,7 @@ "canonical_id": "game_wnba_2026_20260620_sea_phx", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "3p", + "game_datetime_utc": "2026-06-20T19:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Seattle Storm", "home_team_abbrev": "PHX", @@ -85305,8 +80566,7 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "3:05p", + "game_datetime_utc": "2026-06-20T20:05:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85323,8 +80583,7 @@ "canonical_id": "game_mlb_2026_20260620_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85341,8 +80600,7 @@ "canonical_id": "game_mlb_2026_20260620_bos_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "1:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85359,8 +80617,7 @@ "canonical_id": "game_mlb_2026_20260620_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85377,8 +80634,7 @@ "canonical_id": "game_mlb_2026_20260620_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "4:10p", + "game_datetime_utc": "2026-06-20T20:10:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85395,8 +80651,7 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "6:15p", + "game_datetime_utc": "2026-06-20T23:15:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85413,8 +80668,7 @@ "canonical_id": "game_mlb_2026_20260620_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:15p", + "game_datetime_utc": "2026-06-20T23:15:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -85431,8 +80685,7 @@ "canonical_id": "game_wnba_2026_20260621_chi_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-20", - "time": "7p", + "game_datetime_utc": "2026-06-21T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Chicago Sky", "home_team_abbrev": "DAL", @@ -85449,8 +80702,7 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T01:10:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85467,8 +80719,7 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:05p", + "game_datetime_utc": "2026-06-21T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85485,8 +80736,7 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T02:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85503,8 +80753,7 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:10p", + "game_datetime_utc": "2026-06-21T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85521,8 +80770,7 @@ "canonical_id": "game_mlb_2026_20260621_bos_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-06-20", - "time": "7:15p", + "game_datetime_utc": "2026-06-21T02:15:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85539,8 +80787,7 @@ "canonical_id": "game_mlb_2026_20260621_mil_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ATL", @@ -85557,8 +80804,7 @@ "canonical_id": "game_mlb_2026_20260621_cin_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T17:35:00Z", "home_team": "New York Yankees", "away_team": "Cincinnati Reds", "home_team_abbrev": "NYY", @@ -85575,8 +80821,7 @@ "canonical_id": "game_mlb_2026_20260621_sf_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Miami Marlins", "away_team": "San Francisco Giants", "home_team_abbrev": "MIA", @@ -85593,8 +80838,7 @@ "canonical_id": "game_mlb_2026_20260621_wsn_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Washington Nationals", "home_team_abbrev": "TB", @@ -85611,8 +80855,7 @@ "canonical_id": "game_mlb_2026_20260621_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:40p", + "game_datetime_utc": "2026-06-21T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -85629,8 +80872,7 @@ "canonical_id": "game_mlb_2026_20260621_stl_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "St. Louis Cardinals", "home_team_abbrev": "KC", @@ -85647,8 +80889,7 @@ "canonical_id": "game_mlb_2026_20260621_cle_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T18:10:00Z", "home_team": "Houston Astros", "away_team": "Cleveland Guardians", "home_team_abbrev": "HOU", @@ -85665,8 +80906,7 @@ "canonical_id": "game_mlb_2026_20260621_tor_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:20p", + "game_datetime_utc": "2026-06-21T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CHC", @@ -85683,8 +80923,7 @@ "canonical_id": "game_mlb_2026_20260621_sd_tex", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:35p", + "game_datetime_utc": "2026-06-21T18:35:00Z", "home_team": "Texas Rangers", "away_team": "San Diego Padres", "home_team_abbrev": "TEX", @@ -85701,8 +80940,7 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "COL", @@ -85719,8 +80957,7 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "12:10p", + "game_datetime_utc": "2026-06-21T19:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Minnesota Twins", "home_team_abbrev": "ARI", @@ -85737,8 +80974,7 @@ "canonical_id": "game_wnba_2026_20260621_gsv_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "1p", + "game_datetime_utc": "2026-06-21T20:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Golden State Valkyries", "home_team_abbrev": "LV", @@ -85755,8 +80991,7 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:05p", + "game_datetime_utc": "2026-06-21T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -85773,8 +81008,7 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAD", @@ -85791,8 +81025,7 @@ "canonical_id": "game_mlb_2026_20260621_bos_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "1:10p", + "game_datetime_utc": "2026-06-21T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Boston Red Sox", "home_team_abbrev": "SEA", @@ -85809,8 +81042,7 @@ "canonical_id": "game_wnba_2026_20260621_was_min", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "5p", + "game_datetime_utc": "2026-06-21T22:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Washington Mystics", "home_team_abbrev": "MIN", @@ -85827,8 +81059,7 @@ "canonical_id": "game_mlb_2026_20260621_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-21", - "time": "7:20p", + "game_datetime_utc": "2026-06-21T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -85845,8 +81076,7 @@ "canonical_id": "game_wnba_2026_20260622_ny_la", "sport": "WNBA", "season": "2026", - "date": "2026-06-21", - "time": "5p", + "game_datetime_utc": "2026-06-22T00:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "New York Liberty", "home_team_abbrev": "LA", @@ -85863,8 +81093,7 @@ "canonical_id": "game_mlb_2026_20260622_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -85881,8 +81110,7 @@ "canonical_id": "game_mlb_2026_20260622_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -85899,8 +81127,7 @@ "canonical_id": "game_mlb_2026_20260622_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -85917,8 +81144,7 @@ "canonical_id": "game_mlb_2026_20260622_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:45p", + "game_datetime_utc": "2026-06-22T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -85935,8 +81161,7 @@ "canonical_id": "game_wnba_2026_20260622_chi_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "7p", + "game_datetime_utc": "2026-06-22T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Chicago Sky", "home_team_abbrev": "CON", @@ -85953,8 +81178,7 @@ "canonical_id": "game_mlb_2026_20260622_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:07p", + "game_datetime_utc": "2026-06-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -85971,8 +81195,7 @@ "canonical_id": "game_mlb_2026_20260622_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-22T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -85989,8 +81212,7 @@ "canonical_id": "game_mlb_2026_20260622_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-22T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86007,8 +81229,7 @@ "canonical_id": "game_mlb_2026_20260622_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86025,8 +81246,7 @@ "canonical_id": "game_mlb_2026_20260622_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-22T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86043,8 +81263,7 @@ "canonical_id": "game_mlb_2026_20260622_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:45p", + "game_datetime_utc": "2026-06-22T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86061,8 +81280,7 @@ "canonical_id": "game_wnba_2026_20260623_phx_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "8p", + "game_datetime_utc": "2026-06-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Phoenix Mercury", "home_team_abbrev": "IND", @@ -86079,8 +81297,7 @@ "canonical_id": "game_mlb_2026_20260623_bos_col", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86097,8 +81314,7 @@ "canonical_id": "game_mlb_2026_20260623_bal_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "6:38p", + "game_datetime_utc": "2026-06-23T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86115,8 +81331,7 @@ "canonical_id": "game_wnba_2026_20260623_dal_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-22", - "time": "7p", + "game_datetime_utc": "2026-06-23T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Dallas Wings", "home_team_abbrev": "SEA", @@ -86133,8 +81348,7 @@ "canonical_id": "game_mlb_2026_20260623_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-22", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T02:10:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86151,8 +81365,7 @@ "canonical_id": "game_mlb_2026_20260623_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86169,8 +81382,7 @@ "canonical_id": "game_mlb_2026_20260623_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -86187,8 +81399,7 @@ "canonical_id": "game_mlb_2026_20260623_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -86205,8 +81416,7 @@ "canonical_id": "game_mlb_2026_20260623_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86223,8 +81433,7 @@ "canonical_id": "game_mlb_2026_20260623_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-23T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86241,8 +81450,7 @@ "canonical_id": "game_mlb_2026_20260623_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:07p", + "game_datetime_utc": "2026-06-23T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -86259,8 +81467,7 @@ "canonical_id": "game_mlb_2026_20260623_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -86277,8 +81484,7 @@ "canonical_id": "game_mlb_2026_20260623_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "7:10p", + "game_datetime_utc": "2026-06-23T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86295,8 +81501,7 @@ "canonical_id": "game_mlb_2026_20260623_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86313,8 +81518,7 @@ "canonical_id": "game_mlb_2026_20260623_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-23T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86331,8 +81535,7 @@ "canonical_id": "game_mlb_2026_20260623_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-23T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86349,8 +81552,7 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_1", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86367,8 +81569,7 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:38p", + "game_datetime_utc": "2026-06-24T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86385,8 +81586,7 @@ "canonical_id": "game_mlb_2026_20260624_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86403,8 +81603,7 @@ "canonical_id": "game_mlb_2026_20260624_oak_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-23", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86421,8 +81620,7 @@ "canonical_id": "game_wnba_2026_20260624_ny_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-23", - "time": "7p", + "game_datetime_utc": "2026-06-24T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "New York Liberty", "home_team_abbrev": "LV", @@ -86439,8 +81637,7 @@ "canonical_id": "game_mlb_2026_20260624_tex_mia", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "12:10p", + "game_datetime_utc": "2026-06-24T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Texas Rangers", "home_team_abbrev": "MIA", @@ -86457,8 +81654,7 @@ "canonical_id": "game_mlb_2026_20260624_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:10p", + "game_datetime_utc": "2026-06-24T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -86475,8 +81671,7 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_2", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:10p", + "game_datetime_utc": "2026-06-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Boston Red Sox", "home_team_abbrev": "COL", @@ -86493,8 +81688,7 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "1:07p", + "game_datetime_utc": "2026-06-24T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Baltimore Orioles", "home_team_abbrev": "LAA", @@ -86511,8 +81705,7 @@ "canonical_id": "game_mlb_2026_20260624_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86529,8 +81722,7 @@ "canonical_id": "game_mlb_2026_20260624_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86547,8 +81739,7 @@ "canonical_id": "game_mlb_2026_20260624_nyy_det", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "New York Yankees", "home_team_abbrev": "DET", @@ -86565,8 +81756,7 @@ "canonical_id": "game_mlb_2026_20260624_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86583,8 +81773,7 @@ "canonical_id": "game_wnba_2026_20260624_phx_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7p", + "game_datetime_utc": "2026-06-24T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Phoenix Mercury", "home_team_abbrev": "IND", @@ -86601,8 +81790,7 @@ "canonical_id": "game_mlb_2026_20260624_hou_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:07p", + "game_datetime_utc": "2026-06-24T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Houston Astros", "home_team_abbrev": "TOR", @@ -86619,8 +81807,7 @@ "canonical_id": "game_mlb_2026_20260624_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:10p", + "game_datetime_utc": "2026-06-24T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -86637,8 +81824,7 @@ "canonical_id": "game_mlb_2026_20260624_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "7:10p", + "game_datetime_utc": "2026-06-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86655,8 +81841,7 @@ "canonical_id": "game_wnba_2026_20260624_min_was", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7:30p", + "game_datetime_utc": "2026-06-24T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Minnesota Lynx", "home_team_abbrev": "WAS", @@ -86673,8 +81858,7 @@ "canonical_id": "game_mlb_2026_20260624_lad_min", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:40p", + "game_datetime_utc": "2026-06-24T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIN", @@ -86691,8 +81875,7 @@ "canonical_id": "game_mlb_2026_20260624_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-24T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86709,8 +81892,7 @@ "canonical_id": "game_mlb_2026_20260625_atl_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "5:40p", + "game_datetime_utc": "2026-06-25T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Atlanta Braves", "home_team_abbrev": "SD", @@ -86727,8 +81909,7 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-24", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86745,8 +81926,7 @@ "canonical_id": "game_wnba_2026_20260625_atl_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-24", - "time": "7p", + "game_datetime_utc": "2026-06-25T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Atlanta Dream", "home_team_abbrev": "GSV", @@ -86763,8 +81943,7 @@ "canonical_id": "game_mlb_2026_20260625_kc_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:10p", + "game_datetime_utc": "2026-06-25T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Kansas City Royals", "home_team_abbrev": "TB", @@ -86781,8 +81960,7 @@ "canonical_id": "game_mlb_2026_20260625_sea_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:35p", + "game_datetime_utc": "2026-06-25T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Seattle Mariners", "home_team_abbrev": "PIT", @@ -86799,8 +81977,7 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "12:45p", + "game_datetime_utc": "2026-06-25T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Oakland Athletics", "home_team_abbrev": "SF", @@ -86817,8 +81994,7 @@ "canonical_id": "game_mlb_2026_20260625_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:40p", + "game_datetime_utc": "2026-06-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -86835,8 +82011,7 @@ "canonical_id": "game_mlb_2026_20260625_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -86853,8 +82028,7 @@ "canonical_id": "game_mlb_2026_20260625_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:07p", + "game_datetime_utc": "2026-06-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -86871,8 +82045,7 @@ "canonical_id": "game_mlb_2026_20260625_chc_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:10p", + "game_datetime_utc": "2026-06-25T23:10:00Z", "home_team": "New York Mets", "away_team": "Chicago Cubs", "home_team_abbrev": "NYM", @@ -86889,8 +82062,7 @@ "canonical_id": "game_mlb_2026_20260625_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "7:10p", + "game_datetime_utc": "2026-06-25T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -86907,8 +82079,7 @@ "canonical_id": "game_mlb_2026_20260625_ari_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-25", - "time": "6:45p", + "game_datetime_utc": "2026-06-25T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "STL", @@ -86925,8 +82096,7 @@ "canonical_id": "game_wnba_2026_20260626_dal_lv", "sport": "WNBA", "season": "2026", - "date": "2026-06-25", - "time": "7p", + "game_datetime_utc": "2026-06-26T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Dallas Wings", "home_team_abbrev": "LV", @@ -86943,8 +82113,7 @@ "canonical_id": "game_wnba_2026_20260626_ny_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-25", - "time": "7p", + "game_datetime_utc": "2026-06-26T02:00:00Z", "home_team": "Seattle Storm", "away_team": "New York Liberty", "home_team_abbrev": "SEA", @@ -86961,8 +82130,7 @@ "canonical_id": "game_mlb_2026_20260626_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -86979,8 +82147,7 @@ "canonical_id": "game_mlb_2026_20260626_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -86997,8 +82164,7 @@ "canonical_id": "game_mlb_2026_20260626_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:05p", + "game_datetime_utc": "2026-06-26T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87015,8 +82181,7 @@ "canonical_id": "game_mlb_2026_20260626_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:07p", + "game_datetime_utc": "2026-06-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87033,8 +82198,7 @@ "canonical_id": "game_mlb_2026_20260626_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87051,8 +82215,7 @@ "canonical_id": "game_mlb_2026_20260626_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87069,8 +82232,7 @@ "canonical_id": "game_mlb_2026_20260626_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87087,8 +82249,7 @@ "canonical_id": "game_mlb_2026_20260626_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-26T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87105,8 +82266,7 @@ "canonical_id": "game_wnba_2026_20260626_was_con", "sport": "WNBA", "season": "2026", - "date": "2026-06-26", - "time": "7:30p", + "game_datetime_utc": "2026-06-26T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Washington Mystics", "home_team_abbrev": "CON", @@ -87123,8 +82283,7 @@ "canonical_id": "game_mlb_2026_20260626_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87141,8 +82300,7 @@ "canonical_id": "game_mlb_2026_20260626_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-26T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87159,8 +82317,7 @@ "canonical_id": "game_mlb_2026_20260627_col_min_1", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:10p", + "game_datetime_utc": "2026-06-27T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87177,8 +82334,7 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:15p", + "game_datetime_utc": "2026-06-27T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87195,8 +82351,7 @@ "canonical_id": "game_mlb_2026_20260627_oak_laa", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:38p", + "game_datetime_utc": "2026-06-27T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87213,8 +82368,7 @@ "canonical_id": "game_mlb_2026_20260627_lad_sd", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "6:40p", + "game_datetime_utc": "2026-06-27T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87231,8 +82385,7 @@ "canonical_id": "game_wnba_2026_20260627_atl_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-26", - "time": "7p", + "game_datetime_utc": "2026-06-27T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Atlanta Dream", "home_team_abbrev": "GSV", @@ -87249,8 +82402,7 @@ "canonical_id": "game_mlb_2026_20260627_atl_sf", "sport": "MLB", "season": "2026", - "date": "2026-06-26", - "time": "7:15p", + "game_datetime_utc": "2026-06-27T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87267,8 +82419,7 @@ "canonical_id": "game_mlb_2026_20260627_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "1:10p", + "game_datetime_utc": "2026-06-27T17:10:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87285,8 +82436,7 @@ "canonical_id": "game_mlb_2026_20260627_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "1:10p", + "game_datetime_utc": "2026-06-27T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -87303,8 +82453,7 @@ "canonical_id": "game_mlb_2026_20260627_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "3:07p", + "game_datetime_utc": "2026-06-27T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87321,8 +82470,7 @@ "canonical_id": "game_mlb_2026_20260627_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "4:05p", + "game_datetime_utc": "2026-06-27T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -87339,8 +82487,7 @@ "canonical_id": "game_mlb_2026_20260627_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "3:10p", + "game_datetime_utc": "2026-06-27T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87357,8 +82504,7 @@ "canonical_id": "game_mlb_2026_20260627_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "4:10p", + "game_datetime_utc": "2026-06-27T20:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87375,8 +82521,7 @@ "canonical_id": "game_mlb_2026_20260627_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87393,8 +82538,7 @@ "canonical_id": "game_mlb_2026_20260627_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "7:05p", + "game_datetime_utc": "2026-06-27T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87411,8 +82555,7 @@ "canonical_id": "game_mlb_2026_20260627_col_min_2", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87429,8 +82572,7 @@ "canonical_id": "game_mlb_2026_20260627_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "7:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87447,8 +82589,7 @@ "canonical_id": "game_mlb_2026_20260627_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:10p", + "game_datetime_utc": "2026-06-27T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87465,8 +82606,7 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:15p", + "game_datetime_utc": "2026-06-27T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87483,8 +82623,7 @@ "canonical_id": "game_wnba_2026_20260628_la_ind", "sport": "WNBA", "season": "2026", - "date": "2026-06-27", - "time": "8p", + "game_datetime_utc": "2026-06-28T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Los Angeles Sparks", "home_team_abbrev": "IND", @@ -87501,8 +82640,7 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "5:40p", + "game_datetime_utc": "2026-06-28T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87519,8 +82657,7 @@ "canonical_id": "game_wnba_2026_20260628_atl_sea", "sport": "WNBA", "season": "2026", - "date": "2026-06-27", - "time": "6p", + "game_datetime_utc": "2026-06-28T01:00:00Z", "home_team": "Seattle Storm", "away_team": "Atlanta Dream", "home_team_abbrev": "SEA", @@ -87537,8 +82674,7 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:05p", + "game_datetime_utc": "2026-06-28T01:05:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87555,8 +82691,7 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-06-27", - "time": "6:38p", + "game_datetime_utc": "2026-06-28T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87573,8 +82708,7 @@ "canonical_id": "game_mlb_2026_20260628_wsn_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:35p", + "game_datetime_utc": "2026-06-28T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Washington Nationals", "home_team_abbrev": "BAL", @@ -87591,8 +82725,7 @@ "canonical_id": "game_mlb_2026_20260628_cin_pit", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:35p", + "game_datetime_utc": "2026-06-28T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Cincinnati Reds", "home_team_abbrev": "PIT", @@ -87609,8 +82742,7 @@ "canonical_id": "game_mlb_2026_20260628_tex_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:37p", + "game_datetime_utc": "2026-06-28T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Texas Rangers", "home_team_abbrev": "TOR", @@ -87627,8 +82759,7 @@ "canonical_id": "game_mlb_2026_20260628_sea_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Seattle Mariners", "home_team_abbrev": "CLE", @@ -87645,8 +82776,7 @@ "canonical_id": "game_mlb_2026_20260628_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -87663,8 +82793,7 @@ "canonical_id": "game_mlb_2026_20260628_hou_det", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Houston Astros", "home_team_abbrev": "DET", @@ -87681,8 +82810,7 @@ "canonical_id": "game_mlb_2026_20260628_ari_tbr", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:40p", + "game_datetime_utc": "2026-06-28T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "TB", @@ -87699,8 +82827,7 @@ "canonical_id": "game_wnba_2026_20260628_min_dal", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "1p", + "game_datetime_utc": "2026-06-28T18:00:00Z", "home_team": "Dallas Wings", "away_team": "Minnesota Lynx", "home_team_abbrev": "DAL", @@ -87717,8 +82844,7 @@ "canonical_id": "game_mlb_2026_20260628_col_min", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Colorado Rockies", "home_team_abbrev": "MIN", @@ -87735,8 +82861,7 @@ "canonical_id": "game_mlb_2026_20260628_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -87753,8 +82878,7 @@ "canonical_id": "game_mlb_2026_20260628_kc_chw", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "CHW", @@ -87771,8 +82895,7 @@ "canonical_id": "game_mlb_2026_20260628_mia_stl", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:15p", + "game_datetime_utc": "2026-06-28T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Miami Marlins", "home_team_abbrev": "STL", @@ -87789,8 +82912,7 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "12:10p", + "game_datetime_utc": "2026-06-28T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Oakland Athletics", "home_team_abbrev": "LAA", @@ -87807,8 +82929,7 @@ "canonical_id": "game_wnba_2026_20260628_lv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "3p", + "game_datetime_utc": "2026-06-28T20:00:00Z", "home_team": "Chicago Sky", "away_team": "Las Vegas Aces", "home_team_abbrev": "CHI", @@ -87825,8 +82946,7 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:05p", + "game_datetime_utc": "2026-06-28T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Atlanta Braves", "home_team_abbrev": "SF", @@ -87843,8 +82963,7 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "1:10p", + "game_datetime_utc": "2026-06-28T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SD", @@ -87861,8 +82980,7 @@ "canonical_id": "game_wnba_2026_20260628_ny_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-06-28", - "time": "4p", + "game_datetime_utc": "2026-06-28T23:00:00Z", "home_team": "Golden State Valkyries", "away_team": "New York Liberty", "home_team_abbrev": "GSV", @@ -87879,8 +82997,7 @@ "canonical_id": "game_mlb_2026_20260628_nyy_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-28", - "time": "7:20p", + "game_datetime_utc": "2026-06-28T23:20:00Z", "home_team": "Boston Red Sox", "away_team": "New York Yankees", "home_team_abbrev": "BOS", @@ -87897,8 +83014,7 @@ "canonical_id": "game_mlb_2026_20260629_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:35p", + "game_datetime_utc": "2026-06-29T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -87915,8 +83031,7 @@ "canonical_id": "game_mlb_2026_20260629_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-29T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -87933,8 +83048,7 @@ "canonical_id": "game_mlb_2026_20260629_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:05p", + "game_datetime_utc": "2026-06-29T23:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -87951,8 +83065,7 @@ "canonical_id": "game_mlb_2026_20260629_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:07p", + "game_datetime_utc": "2026-06-29T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -87969,8 +83082,7 @@ "canonical_id": "game_mlb_2026_20260629_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-29T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -87987,8 +83099,7 @@ "canonical_id": "game_mlb_2026_20260629_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-29T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88005,8 +83116,7 @@ "canonical_id": "game_mlb_2026_20260629_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-29T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88023,8 +83133,7 @@ "canonical_id": "game_mlb_2026_20260630_sd_chc", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:05p", + "game_datetime_utc": "2026-06-30T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88041,8 +83150,7 @@ "canonical_id": "game_mlb_2026_20260630_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "7:10p", + "game_datetime_utc": "2026-06-30T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88059,8 +83167,7 @@ "canonical_id": "game_mlb_2026_20260630_mia_col", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88077,8 +83184,7 @@ "canonical_id": "game_mlb_2026_20260630_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88095,8 +83201,7 @@ "canonical_id": "game_mlb_2026_20260630_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88113,8 +83218,7 @@ "canonical_id": "game_mlb_2026_20260630_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-29", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88131,8 +83235,7 @@ "canonical_id": "game_mlb_2026_20260630_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:35p", + "game_datetime_utc": "2026-06-30T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -88149,8 +83252,7 @@ "canonical_id": "game_mlb_2026_20260630_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88167,8 +83269,7 @@ "canonical_id": "game_mlb_2026_20260630_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -88185,8 +83286,7 @@ "canonical_id": "game_mlb_2026_20260630_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:05p", + "game_datetime_utc": "2026-06-30T23:05:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -88203,8 +83303,7 @@ "canonical_id": "game_mlb_2026_20260630_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:07p", + "game_datetime_utc": "2026-06-30T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -88221,8 +83320,7 @@ "canonical_id": "game_mlb_2026_20260630_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:10p", + "game_datetime_utc": "2026-06-30T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88239,8 +83337,7 @@ "canonical_id": "game_mlb_2026_20260630_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:15p", + "game_datetime_utc": "2026-06-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88257,8 +83354,7 @@ "canonical_id": "game_mlb_2026_20260630_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88275,8 +83371,7 @@ "canonical_id": "game_mlb_2026_20260630_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-06-30T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88293,8 +83388,7 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:05p", + "game_datetime_utc": "2026-07-01T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88311,8 +83405,7 @@ "canonical_id": "game_mlb_2026_20260701_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88329,8 +83422,7 @@ "canonical_id": "game_mlb_2026_20260701_mia_col", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88347,8 +83439,7 @@ "canonical_id": "game_mlb_2026_20260701_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88365,8 +83456,7 @@ "canonical_id": "game_mlb_2026_20260701_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88383,8 +83473,7 @@ "canonical_id": "game_mlb_2026_20260701_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-06-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88401,8 +83490,7 @@ "canonical_id": "game_mlb_2026_20260701_chw_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "12:35p", + "game_datetime_utc": "2026-07-01T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago White Sox", "home_team_abbrev": "BAL", @@ -88419,8 +83507,7 @@ "canonical_id": "game_mlb_2026_20260701_tex_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:10p", + "game_datetime_utc": "2026-07-01T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Texas Rangers", "home_team_abbrev": "CLE", @@ -88437,8 +83524,7 @@ "canonical_id": "game_mlb_2026_20260701_wsn_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:35p", + "game_datetime_utc": "2026-07-01T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Washington Nationals", "home_team_abbrev": "BOS", @@ -88455,8 +83541,7 @@ "canonical_id": "game_mlb_2026_20260701_det_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:35p", + "game_datetime_utc": "2026-07-01T17:35:00Z", "home_team": "New York Yankees", "away_team": "Detroit Tigers", "home_team_abbrev": "NYY", @@ -88473,8 +83558,7 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "1:20p", + "game_datetime_utc": "2026-07-01T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "San Diego Padres", "home_team_abbrev": "CHC", @@ -88491,8 +83575,7 @@ "canonical_id": "game_mlb_2026_20260701_nym_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "3:07p", + "game_datetime_utc": "2026-07-01T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Mets", "home_team_abbrev": "TOR", @@ -88509,8 +83592,7 @@ "canonical_id": "game_mlb_2026_20260701_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88527,8 +83609,7 @@ "canonical_id": "game_mlb_2026_20260701_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:15p", + "game_datetime_utc": "2026-07-01T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88545,8 +83626,7 @@ "canonical_id": "game_mlb_2026_20260701_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88563,8 +83643,7 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_1", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:10p", + "game_datetime_utc": "2026-07-02T00:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88581,8 +83660,7 @@ "canonical_id": "game_mlb_2026_20260702_min_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "7:10p", + "game_datetime_utc": "2026-07-02T00:10:00Z", "home_team": "Houston Astros", "away_team": "Minnesota Twins", "home_team_abbrev": "HOU", @@ -88599,8 +83677,7 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88617,8 +83694,7 @@ "canonical_id": "game_mlb_2026_20260702_sf_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Francisco Giants", "home_team_abbrev": "ARI", @@ -88635,8 +83711,7 @@ "canonical_id": "game_mlb_2026_20260702_lad_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-01", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "OAK", @@ -88653,8 +83728,7 @@ "canonical_id": "game_mlb_2026_20260702_pit_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "12:35p", + "game_datetime_utc": "2026-07-02T16:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "PHI", @@ -88671,8 +83745,7 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_2", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "1:10p", + "game_datetime_utc": "2026-07-02T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -88689,8 +83762,7 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "1:10p", + "game_datetime_utc": "2026-07-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Miami Marlins", "home_team_abbrev": "COL", @@ -88707,8 +83779,7 @@ "canonical_id": "game_mlb_2026_20260702_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -88725,8 +83796,7 @@ "canonical_id": "game_mlb_2026_20260702_stl_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:15p", + "game_datetime_utc": "2026-07-02T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ATL", @@ -88743,8 +83813,7 @@ "canonical_id": "game_wnba_2026_20260702_atl_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "7:30p", + "game_datetime_utc": "2026-07-02T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Atlanta Dream", "home_team_abbrev": "WAS", @@ -88761,8 +83830,7 @@ "canonical_id": "game_mlb_2026_20260702_tbr_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-02T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Tampa Bay Rays", "home_team_abbrev": "KC", @@ -88779,8 +83847,7 @@ "canonical_id": "game_wnba_2026_20260703_dal_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "8p", + "game_datetime_utc": "2026-07-03T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Dallas Wings", "home_team_abbrev": "CON", @@ -88797,8 +83864,7 @@ "canonical_id": "game_mlb_2026_20260703_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:05p", + "game_datetime_utc": "2026-07-03T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -88815,8 +83881,7 @@ "canonical_id": "game_mlb_2026_20260703_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "6:40p", + "game_datetime_utc": "2026-07-03T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -88833,8 +83898,7 @@ "canonical_id": "game_wnba_2026_20260703_sea_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-02", - "time": "10p", + "game_datetime_utc": "2026-07-03T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Seattle Storm", "home_team_abbrev": "PHX", @@ -88851,8 +83915,7 @@ "canonical_id": "game_mlb_2026_20260703_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-02", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -88869,8 +83932,7 @@ "canonical_id": "game_mlb_2026_20260703_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "1:20p", + "game_datetime_utc": "2026-07-03T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -88887,8 +83949,7 @@ "canonical_id": "game_mlb_2026_20260703_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:45p", + "game_datetime_utc": "2026-07-03T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -88905,8 +83966,7 @@ "canonical_id": "game_mlb_2026_20260703_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:05p", + "game_datetime_utc": "2026-07-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -88923,8 +83983,7 @@ "canonical_id": "game_mlb_2026_20260703_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -88941,8 +84000,7 @@ "canonical_id": "game_mlb_2026_20260703_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-03T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -88959,8 +84017,7 @@ "canonical_id": "game_mlb_2026_20260703_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:15p", + "game_datetime_utc": "2026-07-03T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -88977,8 +84034,7 @@ "canonical_id": "game_wnba_2026_20260703_min_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-03", - "time": "7:30p", + "game_datetime_utc": "2026-07-03T23:30:00Z", "home_team": "New York Liberty", "away_team": "Minnesota Lynx", "home_team_abbrev": "NY", @@ -88995,8 +84051,7 @@ "canonical_id": "game_nwsl_2026_20260704_hou_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "8p", + "game_datetime_utc": "2026-07-04T00:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Houston Houston Dash", "home_team_abbrev": "WSH", @@ -89013,8 +84068,7 @@ "canonical_id": "game_mlb_2026_20260704_sf_col", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:10p", + "game_datetime_utc": "2026-07-04T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89031,8 +84085,7 @@ "canonical_id": "game_mlb_2026_20260704_tbr_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89049,8 +84102,7 @@ "canonical_id": "game_nwsl_2026_20260704_kcc_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "7:30p", + "game_datetime_utc": "2026-07-04T01:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "DEN", @@ -89067,8 +84119,7 @@ "canonical_id": "game_mlb_2026_20260704_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:38p", + "game_datetime_utc": "2026-07-04T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89085,8 +84136,7 @@ "canonical_id": "game_mlb_2026_20260704_mia_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:40p", + "game_datetime_utc": "2026-07-04T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89103,8 +84153,7 @@ "canonical_id": "game_mlb_2026_20260704_mil_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "6:40p", + "game_datetime_utc": "2026-07-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89121,8 +84170,7 @@ "canonical_id": "game_nwsl_2026_20260704_orl_ang", "sport": "NWSL", "season": "2026", - "date": "2026-07-03", - "time": "7p", + "game_datetime_utc": "2026-07-04T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "ANG", @@ -89139,8 +84187,7 @@ "canonical_id": "game_wnba_2026_20260704_chi_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-03", - "time": "7p", + "game_datetime_utc": "2026-07-04T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Chicago Sky", "home_team_abbrev": "LV", @@ -89157,8 +84204,7 @@ "canonical_id": "game_mlb_2026_20260704_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89175,8 +84221,7 @@ "canonical_id": "game_mlb_2026_20260704_tor_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-03", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89193,8 +84238,7 @@ "canonical_id": "game_mlb_2026_20260704_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "11:05a", + "game_datetime_utc": "2026-07-04T15:05:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -89211,8 +84255,7 @@ "canonical_id": "game_wnba_2026_20260704_gsv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-04", - "time": "1p", + "game_datetime_utc": "2026-07-04T17:00:00Z", "home_team": "Atlanta Dream", "away_team": "Golden State Valkyries", "home_team_abbrev": "ATL", @@ -89229,8 +84272,7 @@ "canonical_id": "game_mlb_2026_20260704_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "1:35p", + "game_datetime_utc": "2026-07-04T17:35:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -89247,8 +84289,7 @@ "canonical_id": "game_mlb_2026_20260704_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "3:05p", + "game_datetime_utc": "2026-07-04T20:05:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -89265,8 +84306,7 @@ "canonical_id": "game_mlb_2026_20260704_tor_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "1:10p", + "game_datetime_utc": "2026-07-04T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89283,8 +84323,7 @@ "canonical_id": "game_nwsl_2026_20260704_sea_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-04", - "time": "6:30p", + "game_datetime_utc": "2026-07-04T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "NCC", @@ -89301,8 +84340,7 @@ "canonical_id": "game_mlb_2026_20260704_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -89319,8 +84357,7 @@ "canonical_id": "game_mlb_2026_20260704_tbr_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89337,8 +84374,7 @@ "canonical_id": "game_mlb_2026_20260704_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-04T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -89355,8 +84391,7 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:08p", + "game_datetime_utc": "2026-07-05T00:08:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -89373,8 +84408,7 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "8:08p", + "game_datetime_utc": "2026-07-05T00:08:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89391,8 +84425,7 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-05T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89409,8 +84442,7 @@ "canonical_id": "game_mlb_2026_20260705_sf_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:10p", + "game_datetime_utc": "2026-07-05T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89427,8 +84459,7 @@ "canonical_id": "game_nwsl_2026_20260705_njy_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-04", - "time": "5:45p", + "game_datetime_utc": "2026-07-05T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "SDW", @@ -89445,8 +84476,7 @@ "canonical_id": "game_mlb_2026_20260705_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:38p", + "game_datetime_utc": "2026-07-05T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89463,8 +84493,7 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:40p", + "game_datetime_utc": "2026-07-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89481,8 +84510,7 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "6:40p", + "game_datetime_utc": "2026-07-05T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89499,8 +84527,7 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-07-04", - "time": "7:10p", + "game_datetime_utc": "2026-07-05T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89517,8 +84544,7 @@ "canonical_id": "game_nwsl_2026_20260705_bay_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "12p", + "game_datetime_utc": "2026-07-05T16:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "BOS", @@ -89535,8 +84561,7 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "12:30p", + "game_datetime_utc": "2026-07-05T16:30:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89553,8 +84578,7 @@ "canonical_id": "game_mlb_2026_20260705_bal_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1p", + "game_datetime_utc": "2026-07-05T17:00:00Z", "home_team": "Cincinnati Reds", "away_team": "Baltimore Orioles", "home_team_abbrev": "CIN", @@ -89571,8 +84595,7 @@ "canonical_id": "game_mlb_2026_20260705_pit_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1p", + "game_datetime_utc": "2026-07-05T17:00:00Z", "home_team": "Washington Nationals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "WSN", @@ -89589,8 +84612,7 @@ "canonical_id": "game_mlb_2026_20260705_min_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:35p", + "game_datetime_utc": "2026-07-05T17:35:00Z", "home_team": "New York Yankees", "away_team": "Minnesota Twins", "home_team_abbrev": "NYY", @@ -89607,8 +84629,7 @@ "canonical_id": "game_mlb_2026_20260705_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T18:00:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -89625,8 +84646,7 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:30p", + "game_datetime_utc": "2026-07-05T18:30:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -89643,8 +84663,7 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T19:00:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89661,8 +84680,7 @@ "canonical_id": "game_mlb_2026_20260705_det_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2:30p", + "game_datetime_utc": "2026-07-05T19:30:00Z", "home_team": "Texas Rangers", "away_team": "Detroit Tigers", "home_team_abbrev": "TEX", @@ -89679,8 +84697,7 @@ "canonical_id": "game_mlb_2026_20260705_tbr_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2:30p", + "game_datetime_utc": "2026-07-05T19:30:00Z", "home_team": "Houston Astros", "away_team": "Tampa Bay Rays", "home_team_abbrev": "HOU", @@ -89697,8 +84714,7 @@ "canonical_id": "game_mlb_2026_20260705_sf_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T20:00:00Z", "home_team": "Colorado Rockies", "away_team": "San Francisco Giants", "home_team_abbrev": "COL", @@ -89715,8 +84731,7 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:10p", + "game_datetime_utc": "2026-07-05T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Milwaukee Brewers", "home_team_abbrev": "ARI", @@ -89733,8 +84748,7 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "1:30p", + "game_datetime_utc": "2026-07-05T20:30:00Z", "home_team": "Oakland Athletics", "away_team": "Miami Marlins", "home_team_abbrev": "OAK", @@ -89751,8 +84765,7 @@ "canonical_id": "game_mlb_2026_20260705_tor_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "2p", + "game_datetime_utc": "2026-07-05T21:00:00Z", "home_team": "Seattle Mariners", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SEA", @@ -89769,8 +84782,7 @@ "canonical_id": "game_nwsl_2026_20260705_uta_chi", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T21:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Utah Utah Royals", "home_team_abbrev": "CHI", @@ -89787,8 +84799,7 @@ "canonical_id": "game_nwsl_2026_20260705_rgn_por", "sport": "NWSL", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T23:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "POR", @@ -89805,8 +84816,7 @@ "canonical_id": "game_wnba_2026_20260705_ind_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-05", - "time": "4p", + "game_datetime_utc": "2026-07-05T23:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Indiana Fever", "home_team_abbrev": "LV", @@ -89823,8 +84833,7 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "4:20p", + "game_datetime_utc": "2026-07-05T23:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -89841,8 +84850,7 @@ "canonical_id": "game_mlb_2026_20260706_bos_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-05", - "time": "6:30p", + "game_datetime_utc": "2026-07-06T01:30:00Z", "home_team": "Los Angeles Angels", "away_team": "Boston Red Sox", "home_team_abbrev": "LAA", @@ -89859,8 +84867,7 @@ "canonical_id": "game_mlb_2026_20260706_phi_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "1:10p", + "game_datetime_utc": "2026-07-06T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "KC", @@ -89877,8 +84884,7 @@ "canonical_id": "game_mlb_2026_20260706_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:40p", + "game_datetime_utc": "2026-07-06T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -89895,8 +84901,7 @@ "canonical_id": "game_mlb_2026_20260706_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:05p", + "game_datetime_utc": "2026-07-06T23:05:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -89913,8 +84918,7 @@ "canonical_id": "game_mlb_2026_20260706_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:15p", + "game_datetime_utc": "2026-07-06T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -89931,8 +84935,7 @@ "canonical_id": "game_wnba_2026_20260706_gsv_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7:30p", + "game_datetime_utc": "2026-07-06T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Golden State Valkyries", "home_team_abbrev": "WAS", @@ -89949,8 +84952,7 @@ "canonical_id": "game_mlb_2026_20260706_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:45p", + "game_datetime_utc": "2026-07-06T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -89967,8 +84969,7 @@ "canonical_id": "game_wnba_2026_20260707_con_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7p", + "game_datetime_utc": "2026-07-07T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Connecticut Sun", "home_team_abbrev": "MIN", @@ -89985,8 +84986,7 @@ "canonical_id": "game_mlb_2026_20260707_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90003,8 +85003,7 @@ "canonical_id": "game_mlb_2026_20260707_tor_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90021,8 +85020,7 @@ "canonical_id": "game_wnba_2026_20260707_sea_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-06", - "time": "7p", + "game_datetime_utc": "2026-07-07T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Seattle Storm", "home_team_abbrev": "LA", @@ -90039,8 +85037,7 @@ "canonical_id": "game_mlb_2026_20260707_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-06", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90057,8 +85054,7 @@ "canonical_id": "game_mlb_2026_20260707_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:35p", + "game_datetime_utc": "2026-07-07T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90075,8 +85071,7 @@ "canonical_id": "game_mlb_2026_20260707_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90093,8 +85088,7 @@ "canonical_id": "game_mlb_2026_20260707_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90111,8 +85105,7 @@ "canonical_id": "game_mlb_2026_20260707_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90129,8 +85122,7 @@ "canonical_id": "game_mlb_2026_20260707_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90147,8 +85139,7 @@ "canonical_id": "game_mlb_2026_20260707_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -90165,8 +85156,7 @@ "canonical_id": "game_mlb_2026_20260707_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T23:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90183,8 +85173,7 @@ "canonical_id": "game_mlb_2026_20260707_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-07T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90201,8 +85190,7 @@ "canonical_id": "game_mlb_2026_20260707_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90219,8 +85207,7 @@ "canonical_id": "game_mlb_2026_20260707_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90237,8 +85224,7 @@ "canonical_id": "game_mlb_2026_20260707_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-07T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90255,8 +85241,7 @@ "canonical_id": "game_wnba_2026_20260708_dal_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-07", - "time": "8p", + "game_datetime_utc": "2026-07-08T00:00:00Z", "home_team": "New York Liberty", "away_team": "Dallas Wings", "home_team_abbrev": "NY", @@ -90273,8 +85258,7 @@ "canonical_id": "game_mlb_2026_20260708_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:05p", + "game_datetime_utc": "2026-07-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90291,8 +85275,7 @@ "canonical_id": "game_mlb_2026_20260708_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90309,8 +85292,7 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90327,8 +85309,7 @@ "canonical_id": "game_wnba_2026_20260708_chi_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-07", - "time": "10p", + "game_datetime_utc": "2026-07-08T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Chicago Sky", "home_team_abbrev": "PHX", @@ -90345,8 +85326,7 @@ "canonical_id": "game_mlb_2026_20260708_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-07", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90363,8 +85343,7 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "12:45p", + "game_datetime_utc": "2026-07-08T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SF", @@ -90381,8 +85360,7 @@ "canonical_id": "game_mlb_2026_20260708_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:35p", + "game_datetime_utc": "2026-07-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90399,8 +85377,7 @@ "canonical_id": "game_mlb_2026_20260708_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90417,8 +85394,7 @@ "canonical_id": "game_mlb_2026_20260708_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90435,8 +85411,7 @@ "canonical_id": "game_mlb_2026_20260708_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90453,8 +85428,7 @@ "canonical_id": "game_mlb_2026_20260708_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90471,8 +85445,7 @@ "canonical_id": "game_mlb_2026_20260708_hou_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Houston Astros", "home_team_abbrev": "WSN", @@ -90489,8 +85462,7 @@ "canonical_id": "game_mlb_2026_20260708_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T23:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90507,8 +85479,7 @@ "canonical_id": "game_mlb_2026_20260708_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-08T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90525,8 +85496,7 @@ "canonical_id": "game_mlb_2026_20260708_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90543,8 +85513,7 @@ "canonical_id": "game_mlb_2026_20260708_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:40p", + "game_datetime_utc": "2026-07-08T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90561,8 +85530,7 @@ "canonical_id": "game_mlb_2026_20260708_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "6:45p", + "game_datetime_utc": "2026-07-08T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90579,8 +85547,7 @@ "canonical_id": "game_wnba_2026_20260709_min_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-08", - "time": "8p", + "game_datetime_utc": "2026-07-09T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Minnesota Lynx", "home_team_abbrev": "CON", @@ -90597,8 +85564,7 @@ "canonical_id": "game_mlb_2026_20260709_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:05p", + "game_datetime_utc": "2026-07-09T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90615,8 +85581,7 @@ "canonical_id": "game_wnba_2026_20260709_ind_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-08", - "time": "7p", + "game_datetime_utc": "2026-07-09T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Indiana Fever", "home_team_abbrev": "LA", @@ -90633,8 +85598,7 @@ "canonical_id": "game_mlb_2026_20260709_col_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Colorado Rockies", "home_team_abbrev": "LAD", @@ -90651,8 +85615,7 @@ "canonical_id": "game_mlb_2026_20260709_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-08", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T02:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90669,8 +85632,7 @@ "canonical_id": "game_mlb_2026_20260709_atl_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "12:35p", + "game_datetime_utc": "2026-07-09T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Atlanta Braves", "home_team_abbrev": "PIT", @@ -90687,8 +85649,7 @@ "canonical_id": "game_mlb_2026_20260709_nyy_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Yankees", "home_team_abbrev": "TB", @@ -90705,8 +85666,7 @@ "canonical_id": "game_mlb_2026_20260709_kc_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T17:10:00Z", "home_team": "New York Mets", "away_team": "Kansas City Royals", "home_team_abbrev": "NYM", @@ -90723,8 +85683,7 @@ "canonical_id": "game_mlb_2026_20260709_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "12:40p", + "game_datetime_utc": "2026-07-09T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -90741,8 +85700,7 @@ "canonical_id": "game_mlb_2026_20260709_bos_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "1:10p", + "game_datetime_utc": "2026-07-09T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Boston Red Sox", "home_team_abbrev": "CHW", @@ -90759,8 +85717,7 @@ "canonical_id": "game_mlb_2026_20260709_chc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:35p", + "game_datetime_utc": "2026-07-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Chicago Cubs", "home_team_abbrev": "BAL", @@ -90777,8 +85734,7 @@ "canonical_id": "game_mlb_2026_20260709_sea_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Seattle Mariners", "home_team_abbrev": "MIA", @@ -90795,8 +85751,7 @@ "canonical_id": "game_mlb_2026_20260709_oak_det", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-09T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Oakland Athletics", "home_team_abbrev": "DET", @@ -90813,8 +85768,7 @@ "canonical_id": "game_mlb_2026_20260709_phi_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "7:10p", + "game_datetime_utc": "2026-07-09T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Philadelphia Phillies", "home_team_abbrev": "CIN", @@ -90831,8 +85785,7 @@ "canonical_id": "game_mlb_2026_20260709_mil_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:45p", + "game_datetime_utc": "2026-07-09T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Milwaukee Brewers", "home_team_abbrev": "STL", @@ -90849,8 +85802,7 @@ "canonical_id": "game_wnba_2026_20260710_sea_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-09", - "time": "8p", + "game_datetime_utc": "2026-07-10T00:00:00Z", "home_team": "Atlanta Dream", "away_team": "Seattle Storm", "home_team_abbrev": "ATL", @@ -90867,8 +85819,7 @@ "canonical_id": "game_mlb_2026_20260710_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "7:05p", + "game_datetime_utc": "2026-07-10T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -90885,8 +85836,7 @@ "canonical_id": "game_mlb_2026_20260710_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -90903,8 +85853,7 @@ "canonical_id": "game_mlb_2026_20260710_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-09", - "time": "6:45p", + "game_datetime_utc": "2026-07-10T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -90921,8 +85870,7 @@ "canonical_id": "game_wnba_2026_20260710_ind_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-09", - "time": "10p", + "game_datetime_utc": "2026-07-10T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Indiana Fever", "home_team_abbrev": "PHX", @@ -90939,8 +85887,7 @@ "canonical_id": "game_mlb_2026_20260710_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -90957,8 +85904,7 @@ "canonical_id": "game_mlb_2026_20260710_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -90975,8 +85921,7 @@ "canonical_id": "game_mlb_2026_20260710_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:45p", + "game_datetime_utc": "2026-07-10T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -90993,8 +85938,7 @@ "canonical_id": "game_mlb_2026_20260710_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:05p", + "game_datetime_utc": "2026-07-10T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91011,8 +85955,7 @@ "canonical_id": "game_mlb_2026_20260710_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91029,8 +85972,7 @@ "canonical_id": "game_mlb_2026_20260710_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91047,8 +85989,7 @@ "canonical_id": "game_mlb_2026_20260710_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91065,8 +86006,7 @@ "canonical_id": "game_mlb_2026_20260710_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-10T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91083,8 +86023,7 @@ "canonical_id": "game_wnba_2026_20260710_gsv_con", "sport": "WNBA", "season": "2026", - "date": "2026-07-10", - "time": "7:30p", + "game_datetime_utc": "2026-07-10T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Golden State Valkyries", "home_team_abbrev": "CON", @@ -91101,8 +86040,7 @@ "canonical_id": "game_mlb_2026_20260710_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91119,8 +86057,7 @@ "canonical_id": "game_nwsl_2026_20260711_chi_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "BOS", @@ -91137,8 +86074,7 @@ "canonical_id": "game_nwsl_2026_20260711_bay_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "San Francisco Bay FC", "home_team_abbrev": "RGN", @@ -91155,8 +86091,7 @@ "canonical_id": "game_nwsl_2026_20260711_kcc_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "ORL", @@ -91173,8 +86108,7 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:05p", + "game_datetime_utc": "2026-07-11T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91191,8 +86125,7 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91209,8 +86142,7 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:15p", + "game_datetime_utc": "2026-07-11T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91227,8 +86159,7 @@ "canonical_id": "game_mlb_2026_20260711_tor_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "6:40p", + "game_datetime_utc": "2026-07-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91245,8 +86176,7 @@ "canonical_id": "game_nwsl_2026_20260711_njy_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-10", - "time": "8p", + "game_datetime_utc": "2026-07-11T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "UTA", @@ -91263,8 +86193,7 @@ "canonical_id": "game_wnba_2026_20260711_chi_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-10", - "time": "7p", + "game_datetime_utc": "2026-07-11T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Chicago Sky", "home_team_abbrev": "LA", @@ -91281,8 +86210,7 @@ "canonical_id": "game_mlb_2026_20260711_ari_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91299,8 +86227,7 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-10", - "time": "7:15p", + "game_datetime_utc": "2026-07-11T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91317,8 +86244,7 @@ "canonical_id": "game_wnba_2026_20260711_ny_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-11", - "time": "12p", + "game_datetime_utc": "2026-07-11T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "New York Liberty", "home_team_abbrev": "MIN", @@ -91335,8 +86261,7 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "1:10p", + "game_datetime_utc": "2026-07-11T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91353,8 +86278,7 @@ "canonical_id": "game_wnba_2026_20260711_phx_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-11", - "time": "1p", + "game_datetime_utc": "2026-07-11T20:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Phoenix Mercury", "home_team_abbrev": "LV", @@ -91371,8 +86295,7 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "1:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91389,8 +86312,7 @@ "canonical_id": "game_mlb_2026_20260711_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -91407,8 +86329,7 @@ "canonical_id": "game_mlb_2026_20260711_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:05p", + "game_datetime_utc": "2026-07-11T20:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -91425,8 +86346,7 @@ "canonical_id": "game_mlb_2026_20260711_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91443,8 +86363,7 @@ "canonical_id": "game_mlb_2026_20260711_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91461,8 +86380,7 @@ "canonical_id": "game_mlb_2026_20260711_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "4:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91479,8 +86397,7 @@ "canonical_id": "game_mlb_2026_20260711_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "3:10p", + "game_datetime_utc": "2026-07-11T20:10:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91497,8 +86414,7 @@ "canonical_id": "game_mlb_2026_20260711_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:10p", + "game_datetime_utc": "2026-07-11T22:10:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -91515,8 +86431,7 @@ "canonical_id": "game_nwsl_2026_20260711_wsh_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-11", - "time": "6:30p", + "game_datetime_utc": "2026-07-11T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Washington Washington Spirit", "home_team_abbrev": "NCC", @@ -91533,8 +86448,7 @@ "canonical_id": "game_mlb_2026_20260711_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "7:05p", + "game_datetime_utc": "2026-07-11T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91551,8 +86465,7 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:05p", + "game_datetime_utc": "2026-07-11T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91569,8 +86482,7 @@ "canonical_id": "game_mlb_2026_20260711_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "7:10p", + "game_datetime_utc": "2026-07-11T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91587,8 +86499,7 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:15p", + "game_datetime_utc": "2026-07-11T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91605,8 +86516,7 @@ "canonical_id": "game_mlb_2026_20260712_tor_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "5:40p", + "game_datetime_utc": "2026-07-12T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91623,8 +86533,7 @@ "canonical_id": "game_nwsl_2026_20260712_ang_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-11", - "time": "5:45p", + "game_datetime_utc": "2026-07-12T00:45:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "SDW", @@ -91641,8 +86550,7 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-07-11", - "time": "6:10p", + "game_datetime_utc": "2026-07-12T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91659,8 +86567,7 @@ "canonical_id": "game_mlb_2026_20260712_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "12:10p", + "game_datetime_utc": "2026-07-12T16:10:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -91677,8 +86584,7 @@ "canonical_id": "game_mlb_2026_20260712_kc_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Kansas City Royals", "home_team_abbrev": "BAL", @@ -91695,8 +86601,7 @@ "canonical_id": "game_mlb_2026_20260712_nyy_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T17:35:00Z", "home_team": "Washington Nationals", "away_team": "New York Yankees", "home_team_abbrev": "WSN", @@ -91713,8 +86618,7 @@ "canonical_id": "game_mlb_2026_20260712_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -91731,8 +86635,7 @@ "canonical_id": "game_mlb_2026_20260712_cle_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIA", @@ -91749,8 +86652,7 @@ "canonical_id": "game_mlb_2026_20260712_phi_det", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Philadelphia Phillies", "home_team_abbrev": "DET", @@ -91767,8 +86669,7 @@ "canonical_id": "game_mlb_2026_20260712_sea_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Seattle Mariners", "home_team_abbrev": "TB", @@ -91785,8 +86686,7 @@ "canonical_id": "game_mlb_2026_20260712_bos_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:40p", + "game_datetime_utc": "2026-07-12T17:40:00Z", "home_team": "New York Mets", "away_team": "Boston Red Sox", "home_team_abbrev": "NYM", @@ -91803,8 +86703,7 @@ "canonical_id": "game_mlb_2026_20260712_laa_min", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIN", @@ -91821,8 +86720,7 @@ "canonical_id": "game_mlb_2026_20260712_oak_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "CHW", @@ -91839,8 +86737,7 @@ "canonical_id": "game_mlb_2026_20260712_atl_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:15p", + "game_datetime_utc": "2026-07-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Atlanta Braves", "home_team_abbrev": "STL", @@ -91857,8 +86754,7 @@ "canonical_id": "game_mlb_2026_20260712_hou_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:35p", + "game_datetime_utc": "2026-07-12T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Houston Astros", "home_team_abbrev": "TEX", @@ -91875,8 +86771,7 @@ "canonical_id": "game_wnba_2026_20260712_sea_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "3p", + "game_datetime_utc": "2026-07-12T19:00:00Z", "home_team": "Washington Mystics", "away_team": "Seattle Storm", "home_team_abbrev": "WAS", @@ -91893,8 +86788,7 @@ "canonical_id": "game_nwsl_2026_20260712_por_sea", "sport": "NWSL", "season": "2026", - "date": "2026-07-12", - "time": "1p", + "game_datetime_utc": "2026-07-12T20:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Portland Portland Thorns", "home_team_abbrev": "SEA", @@ -91911,8 +86805,7 @@ "canonical_id": "game_mlb_2026_20260712_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:05p", + "game_datetime_utc": "2026-07-12T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -91929,8 +86822,7 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "LAD", @@ -91947,8 +86839,7 @@ "canonical_id": "game_mlb_2026_20260712_tor_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-07-12", - "time": "1:10p", + "game_datetime_utc": "2026-07-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Toronto Blue Jays", "home_team_abbrev": "SD", @@ -91965,8 +86856,7 @@ "canonical_id": "game_nwsl_2026_20260712_hou_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-12", - "time": "5p", + "game_datetime_utc": "2026-07-12T23:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "DEN", @@ -91983,8 +86873,7 @@ "canonical_id": "game_wnba_2026_20260712_chi_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "6p", + "game_datetime_utc": "2026-07-12T23:00:00Z", "home_team": "Dallas Wings", "away_team": "Chicago Sky", "home_team_abbrev": "DAL", @@ -92001,8 +86890,7 @@ "canonical_id": "game_wnba_2026_20260713_ind_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-12", - "time": "6p", + "game_datetime_utc": "2026-07-13T01:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Indiana Fever", "home_team_abbrev": "LV", @@ -92019,8 +86907,7 @@ "canonical_id": "game_wnba_2026_20260713_la_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-13", - "time": "7p", + "game_datetime_utc": "2026-07-13T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Los Angeles Sparks", "home_team_abbrev": "ATL", @@ -92037,8 +86924,7 @@ "canonical_id": "game_wnba_2026_20260714_phx_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-13", - "time": "8p", + "game_datetime_utc": "2026-07-14T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Phoenix Mercury", "home_team_abbrev": "MIN", @@ -92055,8 +86941,7 @@ "canonical_id": "game_wnba_2026_20260715_sea_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "11a", + "game_datetime_utc": "2026-07-15T16:00:00Z", "home_team": "Chicago Sky", "away_team": "Seattle Storm", "home_team_abbrev": "CHI", @@ -92073,8 +86958,7 @@ "canonical_id": "game_wnba_2026_20260715_la_min", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "12p", + "game_datetime_utc": "2026-07-15T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Los Angeles Sparks", "home_team_abbrev": "MIN", @@ -92091,8 +86975,7 @@ "canonical_id": "game_nwsl_2026_20260715_bos_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-15", - "time": "7p", + "game_datetime_utc": "2026-07-15T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "ORL", @@ -92109,8 +86992,7 @@ "canonical_id": "game_nwsl_2026_20260715_wsh_njy", "sport": "NWSL", "season": "2026", - "date": "2026-07-15", - "time": "7p", + "game_datetime_utc": "2026-07-15T23:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "NJY", @@ -92127,8 +87009,7 @@ "canonical_id": "game_wnba_2026_20260716_gsv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-15", - "time": "8p", + "game_datetime_utc": "2026-07-16T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Golden State Valkyries", "home_team_abbrev": "IND", @@ -92145,8 +87026,7 @@ "canonical_id": "game_mlb_2026_20260716_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-16", - "time": "7:10p", + "game_datetime_utc": "2026-07-16T23:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -92163,8 +87043,7 @@ "canonical_id": "game_mls_2026_20260716_tor_mtl", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-16T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Toronto Toronto FC", "home_team_abbrev": "MTL", @@ -92181,8 +87060,7 @@ "canonical_id": "game_mls_2026_20260717_skc_stl", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "STL", @@ -92199,8 +87077,7 @@ "canonical_id": "game_mls_2026_20260717_van_chi", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "CHI", @@ -92217,8 +87094,7 @@ "canonical_id": "game_wnba_2026_20260717_ny_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-16", - "time": "8p", + "game_datetime_utc": "2026-07-17T01:00:00Z", "home_team": "Dallas Wings", "away_team": "New York Liberty", "home_team_abbrev": "DAL", @@ -92235,8 +87111,7 @@ "canonical_id": "game_mls_2026_20260717_por_sea", "sport": "MLS", "season": "2026", - "date": "2026-07-16", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SEA", @@ -92253,8 +87128,7 @@ "canonical_id": "game_mlb_2026_20260717_lad_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:05p", + "game_datetime_utc": "2026-07-17T23:05:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -92271,8 +87145,7 @@ "canonical_id": "game_mlb_2026_20260717_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:07p", + "game_datetime_utc": "2026-07-17T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -92289,8 +87162,7 @@ "canonical_id": "game_mlb_2026_20260717_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-17T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -92307,8 +87179,7 @@ "canonical_id": "game_mlb_2026_20260717_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -92325,8 +87196,7 @@ "canonical_id": "game_mlb_2026_20260717_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:15p", + "game_datetime_utc": "2026-07-17T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -92343,8 +87213,7 @@ "canonical_id": "game_wnba_2026_20260717_la_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "6:30p", + "game_datetime_utc": "2026-07-17T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CHI", @@ -92361,8 +87230,7 @@ "canonical_id": "game_wnba_2026_20260717_sea_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "7:30p", + "game_datetime_utc": "2026-07-17T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Seattle Storm", "home_team_abbrev": "IND", @@ -92379,8 +87247,7 @@ "canonical_id": "game_mlb_2026_20260717_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-17T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -92397,8 +87264,7 @@ "canonical_id": "game_mls_2026_20260718_atl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-07-17", - "time": "7p", + "game_datetime_utc": "2026-07-18T00:00:00Z", "home_team": "Nashville Nashville SC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NSH", @@ -92415,8 +87281,7 @@ "canonical_id": "game_nwsl_2026_20260718_sdw_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-07-17", - "time": "7p", + "game_datetime_utc": "2026-07-18T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "KCC", @@ -92433,8 +87298,7 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:05p", + "game_datetime_utc": "2026-07-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -92451,8 +87315,7 @@ "canonical_id": "game_mlb_2026_20260718_sd_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -92469,8 +87332,7 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T00:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -92487,8 +87349,7 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -92505,8 +87366,7 @@ "canonical_id": "game_mlb_2026_20260718_det_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:38p", + "game_datetime_utc": "2026-07-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -92523,8 +87383,7 @@ "canonical_id": "game_mlb_2026_20260718_stl_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -92541,8 +87400,7 @@ "canonical_id": "game_mlb_2026_20260718_wsn_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "6:40p", + "game_datetime_utc": "2026-07-18T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -92559,8 +87417,7 @@ "canonical_id": "game_wnba_2026_20260718_con_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-17", - "time": "10p", + "game_datetime_utc": "2026-07-18T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Connecticut Sun", "home_team_abbrev": "PHX", @@ -92577,8 +87434,7 @@ "canonical_id": "game_mlb_2026_20260718_sf_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-17", - "time": "7:10p", + "game_datetime_utc": "2026-07-18T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -92595,8 +87451,7 @@ "canonical_id": "game_mls_2026_20260718_lafc_lag", "sport": "MLS", "season": "2026", - "date": "2026-07-17", - "time": "7:30p", + "game_datetime_utc": "2026-07-18T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "LAG", @@ -92613,8 +87468,7 @@ "canonical_id": "game_nwsl_2026_20260718_sea_njy", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "12p", + "game_datetime_utc": "2026-07-18T16:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "NJY", @@ -92631,8 +87485,7 @@ "canonical_id": "game_nwsl_2026_20260718_por_den", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "12p", + "game_datetime_utc": "2026-07-18T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "DEN", @@ -92649,8 +87502,7 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:20p", + "game_datetime_utc": "2026-07-18T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -92667,8 +87519,7 @@ "canonical_id": "game_mlb_2026_20260718_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:07p", + "game_datetime_utc": "2026-07-18T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -92685,8 +87536,7 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:10p", + "game_datetime_utc": "2026-07-18T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -92703,8 +87553,7 @@ "canonical_id": "game_nwsl_2026_20260718_ncc_bay", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "1p", + "game_datetime_utc": "2026-07-18T20:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "BAY", @@ -92721,8 +87570,7 @@ "canonical_id": "game_mlb_2026_20260718_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:05p", + "game_datetime_utc": "2026-07-18T20:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -92739,8 +87587,7 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -92757,8 +87604,7 @@ "canonical_id": "game_mlb_2026_20260718_sd_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -92775,8 +87621,7 @@ "canonical_id": "game_mlb_2026_20260718_stl_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "1:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -92793,8 +87638,7 @@ "canonical_id": "game_mlb_2026_20260718_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -92811,8 +87655,7 @@ "canonical_id": "game_mlb_2026_20260718_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -92829,8 +87672,7 @@ "canonical_id": "game_mlb_2026_20260718_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "4:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -92847,8 +87689,7 @@ "canonical_id": "game_mlb_2026_20260718_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "3:10p", + "game_datetime_utc": "2026-07-18T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -92865,8 +87706,7 @@ "canonical_id": "game_nwsl_2026_20260718_ang_chi", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "5:30p", + "game_datetime_utc": "2026-07-18T22:30:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "CHI", @@ -92883,8 +87723,7 @@ "canonical_id": "game_nwsl_2026_20260719_hou_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "8p", + "game_datetime_utc": "2026-07-19T00:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Houston Houston Dash", "home_team_abbrev": "RGN", @@ -92901,8 +87740,7 @@ "canonical_id": "game_wnba_2026_20260719_ny_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-18", - "time": "8p", + "game_datetime_utc": "2026-07-19T00:00:00Z", "home_team": "Indiana Fever", "away_team": "New York Liberty", "home_team_abbrev": "IND", @@ -92919,8 +87757,7 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "8:08p", + "game_datetime_utc": "2026-07-19T00:08:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -92937,8 +87774,7 @@ "canonical_id": "game_mlb_2026_20260719_sf_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "5:08p", + "game_datetime_utc": "2026-07-19T00:08:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -92955,8 +87791,7 @@ "canonical_id": "game_wnba_2026_20260719_was_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-07-18", - "time": "5:30p", + "game_datetime_utc": "2026-07-19T00:30:00Z", "home_team": "Golden State Valkyries", "away_team": "Washington Mystics", "home_team_abbrev": "GSV", @@ -92973,8 +87808,7 @@ "canonical_id": "game_nwsl_2026_20260719_orl_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-18", - "time": "6:45p", + "game_datetime_utc": "2026-07-19T00:45:00Z", "home_team": "Utah Utah Royals", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "UTA", @@ -92991,8 +87825,7 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "7:05p", + "game_datetime_utc": "2026-07-19T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -93009,8 +87842,7 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-07-18", - "time": "7:07p", + "game_datetime_utc": "2026-07-19T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -93027,8 +87859,7 @@ "canonical_id": "game_mlb_2026_20260719_chw_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "12:10p", + "game_datetime_utc": "2026-07-19T16:10:00Z", "home_team": "Toronto Blue Jays", "away_team": "Chicago White Sox", "home_team_abbrev": "TOR", @@ -93045,8 +87876,7 @@ "canonical_id": "game_wnba_2026_20260719_la_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "12:30p", + "game_datetime_utc": "2026-07-19T17:30:00Z", "home_team": "Dallas Wings", "away_team": "Los Angeles Sparks", "home_team_abbrev": "DAL", @@ -93063,8 +87893,7 @@ "canonical_id": "game_mlb_2026_20260719_tbr_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BOS", @@ -93081,8 +87910,7 @@ "canonical_id": "game_mlb_2026_20260719_nym_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Mets", "home_team_abbrev": "PHI", @@ -93099,8 +87927,7 @@ "canonical_id": "game_mlb_2026_20260719_tex_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:35p", + "game_datetime_utc": "2026-07-19T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Texas Rangers", "home_team_abbrev": "ATL", @@ -93117,8 +87944,7 @@ "canonical_id": "game_mlb_2026_20260719_pit_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:40p", + "game_datetime_utc": "2026-07-19T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CLE", @@ -93135,8 +87961,7 @@ "canonical_id": "game_mlb_2026_20260719_bal_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Houston Astros", "away_team": "Baltimore Orioles", "home_team_abbrev": "HOU", @@ -93153,8 +87978,7 @@ "canonical_id": "game_mlb_2026_20260719_sd_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Diego Padres", "home_team_abbrev": "KC", @@ -93171,8 +87995,7 @@ "canonical_id": "game_mlb_2026_20260719_mia_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Miami Marlins", "home_team_abbrev": "MIL", @@ -93189,8 +88012,7 @@ "canonical_id": "game_mlb_2026_20260719_min_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:20p", + "game_datetime_utc": "2026-07-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Minnesota Twins", "home_team_abbrev": "CHC", @@ -93207,8 +88029,7 @@ "canonical_id": "game_mlb_2026_20260719_cin_col", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cincinnati Reds", "home_team_abbrev": "COL", @@ -93225,8 +88046,7 @@ "canonical_id": "game_wnba_2026_20260719_chi_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "4p", + "game_datetime_utc": "2026-07-19T20:00:00Z", "home_team": "Atlanta Dream", "away_team": "Chicago Sky", "home_team_abbrev": "ATL", @@ -93243,8 +88063,7 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:05p", + "game_datetime_utc": "2026-07-19T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Washington Nationals", "home_team_abbrev": "OAK", @@ -93261,8 +88080,7 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:07p", + "game_datetime_utc": "2026-07-19T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Detroit Tigers", "home_team_abbrev": "LAA", @@ -93279,8 +88097,7 @@ "canonical_id": "game_mlb_2026_20260719_stl_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "St. Louis Cardinals", "home_team_abbrev": "ARI", @@ -93297,8 +88114,7 @@ "canonical_id": "game_mlb_2026_20260719_sf_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "1:10p", + "game_datetime_utc": "2026-07-19T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "San Francisco Giants", "home_team_abbrev": "SEA", @@ -93315,8 +88131,7 @@ "canonical_id": "game_nwsl_2026_20260719_wsh_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-19", - "time": "7p", + "game_datetime_utc": "2026-07-19T23:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "BOS", @@ -93333,8 +88148,7 @@ "canonical_id": "game_wnba_2026_20260719_con_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-19", - "time": "7p", + "game_datetime_utc": "2026-07-19T23:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Connecticut Sun", "home_team_abbrev": "PHX", @@ -93351,8 +88165,7 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_2", "sport": "MLB", "season": "2026", - "date": "2026-07-19", - "time": "7:20p", + "game_datetime_utc": "2026-07-19T23:20:00Z", "home_team": "New York Yankees", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYY", @@ -93369,8 +88182,7 @@ "canonical_id": "game_mlb_2026_20260720_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -93387,8 +88199,7 @@ "canonical_id": "game_mlb_2026_20260720_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-20T23:05:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93405,8 +88216,7 @@ "canonical_id": "game_mlb_2026_20260720_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:07p", + "game_datetime_utc": "2026-07-20T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -93423,8 +88233,7 @@ "canonical_id": "game_mlb_2026_20260720_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-20T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -93441,8 +88250,7 @@ "canonical_id": "game_mlb_2026_20260720_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-20T23:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -93459,8 +88267,7 @@ "canonical_id": "game_mlb_2026_20260720_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:15p", + "game_datetime_utc": "2026-07-20T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -93477,8 +88284,7 @@ "canonical_id": "game_mlb_2026_20260720_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93495,8 +88301,7 @@ "canonical_id": "game_mlb_2026_20260720_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-20T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93513,8 +88318,7 @@ "canonical_id": "game_mlb_2026_20260721_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -93531,8 +88335,7 @@ "canonical_id": "game_mlb_2026_20260721_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -93549,8 +88352,7 @@ "canonical_id": "game_mlb_2026_20260721_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -93567,8 +88369,7 @@ "canonical_id": "game_mlb_2026_20260721_wsn_col", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -93585,8 +88386,7 @@ "canonical_id": "game_mlb_2026_20260721_oak_ari", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -93603,8 +88403,7 @@ "canonical_id": "game_mlb_2026_20260721_cin_sea", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -93621,8 +88420,7 @@ "canonical_id": "game_wnba_2026_20260721_was_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-07-20", - "time": "7p", + "game_datetime_utc": "2026-07-21T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Washington Mystics", "home_team_abbrev": "GSV", @@ -93639,8 +88437,7 @@ "canonical_id": "game_wnba_2026_20260721_min_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-20", - "time": "7p", + "game_datetime_utc": "2026-07-21T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Minnesota Lynx", "home_team_abbrev": "SEA", @@ -93657,8 +88454,7 @@ "canonical_id": "game_mlb_2026_20260721_stl_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-20", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T02:10:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -93675,8 +88471,7 @@ "canonical_id": "game_mlb_2026_20260721_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -93693,8 +88488,7 @@ "canonical_id": "game_mlb_2026_20260721_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -93711,8 +88505,7 @@ "canonical_id": "game_mlb_2026_20260721_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93729,8 +88522,7 @@ "canonical_id": "game_mlb_2026_20260721_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:07p", + "game_datetime_utc": "2026-07-21T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -93747,8 +88539,7 @@ "canonical_id": "game_mlb_2026_20260721_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:10p", + "game_datetime_utc": "2026-07-21T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -93765,8 +88556,7 @@ "canonical_id": "game_mlb_2026_20260721_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:15p", + "game_datetime_utc": "2026-07-21T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -93783,8 +88573,7 @@ "canonical_id": "game_mlb_2026_20260721_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93801,8 +88590,7 @@ "canonical_id": "game_mlb_2026_20260721_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-21T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93819,8 +88607,7 @@ "canonical_id": "game_mlb_2026_20260722_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-22T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -93837,8 +88624,7 @@ "canonical_id": "game_mlb_2026_20260722_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:05p", + "game_datetime_utc": "2026-07-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -93855,8 +88641,7 @@ "canonical_id": "game_mlb_2026_20260722_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "7:10p", + "game_datetime_utc": "2026-07-22T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -93873,8 +88658,7 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -93891,8 +88675,7 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:38p", + "game_datetime_utc": "2026-07-22T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -93909,8 +88692,7 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -93927,8 +88709,7 @@ "canonical_id": "game_mlb_2026_20260722_oak_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-07-21", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -93945,8 +88726,7 @@ "canonical_id": "game_mlb_2026_20260722_pit_nyy", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:35p", + "game_datetime_utc": "2026-07-22T17:35:00Z", "home_team": "New York Yankees", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "NYY", @@ -93963,8 +88743,7 @@ "canonical_id": "game_mlb_2026_20260722_sf_kc", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "San Francisco Giants", "home_team_abbrev": "KC", @@ -93981,8 +88760,7 @@ "canonical_id": "game_mlb_2026_20260722_nym_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "New York Mets", "home_team_abbrev": "MIL", @@ -93999,8 +88777,7 @@ "canonical_id": "game_wnba_2026_20260722_min_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "12p", + "game_datetime_utc": "2026-07-22T19:00:00Z", "home_team": "Seattle Storm", "away_team": "Minnesota Lynx", "home_team_abbrev": "SEA", @@ -94017,8 +88794,7 @@ "canonical_id": "game_wnba_2026_20260722_phx_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "12p", + "game_datetime_utc": "2026-07-22T19:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Phoenix Mercury", "home_team_abbrev": "LA", @@ -94035,8 +88811,7 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:10p", + "game_datetime_utc": "2026-07-22T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Washington Nationals", "home_team_abbrev": "COL", @@ -94053,8 +88828,7 @@ "canonical_id": "game_mlb_2026_20260722_oak_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "12:40p", + "game_datetime_utc": "2026-07-22T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Oakland Athletics", "home_team_abbrev": "ARI", @@ -94071,8 +88845,7 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "12:40p", + "game_datetime_utc": "2026-07-22T19:40:00Z", "home_team": "Seattle Mariners", "away_team": "Cincinnati Reds", "home_team_abbrev": "SEA", @@ -94089,8 +88862,7 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "1:07p", + "game_datetime_utc": "2026-07-22T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAA", @@ -94107,8 +88879,7 @@ "canonical_id": "game_mlb_2026_20260722_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -94125,8 +88896,7 @@ "canonical_id": "game_mlb_2026_20260722_lad_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "6:40p", + "game_datetime_utc": "2026-07-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "PHI", @@ -94143,8 +88913,7 @@ "canonical_id": "game_wnba_2026_20260722_chi_ny", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "7p", + "game_datetime_utc": "2026-07-22T23:00:00Z", "home_team": "New York Liberty", "away_team": "Chicago Sky", "home_team_abbrev": "NY", @@ -94161,8 +88930,7 @@ "canonical_id": "game_mlb_2026_20260722_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:07p", + "game_datetime_utc": "2026-07-22T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -94179,8 +88947,7 @@ "canonical_id": "game_mlb_2026_20260722_bal_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:10p", + "game_datetime_utc": "2026-07-22T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Baltimore Orioles", "home_team_abbrev": "BOS", @@ -94197,8 +88964,7 @@ "canonical_id": "game_mlb_2026_20260722_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:15p", + "game_datetime_utc": "2026-07-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -94215,8 +88981,7 @@ "canonical_id": "game_mls_2026_20260722_nyc_clb", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New York New York City FC", "home_team_abbrev": "CLB", @@ -94233,8 +88998,7 @@ "canonical_id": "game_mls_2026_20260722_van_cin", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "CIN", @@ -94251,8 +89015,7 @@ "canonical_id": "game_mls_2026_20260722_chi_mia", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "MIA", @@ -94269,8 +89032,7 @@ "canonical_id": "game_mls_2026_20260722_tor_ne", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NE", @@ -94287,8 +89049,7 @@ "canonical_id": "game_mls_2026_20260722_ny_phi", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New York New York Red Bulls", "home_team_abbrev": "PHI", @@ -94305,8 +89066,7 @@ "canonical_id": "game_wnba_2026_20260722_lv_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-22T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Las Vegas Aces", "home_team_abbrev": "WAS", @@ -94323,8 +89083,7 @@ "canonical_id": "game_mls_2026_20260723_atl_clt", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "8p", + "game_datetime_utc": "2026-07-23T00:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "CLT", @@ -94341,8 +89100,7 @@ "canonical_id": "game_wnba_2026_20260723_con_ind", "sport": "WNBA", "season": "2026", - "date": "2026-07-22", - "time": "8p", + "game_datetime_utc": "2026-07-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Connecticut Sun", "home_team_abbrev": "IND", @@ -94359,8 +89117,7 @@ "canonical_id": "game_mlb_2026_20260723_chw_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:05p", + "game_datetime_utc": "2026-07-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Chicago White Sox", "home_team_abbrev": "TEX", @@ -94377,8 +89134,7 @@ "canonical_id": "game_mlb_2026_20260723_det_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:05p", + "game_datetime_utc": "2026-07-23T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Detroit Tigers", "home_team_abbrev": "CHC", @@ -94395,8 +89151,7 @@ "canonical_id": "game_mlb_2026_20260723_mia_hou", "sport": "MLB", "season": "2026", - "date": "2026-07-22", - "time": "7:10p", + "game_datetime_utc": "2026-07-23T00:10:00Z", "home_team": "Houston Astros", "away_team": "Miami Marlins", "home_team_abbrev": "HOU", @@ -94413,8 +89168,7 @@ "canonical_id": "game_mls_2026_20260723_mtl_nsh", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NSH", @@ -94431,8 +89185,7 @@ "canonical_id": "game_mls_2026_20260723_sea_aus", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "AUS", @@ -94449,8 +89202,7 @@ "canonical_id": "game_mls_2026_20260723_min_skc", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SKC", @@ -94467,8 +89219,7 @@ "canonical_id": "game_mls_2026_20260723_dc_hou", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Washington D.C. United", "home_team_abbrev": "HOU", @@ -94485,8 +89236,7 @@ "canonical_id": "game_mls_2026_20260723_sd_col", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "San Diego San Diego FC", "home_team_abbrev": "COL", @@ -94503,8 +89253,7 @@ "canonical_id": "game_mls_2026_20260723_stl_lag", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "LAG", @@ -94521,8 +89270,7 @@ "canonical_id": "game_mls_2026_20260723_orl_sj", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Orlando Orlando City", "home_team_abbrev": "SJ", @@ -94539,8 +89287,7 @@ "canonical_id": "game_mls_2026_20260723_dal_por", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Dallas FC Dallas", "home_team_abbrev": "POR", @@ -94557,8 +89304,7 @@ "canonical_id": "game_mls_2026_20260723_slc_lafc", "sport": "MLS", "season": "2026", - "date": "2026-07-22", - "time": "7:30p", + "game_datetime_utc": "2026-07-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "LAFC", @@ -94575,8 +89321,7 @@ "canonical_id": "game_mlb_2026_20260723_sd_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "12:15p", + "game_datetime_utc": "2026-07-23T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "San Diego Padres", "home_team_abbrev": "ATL", @@ -94593,8 +89338,7 @@ "canonical_id": "game_mlb_2026_20260723_min_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "1:10p", + "game_datetime_utc": "2026-07-23T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Minnesota Twins", "home_team_abbrev": "CLE", @@ -94611,8 +89355,7 @@ "canonical_id": "game_mlb_2026_20260723_tbr_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "3:07p", + "game_datetime_utc": "2026-07-23T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TOR", @@ -94629,8 +89372,7 @@ "canonical_id": "game_mlb_2026_20260723_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-23", - "time": "6:40p", + "game_datetime_utc": "2026-07-23T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94647,8 +89389,7 @@ "canonical_id": "game_mlb_2026_20260724_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "3:10p", + "game_datetime_utc": "2026-07-24T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -94665,8 +89406,7 @@ "canonical_id": "game_mlb_2026_20260724_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -94683,8 +89423,7 @@ "canonical_id": "game_mlb_2026_20260724_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94701,8 +89440,7 @@ "canonical_id": "game_mlb_2026_20260724_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -94719,8 +89457,7 @@ "canonical_id": "game_mlb_2026_20260724_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:45p", + "game_datetime_utc": "2026-07-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -94737,8 +89474,7 @@ "canonical_id": "game_mlb_2026_20260724_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:05p", + "game_datetime_utc": "2026-07-24T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -94755,8 +89491,7 @@ "canonical_id": "game_mlb_2026_20260724_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -94773,8 +89508,7 @@ "canonical_id": "game_mlb_2026_20260724_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -94791,8 +89525,7 @@ "canonical_id": "game_mlb_2026_20260724_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -94809,8 +89542,7 @@ "canonical_id": "game_mlb_2026_20260724_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-24T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -94827,8 +89559,7 @@ "canonical_id": "game_mlb_2026_20260724_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "6:40p", + "game_datetime_utc": "2026-07-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -94845,8 +89576,7 @@ "canonical_id": "game_nwsl_2026_20260725_bay_hou", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "7p", + "game_datetime_utc": "2026-07-25T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "San Francisco Bay FC", "home_team_abbrev": "HOU", @@ -94863,8 +89593,7 @@ "canonical_id": "game_nwsl_2026_20260725_chi_orl", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "8p", + "game_datetime_utc": "2026-07-25T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "ORL", @@ -94881,8 +89610,7 @@ "canonical_id": "game_mlb_2026_20260725_sea_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:05p", + "game_datetime_utc": "2026-07-25T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -94899,8 +89627,7 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:10p", + "game_datetime_utc": "2026-07-25T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -94917,8 +89644,7 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -94935,8 +89661,7 @@ "canonical_id": "game_nwsl_2026_20260725_njy_por", "sport": "NWSL", "season": "2026", - "date": "2026-07-24", - "time": "7p", + "game_datetime_utc": "2026-07-25T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "POR", @@ -94953,8 +89678,7 @@ "canonical_id": "game_mlb_2026_20260725_laa_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-24", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -94971,8 +89695,7 @@ "canonical_id": "game_mlb_2026_20260725_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "1:10p", + "game_datetime_utc": "2026-07-25T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -94989,8 +89712,7 @@ "canonical_id": "game_mlb_2026_20260725_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:05p", + "game_datetime_utc": "2026-07-25T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -95007,8 +89729,7 @@ "canonical_id": "game_mlb_2026_20260725_laa_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "1:05p", + "game_datetime_utc": "2026-07-25T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -95025,8 +89746,7 @@ "canonical_id": "game_mlb_2026_20260725_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:10p", + "game_datetime_utc": "2026-07-25T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -95043,8 +89763,7 @@ "canonical_id": "game_mlb_2026_20260725_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "4:10p", + "game_datetime_utc": "2026-07-25T20:10:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -95061,8 +89780,7 @@ "canonical_id": "game_nwsl_2026_20260725_kcc_bos", "sport": "NWSL", "season": "2026", - "date": "2026-07-25", - "time": "5p", + "game_datetime_utc": "2026-07-25T21:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "BOS", @@ -95079,8 +89797,7 @@ "canonical_id": "game_mlb_2026_20260725_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:05p", + "game_datetime_utc": "2026-07-25T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -95097,8 +89814,7 @@ "canonical_id": "game_mlb_2026_20260725_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -95115,8 +89831,7 @@ "canonical_id": "game_mlb_2026_20260725_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:40p", + "game_datetime_utc": "2026-07-25T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -95133,8 +89848,7 @@ "canonical_id": "game_mls_2026_20260725_cin_clb", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7p", + "game_datetime_utc": "2026-07-25T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "CLB", @@ -95151,8 +89865,7 @@ "canonical_id": "game_mlb_2026_20260725_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "7:05p", + "game_datetime_utc": "2026-07-25T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -95169,8 +89882,7 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -95187,8 +89899,7 @@ "canonical_id": "game_mlb_2026_20260725_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -95205,8 +89916,7 @@ "canonical_id": "game_mlb_2026_20260725_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:10p", + "game_datetime_utc": "2026-07-25T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -95223,8 +89933,7 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -95241,8 +89950,7 @@ "canonical_id": "game_mlb_2026_20260725_sea_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "6:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95259,8 +89967,7 @@ "canonical_id": "game_mlb_2026_20260725_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-25", - "time": "7:15p", + "game_datetime_utc": "2026-07-25T23:15:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -95277,8 +89984,7 @@ "canonical_id": "game_mls_2026_20260725_mia_mtl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Miami Inter Miami", "home_team_abbrev": "MTL", @@ -95295,8 +90001,7 @@ "canonical_id": "game_mls_2026_20260725_sea_phi", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "PHI", @@ -95313,8 +90018,7 @@ "canonical_id": "game_mls_2026_20260725_nsh_orl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Nashville Nashville SC", "home_team_abbrev": "ORL", @@ -95331,8 +90035,7 @@ "canonical_id": "game_mls_2026_20260725_clt_ny", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "RB", @@ -95349,8 +90052,7 @@ "canonical_id": "game_mls_2026_20260725_chi_nyc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NYC", @@ -95367,8 +90069,7 @@ "canonical_id": "game_mls_2026_20260725_atl_ne", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NE", @@ -95385,8 +90086,7 @@ "canonical_id": "game_mls_2026_20260725_tor_dc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-25T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Toronto Toronto FC", "home_team_abbrev": "DC", @@ -95403,8 +90103,7 @@ "canonical_id": "game_nwsl_2026_20260725_uta_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-25", - "time": "7:45p", + "game_datetime_utc": "2026-07-25T23:45:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Utah Utah Royals", "home_team_abbrev": "NCC", @@ -95421,8 +90120,7 @@ "canonical_id": "game_mls_2026_20260726_col_stl", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "STL", @@ -95439,8 +90137,7 @@ "canonical_id": "game_mls_2026_20260726_aus_hou", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Austin Austin FC", "home_team_abbrev": "HOU", @@ -95457,8 +90154,7 @@ "canonical_id": "game_mls_2026_20260726_van_min", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "MIN", @@ -95475,8 +90171,7 @@ "canonical_id": "game_mls_2026_20260726_dal_sd", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "6:30p", + "game_datetime_utc": "2026-07-26T01:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SD", @@ -95493,8 +90188,7 @@ "canonical_id": "game_mls_2026_20260726_lag_sj", "sport": "MLS", "season": "2026", - "date": "2026-07-26", - "time": "2:30a", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SJ", @@ -95511,8 +90205,7 @@ "canonical_id": "game_mls_2026_20260726_slc_por", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "POR", @@ -95529,8 +90222,7 @@ "canonical_id": "game_mls_2026_20260726_skc_lafc", "sport": "MLS", "season": "2026", - "date": "2026-07-25", - "time": "7:30p", + "game_datetime_utc": "2026-07-26T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "LAFC", @@ -95547,8 +90239,7 @@ "canonical_id": "game_mlb_2026_20260726_cle_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "12:10p", + "game_datetime_utc": "2026-07-26T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Cleveland Guardians", "home_team_abbrev": "TB", @@ -95565,8 +90256,7 @@ "canonical_id": "game_mlb_2026_20260726_ari_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "WSN", @@ -95583,8 +90273,7 @@ "canonical_id": "game_mlb_2026_20260726_atl_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Atlanta Braves", "home_team_abbrev": "BAL", @@ -95601,8 +90290,7 @@ "canonical_id": "game_mlb_2026_20260726_tor_bos", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BOS", @@ -95619,8 +90307,7 @@ "canonical_id": "game_mlb_2026_20260726_chc_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Chicago Cubs", "home_team_abbrev": "PIT", @@ -95637,8 +90324,7 @@ "canonical_id": "game_mlb_2026_20260726_sd_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "Miami Marlins", "away_team": "San Diego Padres", "home_team_abbrev": "MIA", @@ -95655,8 +90341,7 @@ "canonical_id": "game_mlb_2026_20260726_lad_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "New York Mets", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "NYM", @@ -95673,8 +90358,7 @@ "canonical_id": "game_mlb_2026_20260726_kc_det", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:40p", + "game_datetime_utc": "2026-07-26T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Kansas City Royals", "home_team_abbrev": "DET", @@ -95691,8 +90375,7 @@ "canonical_id": "game_mlb_2026_20260726_col_mil", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Colorado Rockies", "home_team_abbrev": "MIL", @@ -95709,8 +90392,7 @@ "canonical_id": "game_mlb_2026_20260726_hou_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Houston Astros", "home_team_abbrev": "CHW", @@ -95727,8 +90409,7 @@ "canonical_id": "game_mlb_2026_20260726_oak_min", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:10p", + "game_datetime_utc": "2026-07-26T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Oakland Athletics", "home_team_abbrev": "MIN", @@ -95745,8 +90426,7 @@ "canonical_id": "game_mlb_2026_20260726_cin_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:15p", + "game_datetime_utc": "2026-07-26T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Cincinnati Reds", "home_team_abbrev": "STL", @@ -95763,8 +90443,7 @@ "canonical_id": "game_mlb_2026_20260726_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:35p", + "game_datetime_utc": "2026-07-26T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95781,8 +90460,7 @@ "canonical_id": "game_mlb_2026_20260726_laa_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "1:05p", + "game_datetime_utc": "2026-07-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Angels", "home_team_abbrev": "SF", @@ -95799,8 +90477,7 @@ "canonical_id": "game_nwsl_2026_20260726_sea_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "2p", + "game_datetime_utc": "2026-07-26T21:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "SDW", @@ -95817,8 +90494,7 @@ "canonical_id": "game_nwsl_2026_20260726_den_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "7p", + "game_datetime_utc": "2026-07-26T23:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "WSH", @@ -95835,8 +90511,7 @@ "canonical_id": "game_mlb_2026_20260726_nyy_phi", "sport": "MLB", "season": "2026", - "date": "2026-07-26", - "time": "7:20p", + "game_datetime_utc": "2026-07-26T23:20:00Z", "home_team": "Philadelphia Phillies", "away_team": "New York Yankees", "home_team_abbrev": "PHI", @@ -95853,8 +90528,7 @@ "canonical_id": "game_nwsl_2026_20260727_rgn_ang", "sport": "NWSL", "season": "2026", - "date": "2026-07-26", - "time": "6p", + "game_datetime_utc": "2026-07-27T01:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "ANG", @@ -95871,8 +90545,7 @@ "canonical_id": "game_mlb_2026_20260727_sea_tex", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "1:35p", + "game_datetime_utc": "2026-07-27T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Seattle Mariners", "home_team_abbrev": "TEX", @@ -95889,8 +90562,7 @@ "canonical_id": "game_mlb_2026_20260727_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -95907,8 +90579,7 @@ "canonical_id": "game_mlb_2026_20260727_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -95925,8 +90596,7 @@ "canonical_id": "game_mlb_2026_20260727_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -95943,8 +90613,7 @@ "canonical_id": "game_mlb_2026_20260727_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-27T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -95961,8 +90630,7 @@ "canonical_id": "game_mlb_2026_20260727_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "7:10p", + "game_datetime_utc": "2026-07-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -95979,8 +90647,7 @@ "canonical_id": "game_mlb_2026_20260727_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "7:10p", + "game_datetime_utc": "2026-07-27T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -95997,8 +90664,7 @@ "canonical_id": "game_mlb_2026_20260727_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-27T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96015,8 +90681,7 @@ "canonical_id": "game_mlb_2026_20260727_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-27T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96033,8 +90698,7 @@ "canonical_id": "game_mlb_2026_20260728_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:38p", + "game_datetime_utc": "2026-07-28T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96051,8 +90715,7 @@ "canonical_id": "game_mlb_2026_20260728_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96069,8 +90732,7 @@ "canonical_id": "game_mlb_2026_20260728_mil_sf", "sport": "MLB", "season": "2026", - "date": "2026-07-27", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96087,8 +90749,7 @@ "canonical_id": "game_mlb_2026_20260728_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -96105,8 +90766,7 @@ "canonical_id": "game_mlb_2026_20260728_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96123,8 +90783,7 @@ "canonical_id": "game_mlb_2026_20260728_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -96141,8 +90800,7 @@ "canonical_id": "game_mlb_2026_20260728_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -96159,8 +90817,7 @@ "canonical_id": "game_mlb_2026_20260728_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -96177,8 +90834,7 @@ "canonical_id": "game_mlb_2026_20260728_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-28T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -96195,8 +90851,7 @@ "canonical_id": "game_mlb_2026_20260728_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -96213,8 +90868,7 @@ "canonical_id": "game_wnba_2026_20260728_con_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "7:30p", + "game_datetime_utc": "2026-07-28T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Connecticut Sun", "home_team_abbrev": "WAS", @@ -96231,8 +90885,7 @@ "canonical_id": "game_mlb_2026_20260728_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96249,8 +90902,7 @@ "canonical_id": "game_mlb_2026_20260728_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-28T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96267,8 +90919,7 @@ "canonical_id": "game_mlb_2026_20260728_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-28T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96285,8 +90936,7 @@ "canonical_id": "game_wnba_2026_20260729_ind_sea", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "6:30p", + "game_datetime_utc": "2026-07-29T01:30:00Z", "home_team": "Seattle Storm", "away_team": "Indiana Fever", "home_team_abbrev": "SEA", @@ -96303,8 +90953,7 @@ "canonical_id": "game_mlb_2026_20260729_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:38p", + "game_datetime_utc": "2026-07-29T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96321,8 +90970,7 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -96339,8 +90987,7 @@ "canonical_id": "game_mlb_2026_20260729_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96357,8 +91004,7 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "6:45p", + "game_datetime_utc": "2026-07-29T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96375,8 +91021,7 @@ "canonical_id": "game_wnba_2026_20260729_ny_la", "sport": "WNBA", "season": "2026", - "date": "2026-07-28", - "time": "7p", + "game_datetime_utc": "2026-07-29T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "New York Liberty", "home_team_abbrev": "LA", @@ -96393,8 +91038,7 @@ "canonical_id": "game_mlb_2026_20260729_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-28", - "time": "7:10p", + "game_datetime_utc": "2026-07-29T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96411,8 +91055,7 @@ "canonical_id": "game_mlb_2026_20260729_phi_mia", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:10p", + "game_datetime_utc": "2026-07-29T16:10:00Z", "home_team": "Miami Marlins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIA", @@ -96429,8 +91072,7 @@ "canonical_id": "game_mlb_2026_20260729_ari_pit", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:35p", + "game_datetime_utc": "2026-07-29T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "PIT", @@ -96447,8 +91089,7 @@ "canonical_id": "game_mlb_2026_20260729_tor_wsn", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:05p", + "game_datetime_utc": "2026-07-29T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "WSN", @@ -96465,8 +91106,7 @@ "canonical_id": "game_mlb_2026_20260729_atl_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T17:10:00Z", "home_team": "New York Mets", "away_team": "Atlanta Braves", "home_team_abbrev": "NYM", @@ -96483,8 +91123,7 @@ "canonical_id": "game_mlb_2026_20260729_bal_det", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Baltimore Orioles", "home_team_abbrev": "DET", @@ -96501,8 +91140,7 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "12:45p", + "game_datetime_utc": "2026-07-29T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SF", @@ -96519,8 +91157,7 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "1:10p", + "game_datetime_utc": "2026-07-29T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Colorado Rockies", "home_team_abbrev": "SD", @@ -96537,8 +91174,7 @@ "canonical_id": "game_mlb_2026_20260729_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96555,8 +91191,7 @@ "canonical_id": "game_mlb_2026_20260729_cle_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "7:10p", + "game_datetime_utc": "2026-07-29T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Cleveland Guardians", "home_team_abbrev": "CIN", @@ -96573,8 +91208,7 @@ "canonical_id": "game_mlb_2026_20260729_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96591,8 +91225,7 @@ "canonical_id": "game_mlb_2026_20260729_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-29T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96609,8 +91242,7 @@ "canonical_id": "game_mlb_2026_20260729_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:45p", + "game_datetime_utc": "2026-07-29T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96627,8 +91259,7 @@ "canonical_id": "game_nwsl_2026_20260730_rgn_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "KCC", @@ -96645,8 +91276,7 @@ "canonical_id": "game_wnba_2026_20260730_atl_dal", "sport": "WNBA", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Atlanta Dream", "home_team_abbrev": "DAL", @@ -96663,8 +91293,7 @@ "canonical_id": "game_nwsl_2026_20260730_wsh_uta", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T01:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Washington Washington Spirit", "home_team_abbrev": "UTA", @@ -96681,8 +91310,7 @@ "canonical_id": "game_mlb_2026_20260730_hou_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:38p", + "game_datetime_utc": "2026-07-30T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Houston Astros", "home_team_abbrev": "LAA", @@ -96699,8 +91327,7 @@ "canonical_id": "game_mlb_2026_20260730_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "6:40p", + "game_datetime_utc": "2026-07-30T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96717,8 +91344,7 @@ "canonical_id": "game_nwsl_2026_20260730_njy_bay", "sport": "NWSL", "season": "2026", - "date": "2026-07-29", - "time": "7p", + "game_datetime_utc": "2026-07-30T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "BAY", @@ -96735,8 +91361,7 @@ "canonical_id": "game_wnba_2026_20260730_gsv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-07-29", - "time": "10p", + "game_datetime_utc": "2026-07-30T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Golden State Valkyries", "home_team_abbrev": "PHX", @@ -96753,8 +91378,7 @@ "canonical_id": "game_mlb_2026_20260730_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-29", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96771,8 +91395,7 @@ "canonical_id": "game_mlb_2026_20260730_tex_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "12:10p", + "game_datetime_utc": "2026-07-30T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Texas Rangers", "home_team_abbrev": "TB", @@ -96789,8 +91412,7 @@ "canonical_id": "game_mlb_2026_20260730_kc_min", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "12:40p", + "game_datetime_utc": "2026-07-30T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Kansas City Royals", "home_team_abbrev": "MIN", @@ -96807,8 +91429,7 @@ "canonical_id": "game_mlb_2026_20260730_nyy_chw", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "1:10p", + "game_datetime_utc": "2026-07-30T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Yankees", "home_team_abbrev": "CHW", @@ -96825,8 +91446,7 @@ "canonical_id": "game_mlb_2026_20260730_chc_stl", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "1:15p", + "game_datetime_utc": "2026-07-30T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago Cubs", "home_team_abbrev": "STL", @@ -96843,8 +91463,7 @@ "canonical_id": "game_mlb_2026_20260730_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -96861,8 +91480,7 @@ "canonical_id": "game_mlb_2026_20260730_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-30T23:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -96879,8 +91497,7 @@ "canonical_id": "game_mlb_2026_20260730_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:15p", + "game_datetime_utc": "2026-07-30T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -96897,8 +91514,7 @@ "canonical_id": "game_wnba_2026_20260731_con_chi", "sport": "WNBA", "season": "2026", - "date": "2026-07-30", - "time": "7p", + "game_datetime_utc": "2026-07-31T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Connecticut Sun", "home_team_abbrev": "CHI", @@ -96915,8 +91531,7 @@ "canonical_id": "game_mlb_2026_20260731_bos_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-31T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Boston Red Sox", "home_team_abbrev": "OAK", @@ -96933,8 +91548,7 @@ "canonical_id": "game_mlb_2026_20260731_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "6:40p", + "game_datetime_utc": "2026-07-31T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -96951,8 +91565,7 @@ "canonical_id": "game_wnba_2026_20260731_ny_lv", "sport": "WNBA", "season": "2026", - "date": "2026-07-30", - "time": "7p", + "game_datetime_utc": "2026-07-31T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "New York Liberty", "home_team_abbrev": "LV", @@ -96969,8 +91582,7 @@ "canonical_id": "game_mlb_2026_20260731_sea_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-30", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Seattle Mariners", "home_team_abbrev": "LAD", @@ -96987,8 +91599,7 @@ "canonical_id": "game_mlb_2026_20260731_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "1:20p", + "game_datetime_utc": "2026-07-31T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -97005,8 +91616,7 @@ "canonical_id": "game_mlb_2026_20260731_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:10p", + "game_datetime_utc": "2026-07-31T22:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -97023,8 +91633,7 @@ "canonical_id": "game_mlb_2026_20260731_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:05p", + "game_datetime_utc": "2026-07-31T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97041,8 +91650,7 @@ "canonical_id": "game_mlb_2026_20260731_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:07p", + "game_datetime_utc": "2026-07-31T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -97059,8 +91667,7 @@ "canonical_id": "game_mlb_2026_20260731_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -97077,8 +91684,7 @@ "canonical_id": "game_mlb_2026_20260731_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -97095,8 +91701,7 @@ "canonical_id": "game_mlb_2026_20260731_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-07-31T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -97113,8 +91718,7 @@ "canonical_id": "game_mlb_2026_20260731_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:15p", + "game_datetime_utc": "2026-07-31T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -97131,8 +91735,7 @@ "canonical_id": "game_mls_2026_20260731_tor_nyc", "sport": "MLS", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NYC", @@ -97149,8 +91752,7 @@ "canonical_id": "game_wnba_2026_20260731_sea_atl", "sport": "WNBA", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Seattle Storm", "home_team_abbrev": "ATL", @@ -97167,8 +91769,7 @@ "canonical_id": "game_wnba_2026_20260731_dal_was", "sport": "WNBA", "season": "2026", - "date": "2026-07-31", - "time": "7:30p", + "game_datetime_utc": "2026-07-31T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Dallas Wings", "home_team_abbrev": "WAS", @@ -97185,8 +91786,7 @@ "canonical_id": "game_nwsl_2026_20260801_orl_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-07-31", - "time": "8p", + "game_datetime_utc": "2026-08-01T00:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "NCC", @@ -97203,8 +91803,7 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -97221,8 +91820,7 @@ "canonical_id": "game_mlb_2026_20260801_kc_col", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -97239,8 +91837,7 @@ "canonical_id": "game_mlb_2026_20260801_mil_laa", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:38p", + "game_datetime_utc": "2026-08-01T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -97257,8 +91854,7 @@ "canonical_id": "game_mlb_2026_20260801_det_oak", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -97275,8 +91871,7 @@ "canonical_id": "game_mlb_2026_20260801_sf_sd", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T01:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -97293,8 +91888,7 @@ "canonical_id": "game_mlb_2026_20260801_min_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -97311,8 +91905,7 @@ "canonical_id": "game_mlb_2026_20260801_bos_lad", "sport": "MLB", "season": "2026", - "date": "2026-07-31", - "time": "7:10p", + "game_datetime_utc": "2026-08-01T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -97329,8 +91922,7 @@ "canonical_id": "game_wnba_2026_20260801_lv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-01", - "time": "12p", + "game_datetime_utc": "2026-08-01T17:00:00Z", "home_team": "Chicago Sky", "away_team": "Las Vegas Aces", "home_team_abbrev": "CHI", @@ -97347,8 +91939,7 @@ "canonical_id": "game_wnba_2026_20260801_ny_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-01", - "time": "3p", + "game_datetime_utc": "2026-08-01T19:00:00Z", "home_team": "Phoenix Mercury", "away_team": "New York Liberty", "home_team_abbrev": "PHX", @@ -97365,8 +91956,7 @@ "canonical_id": "game_mlb_2026_20260801_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "3:07p", + "game_datetime_utc": "2026-08-01T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -97383,8 +91973,7 @@ "canonical_id": "game_nwsl_2026_20260801_chi_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "4p", + "game_datetime_utc": "2026-08-01T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "RGN", @@ -97401,8 +91990,7 @@ "canonical_id": "game_mlb_2026_20260801_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "4:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -97419,8 +92007,7 @@ "canonical_id": "game_mlb_2026_20260801_min_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "1:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -97437,8 +92024,7 @@ "canonical_id": "game_mlb_2026_20260801_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "4:10p", + "game_datetime_utc": "2026-08-01T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -97455,8 +92041,7 @@ "canonical_id": "game_nwsl_2026_20260801_ang_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "5:30p", + "game_datetime_utc": "2026-08-01T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "KCC", @@ -97473,8 +92058,7 @@ "canonical_id": "game_mlb_2026_20260801_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:40p", + "game_datetime_utc": "2026-08-01T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -97491,8 +92075,7 @@ "canonical_id": "game_mlb_2026_20260801_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:05p", + "game_datetime_utc": "2026-08-01T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97509,8 +92092,7 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-01T23:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -97527,8 +92109,7 @@ "canonical_id": "game_mlb_2026_20260801_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -97545,8 +92126,7 @@ "canonical_id": "game_mlb_2026_20260801_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "7:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -97563,8 +92143,7 @@ "canonical_id": "game_mlb_2026_20260801_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:15p", + "game_datetime_utc": "2026-08-01T23:15:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -97581,8 +92160,7 @@ "canonical_id": "game_mls_2026_20260801_orl_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Orlando Orlando City", "home_team_abbrev": "RB", @@ -97599,8 +92177,7 @@ "canonical_id": "game_mls_2026_20260801_atl_phi", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "PHI", @@ -97617,8 +92194,7 @@ "canonical_id": "game_mls_2026_20260801_lafc_van", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "4:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "VAN", @@ -97635,8 +92211,7 @@ "canonical_id": "game_mls_2026_20260801_nsh_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Nashville Nashville SC", "home_team_abbrev": "DC", @@ -97653,8 +92228,7 @@ "canonical_id": "game_mls_2026_20260801_clb_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "MIA", @@ -97671,8 +92245,7 @@ "canonical_id": "game_mls_2026_20260801_sj_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "CIN", @@ -97689,8 +92262,7 @@ "canonical_id": "game_mls_2026_20260801_ne_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-01T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "New England New England Revolution", "home_team_abbrev": "MTL", @@ -97707,8 +92279,7 @@ "canonical_id": "game_nwsl_2026_20260802_njy_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "7p", + "game_datetime_utc": "2026-08-02T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "HOU", @@ -97725,8 +92296,7 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-02T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -97743,8 +92313,7 @@ "canonical_id": "game_mls_2026_20260802_hou_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SKC", @@ -97761,8 +92330,7 @@ "canonical_id": "game_mls_2026_20260802_slc_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "STL", @@ -97779,8 +92347,7 @@ "canonical_id": "game_mls_2026_20260802_sd_min", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "San Diego San Diego FC", "home_team_abbrev": "MIN", @@ -97797,8 +92364,7 @@ "canonical_id": "game_mls_2026_20260802_clt_chi", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CHI", @@ -97815,8 +92381,7 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "5:40p", + "game_datetime_utc": "2026-08-02T00:40:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -97833,8 +92398,7 @@ "canonical_id": "game_nwsl_2026_20260802_sea_bay", "sport": "NWSL", "season": "2026", - "date": "2026-08-01", - "time": "5:45p", + "game_datetime_utc": "2026-08-02T00:45:00Z", "home_team": "San Francisco Bay FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "BAY", @@ -97851,8 +92415,7 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:10p", + "game_datetime_utc": "2026-08-02T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -97869,8 +92432,7 @@ "canonical_id": "game_mls_2026_20260802_aus_col", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Austin Austin FC", "home_team_abbrev": "COL", @@ -97887,8 +92449,7 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:38p", + "game_datetime_utc": "2026-08-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -97905,8 +92466,7 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-01", - "time": "6:40p", + "game_datetime_utc": "2026-08-02T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -97923,8 +92483,7 @@ "canonical_id": "game_mls_2026_20260802_sea_por", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "POR", @@ -97941,8 +92500,7 @@ "canonical_id": "game_mls_2026_20260802_dal_lag", "sport": "MLS", "season": "2026", - "date": "2026-08-01", - "time": "7:30p", + "game_datetime_utc": "2026-08-02T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Dallas FC Dallas", "home_team_abbrev": "LAG", @@ -97959,8 +92517,7 @@ "canonical_id": "game_wnba_2026_20260802_ind_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-02", - "time": "12p", + "game_datetime_utc": "2026-08-02T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Indiana Fever", "home_team_abbrev": "MIN", @@ -97977,8 +92534,7 @@ "canonical_id": "game_mlb_2026_20260802_phi_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:35p", + "game_datetime_utc": "2026-08-02T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Philadelphia Phillies", "home_team_abbrev": "BAL", @@ -97995,8 +92551,7 @@ "canonical_id": "game_mlb_2026_20260802_wsn_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:35p", + "game_datetime_utc": "2026-08-02T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Washington Nationals", "home_team_abbrev": "ATL", @@ -98013,8 +92568,7 @@ "canonical_id": "game_mlb_2026_20260802_stl_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:37p", + "game_datetime_utc": "2026-08-02T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "St. Louis Cardinals", "home_team_abbrev": "TOR", @@ -98031,8 +92585,7 @@ "canonical_id": "game_mlb_2026_20260802_chw_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Chicago White Sox", "home_team_abbrev": "TB", @@ -98049,8 +92602,7 @@ "canonical_id": "game_mlb_2026_20260802_ari_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "CLE", @@ -98067,8 +92619,7 @@ "canonical_id": "game_mlb_2026_20260802_mia_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "New York Mets", "away_team": "Miami Marlins", "home_team_abbrev": "NYM", @@ -98085,8 +92636,7 @@ "canonical_id": "game_mlb_2026_20260802_pit_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:40p", + "game_datetime_utc": "2026-08-02T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CIN", @@ -98103,8 +92653,7 @@ "canonical_id": "game_mlb_2026_20260802_tex_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T18:10:00Z", "home_team": "Houston Astros", "away_team": "Texas Rangers", "home_team_abbrev": "HOU", @@ -98121,8 +92670,7 @@ "canonical_id": "game_mlb_2026_20260802_nyy_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:20p", + "game_datetime_utc": "2026-08-02T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "New York Yankees", "home_team_abbrev": "CHC", @@ -98139,8 +92687,7 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Kansas City Royals", "home_team_abbrev": "COL", @@ -98157,8 +92704,7 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "12:10p", + "game_datetime_utc": "2026-08-02T19:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAA", @@ -98175,8 +92721,7 @@ "canonical_id": "game_nwsl_2026_20260802_sdw_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "4p", + "game_datetime_utc": "2026-08-02T20:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "WSH", @@ -98193,8 +92738,7 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:05p", + "game_datetime_utc": "2026-08-02T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Detroit Tigers", "home_team_abbrev": "OAK", @@ -98211,8 +92755,7 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T20:10:00Z", "home_team": "San Diego Padres", "away_team": "San Francisco Giants", "home_team_abbrev": "SD", @@ -98229,8 +92772,7 @@ "canonical_id": "game_mlb_2026_20260802_min_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "1:10p", + "game_datetime_utc": "2026-08-02T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Minnesota Twins", "home_team_abbrev": "SEA", @@ -98247,8 +92789,7 @@ "canonical_id": "game_nwsl_2026_20260802_por_uta", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "5p", + "game_datetime_utc": "2026-08-02T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Portland Portland Thorns", "home_team_abbrev": "UTA", @@ -98265,8 +92806,7 @@ "canonical_id": "game_wnba_2026_20260802_con_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-02", - "time": "6p", + "game_datetime_utc": "2026-08-02T23:00:00Z", "home_team": "Dallas Wings", "away_team": "Connecticut Sun", "home_team_abbrev": "DAL", @@ -98283,8 +92823,7 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-02", - "time": "4:20p", + "game_datetime_utc": "2026-08-02T23:20:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Boston Red Sox", "home_team_abbrev": "LAD", @@ -98301,8 +92840,7 @@ "canonical_id": "game_nwsl_2026_20260803_bos_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-02", - "time": "7p", + "game_datetime_utc": "2026-08-03T01:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "DEN", @@ -98319,8 +92857,7 @@ "canonical_id": "game_mlb_2026_20260803_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-03T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98337,8 +92874,7 @@ "canonical_id": "game_mlb_2026_20260803_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-03T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98355,8 +92891,7 @@ "canonical_id": "game_wnba_2026_20260803_lv_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "7:30p", + "game_datetime_utc": "2026-08-03T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Las Vegas Aces", "home_team_abbrev": "ATL", @@ -98373,8 +92908,7 @@ "canonical_id": "game_mlb_2026_20260803_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-03T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -98391,8 +92925,7 @@ "canonical_id": "game_wnba_2026_20260804_phx_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "7p", + "game_datetime_utc": "2026-08-04T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Phoenix Mercury", "home_team_abbrev": "CHI", @@ -98409,8 +92942,7 @@ "canonical_id": "game_wnba_2026_20260804_sea_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-03", - "time": "8p", + "game_datetime_utc": "2026-08-04T00:00:00Z", "home_team": "New York Liberty", "away_team": "Seattle Storm", "home_team_abbrev": "NY", @@ -98427,8 +92959,7 @@ "canonical_id": "game_mlb_2026_20260804_sf_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98445,8 +92976,7 @@ "canonical_id": "game_mlb_2026_20260804_lad_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98463,8 +92993,7 @@ "canonical_id": "game_mlb_2026_20260804_tor_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "7:10p", + "game_datetime_utc": "2026-08-04T00:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98481,8 +93010,7 @@ "canonical_id": "game_mlb_2026_20260804_tbr_col", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98499,8 +93027,7 @@ "canonical_id": "game_mlb_2026_20260804_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-03", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -98517,8 +93044,7 @@ "canonical_id": "game_mlb_2026_20260804_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:35p", + "game_datetime_utc": "2026-08-04T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -98535,8 +93061,7 @@ "canonical_id": "game_mlb_2026_20260804_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98553,8 +93078,7 @@ "canonical_id": "game_mlb_2026_20260804_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -98571,8 +93095,7 @@ "canonical_id": "game_mlb_2026_20260804_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -98589,8 +93112,7 @@ "canonical_id": "game_mlb_2026_20260804_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-04T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98607,8 +93129,7 @@ "canonical_id": "game_mlb_2026_20260804_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:10p", + "game_datetime_utc": "2026-08-04T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -98625,8 +93146,7 @@ "canonical_id": "game_mlb_2026_20260804_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:15p", + "game_datetime_utc": "2026-08-04T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -98643,8 +93163,7 @@ "canonical_id": "game_mlb_2026_20260804_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -98661,8 +93180,7 @@ "canonical_id": "game_mlb_2026_20260804_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-04T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -98679,8 +93197,7 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98697,8 +93214,7 @@ "canonical_id": "game_mlb_2026_20260805_sf_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T00:05:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98715,8 +93231,7 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "7:10p", + "game_datetime_utc": "2026-08-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98733,8 +93248,7 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98751,8 +93265,7 @@ "canonical_id": "game_mlb_2026_20260805_det_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -98769,8 +93282,7 @@ "canonical_id": "game_mlb_2026_20260805_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-04", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -98787,8 +93299,7 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:10p", + "game_datetime_utc": "2026-08-05T18:10:00Z", "home_team": "Houston Astros", "away_team": "Toronto Blue Jays", "home_team_abbrev": "HOU", @@ -98805,8 +93316,7 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:20p", + "game_datetime_utc": "2026-08-05T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CHC", @@ -98823,8 +93333,7 @@ "canonical_id": "game_mlb_2026_20260805_sf_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:35p", + "game_datetime_utc": "2026-08-05T18:35:00Z", "home_team": "Texas Rangers", "away_team": "San Francisco Giants", "home_team_abbrev": "TEX", @@ -98841,8 +93350,7 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "1:10p", + "game_datetime_utc": "2026-08-05T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "COL", @@ -98859,8 +93367,7 @@ "canonical_id": "game_mlb_2026_20260805_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:35p", + "game_datetime_utc": "2026-08-05T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -98877,8 +93384,7 @@ "canonical_id": "game_mlb_2026_20260805_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -98895,8 +93401,7 @@ "canonical_id": "game_mlb_2026_20260805_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -98913,8 +93418,7 @@ "canonical_id": "game_mlb_2026_20260805_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -98931,8 +93435,7 @@ "canonical_id": "game_wnba_2026_20260805_sea_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7p", + "game_datetime_utc": "2026-08-05T23:00:00Z", "home_team": "New York Liberty", "away_team": "Seattle Storm", "home_team_abbrev": "NY", @@ -98949,8 +93452,7 @@ "canonical_id": "game_wnba_2026_20260805_phx_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7p", + "game_datetime_utc": "2026-08-05T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Phoenix Mercury", "home_team_abbrev": "ATL", @@ -98967,8 +93469,7 @@ "canonical_id": "game_mlb_2026_20260805_stl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:05p", + "game_datetime_utc": "2026-08-05T23:05:00Z", "home_team": "New York Yankees", "away_team": "St. Louis Cardinals", "home_team_abbrev": "NYY", @@ -98985,8 +93486,7 @@ "canonical_id": "game_mlb_2026_20260805_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:10p", + "game_datetime_utc": "2026-08-05T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -99003,8 +93503,7 @@ "canonical_id": "game_mlb_2026_20260805_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "7:15p", + "game_datetime_utc": "2026-08-05T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -99021,8 +93520,7 @@ "canonical_id": "game_wnba_2026_20260805_dal_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "7:30p", + "game_datetime_utc": "2026-08-05T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Dallas Wings", "home_team_abbrev": "WAS", @@ -99039,8 +93537,7 @@ "canonical_id": "game_mlb_2026_20260805_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -99057,8 +93554,7 @@ "canonical_id": "game_mlb_2026_20260805_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-05T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -99075,8 +93571,7 @@ "canonical_id": "game_wnba_2026_20260806_la_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-05", - "time": "8p", + "game_datetime_utc": "2026-08-06T01:00:00Z", "home_team": "Chicago Sky", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CHI", @@ -99093,8 +93588,7 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -99111,8 +93605,7 @@ "canonical_id": "game_mlb_2026_20260806_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-05", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -99129,8 +93622,7 @@ "canonical_id": "game_nwsl_2026_20260806_ncc_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-05", - "time": "8p", + "game_datetime_utc": "2026-08-06T02:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "DEN", @@ -99147,8 +93639,7 @@ "canonical_id": "game_mlb_2026_20260806_laa_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "12:35p", + "game_datetime_utc": "2026-08-06T16:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Los Angeles Angels", "home_team_abbrev": "BAL", @@ -99165,8 +93656,7 @@ "canonical_id": "game_mlb_2026_20260806_oak_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "12:40p", + "game_datetime_utc": "2026-08-06T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Oakland Athletics", "home_team_abbrev": "CIN", @@ -99183,8 +93673,7 @@ "canonical_id": "game_mlb_2026_20260806_nym_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "New York Mets", "home_team_abbrev": "CLE", @@ -99201,8 +93690,7 @@ "canonical_id": "game_mlb_2026_20260806_pit_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIL", @@ -99219,8 +93707,7 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "1:10p", + "game_datetime_utc": "2026-08-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Detroit Tigers", "home_team_abbrev": "SEA", @@ -99237,8 +93724,7 @@ "canonical_id": "game_mlb_2026_20260806_wsn_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:05p", + "game_datetime_utc": "2026-08-06T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Washington Nationals", "home_team_abbrev": "PHI", @@ -99255,8 +93741,7 @@ "canonical_id": "game_wnba_2026_20260806_lv_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-06", - "time": "7p", + "game_datetime_utc": "2026-08-06T23:00:00Z", "home_team": "Indiana Fever", "away_team": "Las Vegas Aces", "home_team_abbrev": "IND", @@ -99273,8 +93758,7 @@ "canonical_id": "game_mlb_2026_20260806_chw_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "7:10p", + "game_datetime_utc": "2026-08-06T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago White Sox", "home_team_abbrev": "BOS", @@ -99291,8 +93775,7 @@ "canonical_id": "game_mlb_2026_20260806_mia_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "7:15p", + "game_datetime_utc": "2026-08-06T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Miami Marlins", "home_team_abbrev": "ATL", @@ -99309,8 +93792,7 @@ "canonical_id": "game_mlb_2026_20260806_min_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:40p", + "game_datetime_utc": "2026-08-06T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Minnesota Twins", "home_team_abbrev": "KC", @@ -99327,8 +93809,7 @@ "canonical_id": "game_wnba_2026_20260807_la_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-06", - "time": "8p", + "game_datetime_utc": "2026-08-07T01:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Los Angeles Sparks", "home_team_abbrev": "MIN", @@ -99345,8 +93826,7 @@ "canonical_id": "game_mlb_2026_20260807_sd_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-06", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "San Diego Padres", "home_team_abbrev": "ARI", @@ -99363,8 +93843,7 @@ "canonical_id": "game_mlb_2026_20260807_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -99381,8 +93860,7 @@ "canonical_id": "game_mlb_2026_20260807_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -99399,8 +93877,7 @@ "canonical_id": "game_mlb_2026_20260807_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:45p", + "game_datetime_utc": "2026-08-07T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -99417,8 +93894,7 @@ "canonical_id": "game_mlb_2026_20260807_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:05p", + "game_datetime_utc": "2026-08-07T23:05:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -99435,8 +93911,7 @@ "canonical_id": "game_mlb_2026_20260807_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-07T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -99453,8 +93928,7 @@ "canonical_id": "game_mlb_2026_20260807_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-07T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -99471,8 +93945,7 @@ "canonical_id": "game_wnba_2026_20260807_atl_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "7:30p", + "game_datetime_utc": "2026-08-07T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Atlanta Dream", "home_team_abbrev": "WAS", @@ -99489,8 +93962,7 @@ "canonical_id": "game_wnba_2026_20260807_phx_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "7:30p", + "game_datetime_utc": "2026-08-07T23:30:00Z", "home_team": "Connecticut Sun", "away_team": "Phoenix Mercury", "home_team_abbrev": "CON", @@ -99507,8 +93979,7 @@ "canonical_id": "game_mlb_2026_20260807_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -99525,8 +93996,7 @@ "canonical_id": "game_mlb_2026_20260807_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-07T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -99543,8 +94013,7 @@ "canonical_id": "game_nwsl_2026_20260808_sdw_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-07", - "time": "8p", + "game_datetime_utc": "2026-08-08T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "NJY", @@ -99561,8 +94030,7 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:05p", + "game_datetime_utc": "2026-08-08T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -99579,8 +94047,7 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-08T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -99597,8 +94064,7 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:15p", + "game_datetime_utc": "2026-08-08T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -99615,8 +94081,7 @@ "canonical_id": "game_wnba_2026_20260808_gsv_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-07", - "time": "8:30p", + "game_datetime_utc": "2026-08-08T01:30:00Z", "home_team": "Dallas Wings", "away_team": "Golden State Valkyries", "home_team_abbrev": "DAL", @@ -99633,8 +94098,7 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -99651,8 +94115,7 @@ "canonical_id": "game_mlb_2026_20260808_lad_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -99669,8 +94132,7 @@ "canonical_id": "game_mlb_2026_20260808_tbr_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:10p", + "game_datetime_utc": "2026-08-08T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -99687,8 +94149,7 @@ "canonical_id": "game_mlb_2026_20260808_det_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-07", - "time": "7:15p", + "game_datetime_utc": "2026-08-08T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -99705,8 +94166,7 @@ "canonical_id": "game_wnba_2026_20260808_lv_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-08", - "time": "12p", + "game_datetime_utc": "2026-08-08T17:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Las Vegas Aces", "home_team_abbrev": "MIN", @@ -99723,8 +94183,7 @@ "canonical_id": "game_mlb_2026_20260808_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "1:35p", + "game_datetime_utc": "2026-08-08T17:35:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -99741,8 +94200,7 @@ "canonical_id": "game_wnba_2026_20260808_ind_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-08", - "time": "2p", + "game_datetime_utc": "2026-08-08T19:00:00Z", "home_team": "Chicago Sky", "away_team": "Indiana Fever", "home_team_abbrev": "CHI", @@ -99759,8 +94217,7 @@ "canonical_id": "game_nwsl_2026_20260808_uta_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "2p", + "game_datetime_utc": "2026-08-08T20:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "DEN", @@ -99777,8 +94234,7 @@ "canonical_id": "game_mlb_2026_20260808_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:10p", + "game_datetime_utc": "2026-08-08T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -99795,8 +94251,7 @@ "canonical_id": "game_mlb_2026_20260808_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:10p", + "game_datetime_utc": "2026-08-08T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -99813,8 +94268,7 @@ "canonical_id": "game_mlb_2026_20260808_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:05p", + "game_datetime_utc": "2026-08-08T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -99831,8 +94285,7 @@ "canonical_id": "game_nwsl_2026_20260808_ncc_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "6:30p", + "game_datetime_utc": "2026-08-08T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "WSH", @@ -99849,8 +94302,7 @@ "canonical_id": "game_mlb_2026_20260808_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:40p", + "game_datetime_utc": "2026-08-08T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -99867,8 +94319,7 @@ "canonical_id": "game_mlb_2026_20260808_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:45p", + "game_datetime_utc": "2026-08-08T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -99885,8 +94336,7 @@ "canonical_id": "game_nwsl_2026_20260808_rgn_orl", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "7p", + "game_datetime_utc": "2026-08-08T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "ORL", @@ -99903,8 +94353,7 @@ "canonical_id": "game_mlb_2026_20260808_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -99921,8 +94370,7 @@ "canonical_id": "game_mlb_2026_20260808_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -99939,8 +94387,7 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:10p", + "game_datetime_utc": "2026-08-08T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -99957,8 +94404,7 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -99975,8 +94421,7 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -99993,8 +94438,7 @@ "canonical_id": "game_mlb_2026_20260808_det_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "4:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -100011,8 +94455,7 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:15p", + "game_datetime_utc": "2026-08-08T23:15:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -100029,8 +94472,7 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "5:10p", + "game_datetime_utc": "2026-08-09T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -100047,8 +94489,7 @@ "canonical_id": "game_nwsl_2026_20260809_kcc_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-08", - "time": "7:45p", + "game_datetime_utc": "2026-08-09T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "HOU", @@ -100065,8 +94506,7 @@ "canonical_id": "game_mlb_2026_20260809_tbr_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-08", - "time": "6:50p", + "game_datetime_utc": "2026-08-09T01:50:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -100083,8 +94523,7 @@ "canonical_id": "game_mlb_2026_20260809_cin_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "12:10p", + "game_datetime_utc": "2026-08-09T16:10:00Z", "home_team": "Washington Nationals", "away_team": "Cincinnati Reds", "home_team_abbrev": "WSN", @@ -100101,8 +94540,7 @@ "canonical_id": "game_wnba_2026_20260809_lv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "12:30p", + "game_datetime_utc": "2026-08-09T16:30:00Z", "home_team": "New York Liberty", "away_team": "Las Vegas Aces", "home_team_abbrev": "NY", @@ -100119,8 +94557,7 @@ "canonical_id": "game_mlb_2026_20260809_nym_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "New York Mets", "home_team_abbrev": "PIT", @@ -100137,8 +94574,7 @@ "canonical_id": "game_mlb_2026_20260809_tor_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "Toronto Blue Jays", "home_team_abbrev": "PHI", @@ -100155,8 +94591,7 @@ "canonical_id": "game_mlb_2026_20260809_atl_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "New York Yankees", "away_team": "Atlanta Braves", "home_team_abbrev": "NYY", @@ -100173,8 +94608,7 @@ "canonical_id": "game_mlb_2026_20260809_oak_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Oakland Athletics", "home_team_abbrev": "BOS", @@ -100191,8 +94625,7 @@ "canonical_id": "game_mlb_2026_20260809_laa_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:40p", + "game_datetime_utc": "2026-08-09T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Angels", "home_team_abbrev": "MIA", @@ -100209,8 +94642,7 @@ "canonical_id": "game_mlb_2026_20260809_cle_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "CHW", @@ -100227,8 +94659,7 @@ "canonical_id": "game_mlb_2026_20260809_min_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Minnesota Twins", "home_team_abbrev": "MIL", @@ -100245,8 +94676,7 @@ "canonical_id": "game_mlb_2026_20260809_chc_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago Cubs", "home_team_abbrev": "KC", @@ -100263,8 +94693,7 @@ "canonical_id": "game_mlb_2026_20260809_col_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:15p", + "game_datetime_utc": "2026-08-09T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Colorado Rockies", "home_team_abbrev": "STL", @@ -100281,8 +94710,7 @@ "canonical_id": "game_mlb_2026_20260809_bal_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:35p", + "game_datetime_utc": "2026-08-09T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Baltimore Orioles", "home_team_abbrev": "TEX", @@ -100299,8 +94727,7 @@ "canonical_id": "game_wnba_2026_20260809_phx_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "3p", + "game_datetime_utc": "2026-08-09T19:00:00Z", "home_team": "Washington Mystics", "away_team": "Phoenix Mercury", "home_team_abbrev": "WAS", @@ -100317,8 +94744,7 @@ "canonical_id": "game_wnba_2026_20260809_dal_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "2:30p", + "game_datetime_utc": "2026-08-09T19:30:00Z", "home_team": "Minnesota Lynx", "away_team": "Dallas Wings", "home_team_abbrev": "MIN", @@ -100335,8 +94761,7 @@ "canonical_id": "game_nwsl_2026_20260809_por_bos", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "4p", + "game_datetime_utc": "2026-08-09T20:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "BOS", @@ -100353,8 +94778,7 @@ "canonical_id": "game_mlb_2026_20260809_det_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:05p", + "game_datetime_utc": "2026-08-09T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Detroit Tigers", "home_team_abbrev": "SF", @@ -100371,8 +94795,7 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ARI", @@ -100389,8 +94812,7 @@ "canonical_id": "game_mlb_2026_20260809_tbr_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "1:10p", + "game_datetime_utc": "2026-08-09T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Tampa Bay Rays", "home_team_abbrev": "SEA", @@ -100407,8 +94829,7 @@ "canonical_id": "game_nwsl_2026_20260809_bay_chi", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "6p", + "game_datetime_utc": "2026-08-09T23:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "San Francisco Bay FC", "home_team_abbrev": "CHI", @@ -100425,8 +94846,7 @@ "canonical_id": "game_wnba_2026_20260809_gsv_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-09", - "time": "4p", + "game_datetime_utc": "2026-08-09T23:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Golden State Valkyries", "home_team_abbrev": "LA", @@ -100443,8 +94863,7 @@ "canonical_id": "game_mlb_2026_20260810_hou_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-09", - "time": "5:20p", + "game_datetime_utc": "2026-08-10T00:20:00Z", "home_team": "San Diego Padres", "away_team": "Houston Astros", "home_team_abbrev": "SD", @@ -100461,8 +94880,7 @@ "canonical_id": "game_nwsl_2026_20260810_ang_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-09", - "time": "6p", + "game_datetime_utc": "2026-08-10T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "SEA", @@ -100479,8 +94897,7 @@ "canonical_id": "game_mlb_2026_20260810_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:07p", + "game_datetime_utc": "2026-08-10T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -100497,8 +94914,7 @@ "canonical_id": "game_mlb_2026_20260810_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:15p", + "game_datetime_utc": "2026-08-10T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -100515,8 +94931,7 @@ "canonical_id": "game_mlb_2026_20260810_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-10T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -100533,8 +94948,7 @@ "canonical_id": "game_mlb_2026_20260810_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:45p", + "game_datetime_utc": "2026-08-10T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -100551,8 +94965,7 @@ "canonical_id": "game_mlb_2026_20260811_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:38p", + "game_datetime_utc": "2026-08-11T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -100569,8 +94982,7 @@ "canonical_id": "game_mlb_2026_20260811_mil_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -100587,8 +94999,7 @@ "canonical_id": "game_mlb_2026_20260811_col_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -100605,8 +95016,7 @@ "canonical_id": "game_mlb_2026_20260811_tbr_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -100623,8 +95033,7 @@ "canonical_id": "game_mlb_2026_20260811_hou_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -100641,8 +95050,7 @@ "canonical_id": "game_wnba_2026_20260811_chi_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-10", - "time": "7p", + "game_datetime_utc": "2026-08-11T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Chicago Sky", "home_team_abbrev": "SEA", @@ -100659,8 +95067,7 @@ "canonical_id": "game_mlb_2026_20260811_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-10", - "time": "7:10p", + "game_datetime_utc": "2026-08-11T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -100677,8 +95084,7 @@ "canonical_id": "game_mlb_2026_20260811_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -100695,8 +95101,7 @@ "canonical_id": "game_mlb_2026_20260811_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -100713,8 +95118,7 @@ "canonical_id": "game_mlb_2026_20260811_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -100731,8 +95135,7 @@ "canonical_id": "game_mlb_2026_20260811_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:05p", + "game_datetime_utc": "2026-08-11T23:05:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -100749,8 +95152,7 @@ "canonical_id": "game_mlb_2026_20260811_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:07p", + "game_datetime_utc": "2026-08-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -100767,8 +95169,7 @@ "canonical_id": "game_mlb_2026_20260811_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:15p", + "game_datetime_utc": "2026-08-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -100785,8 +95186,7 @@ "canonical_id": "game_wnba_2026_20260811_ny_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7:30p", + "game_datetime_utc": "2026-08-11T23:30:00Z", "home_team": "Indiana Fever", "away_team": "New York Liberty", "home_team_abbrev": "IND", @@ -100803,8 +95203,7 @@ "canonical_id": "game_mlb_2026_20260811_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -100821,8 +95220,7 @@ "canonical_id": "game_mlb_2026_20260811_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-11T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -100839,8 +95237,7 @@ "canonical_id": "game_mlb_2026_20260811_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-11T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -100857,8 +95254,7 @@ "canonical_id": "game_mlb_2026_20260812_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:38p", + "game_datetime_utc": "2026-08-12T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -100875,8 +95271,7 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -100893,8 +95288,7 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -100911,8 +95305,7 @@ "canonical_id": "game_mlb_2026_20260812_mil_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -100929,8 +95322,7 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "6:45p", + "game_datetime_utc": "2026-08-12T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -100947,8 +95339,7 @@ "canonical_id": "game_wnba_2026_20260812_phx_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7p", + "game_datetime_utc": "2026-08-12T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Phoenix Mercury", "home_team_abbrev": "LA", @@ -100965,8 +95356,7 @@ "canonical_id": "game_wnba_2026_20260812_was_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-11", - "time": "7p", + "game_datetime_utc": "2026-08-12T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Washington Mystics", "home_team_abbrev": "LV", @@ -100983,8 +95373,7 @@ "canonical_id": "game_mlb_2026_20260812_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-11", - "time": "7:10p", + "game_datetime_utc": "2026-08-12T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -101001,8 +95390,7 @@ "canonical_id": "game_mlb_2026_20260812_bal_min", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:40p", + "game_datetime_utc": "2026-08-12T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Baltimore Orioles", "home_team_abbrev": "MIN", @@ -101019,8 +95407,7 @@ "canonical_id": "game_mlb_2026_20260812_phi_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "1:15p", + "game_datetime_utc": "2026-08-12T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "STL", @@ -101037,8 +95424,7 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:05p", + "game_datetime_utc": "2026-08-12T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Tampa Bay Rays", "home_team_abbrev": "OAK", @@ -101055,8 +95441,7 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:40p", + "game_datetime_utc": "2026-08-12T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Colorado Rockies", "home_team_abbrev": "ARI", @@ -101073,8 +95458,7 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "12:45p", + "game_datetime_utc": "2026-08-12T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Houston Astros", "home_team_abbrev": "SF", @@ -101091,8 +95475,7 @@ "canonical_id": "game_mlb_2026_20260812_mil_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "1:10p", + "game_datetime_utc": "2026-08-12T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Milwaukee Brewers", "home_team_abbrev": "SD", @@ -101109,8 +95492,7 @@ "canonical_id": "game_mlb_2026_20260812_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -101127,8 +95509,7 @@ "canonical_id": "game_mlb_2026_20260812_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -101145,8 +95526,7 @@ "canonical_id": "game_mlb_2026_20260812_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:45p", + "game_datetime_utc": "2026-08-12T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -101163,8 +95543,7 @@ "canonical_id": "game_mlb_2026_20260812_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:05p", + "game_datetime_utc": "2026-08-12T23:05:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -101181,8 +95560,7 @@ "canonical_id": "game_mlb_2026_20260812_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:07p", + "game_datetime_utc": "2026-08-12T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -101199,8 +95577,7 @@ "canonical_id": "game_mlb_2026_20260812_nym_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:15p", + "game_datetime_utc": "2026-08-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "New York Mets", "home_team_abbrev": "ATL", @@ -101217,8 +95594,7 @@ "canonical_id": "game_mlb_2026_20260812_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "6:40p", + "game_datetime_utc": "2026-08-12T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -101235,8 +95611,7 @@ "canonical_id": "game_wnba_2026_20260813_chi_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-12", - "time": "7p", + "game_datetime_utc": "2026-08-13T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Chicago Sky", "home_team_abbrev": "GSV", @@ -101253,8 +95628,7 @@ "canonical_id": "game_mlb_2026_20260813_kc_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:10p", + "game_datetime_utc": "2026-08-13T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Kansas City Royals", "home_team_abbrev": "LAD", @@ -101271,8 +95645,7 @@ "canonical_id": "game_mlb_2026_20260813_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-12", - "time": "7:10p", + "game_datetime_utc": "2026-08-13T02:10:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -101289,8 +95662,7 @@ "canonical_id": "game_mlb_2026_20260813_pit_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T17:10:00Z", "home_team": "Miami Marlins", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "MIA", @@ -101307,8 +95679,7 @@ "canonical_id": "game_mlb_2026_20260813_cle_det", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Cleveland Guardians", "home_team_abbrev": "DET", @@ -101325,8 +95696,7 @@ "canonical_id": "game_mlb_2026_20260813_sea_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:35p", + "game_datetime_utc": "2026-08-13T17:35:00Z", "home_team": "New York Yankees", "away_team": "Seattle Mariners", "home_team_abbrev": "NYY", @@ -101343,8 +95713,7 @@ "canonical_id": "game_mlb_2026_20260813_cin_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "1:10p", + "game_datetime_utc": "2026-08-13T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHW", @@ -101361,8 +95730,7 @@ "canonical_id": "game_mlb_2026_20260813_bos_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "3:07p", + "game_datetime_utc": "2026-08-13T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Boston Red Sox", "home_team_abbrev": "TOR", @@ -101379,8 +95747,7 @@ "canonical_id": "game_mlb_2026_20260813_chc_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "4:05p", + "game_datetime_utc": "2026-08-13T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Chicago Cubs", "home_team_abbrev": "WSN", @@ -101397,8 +95764,7 @@ "canonical_id": "game_wnba_2026_20260813_atl_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "7p", + "game_datetime_utc": "2026-08-13T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Atlanta Dream", "home_team_abbrev": "CON", @@ -101415,8 +95781,7 @@ "canonical_id": "game_mlb_2026_20260813_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "6:30p", + "game_datetime_utc": "2026-08-13T23:30:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -101433,8 +95798,7 @@ "canonical_id": "game_wnba_2026_20260814_la_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "8p", + "game_datetime_utc": "2026-08-14T00:00:00Z", "home_team": "New York Liberty", "away_team": "Los Angeles Sparks", "home_team_abbrev": "NY", @@ -101451,8 +95815,7 @@ "canonical_id": "game_wnba_2026_20260814_was_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-13", - "time": "7p", + "game_datetime_utc": "2026-08-14T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Washington Mystics", "home_team_abbrev": "LV", @@ -101469,8 +95832,7 @@ "canonical_id": "game_mlb_2026_20260814_tex_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "7:07p", + "game_datetime_utc": "2026-08-14T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Texas Rangers", "home_team_abbrev": "LAA", @@ -101487,8 +95849,7 @@ "canonical_id": "game_mlb_2026_20260814_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-13", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -101505,8 +95866,7 @@ "canonical_id": "game_mlb_2026_20260814_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "1:20p", + "game_datetime_utc": "2026-08-14T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -101523,8 +95883,7 @@ "canonical_id": "game_mlb_2026_20260814_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:10p", + "game_datetime_utc": "2026-08-14T22:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -101541,8 +95900,7 @@ "canonical_id": "game_mlb_2026_20260814_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-14T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -101559,8 +95917,7 @@ "canonical_id": "game_mlb_2026_20260814_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-14T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -101577,8 +95934,7 @@ "canonical_id": "game_mlb_2026_20260814_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:07p", + "game_datetime_utc": "2026-08-14T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -101595,8 +95951,7 @@ "canonical_id": "game_mlb_2026_20260814_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -101613,8 +95968,7 @@ "canonical_id": "game_mlb_2026_20260814_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -101631,8 +95985,7 @@ "canonical_id": "game_mlb_2026_20260814_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-14T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -101649,8 +96002,7 @@ "canonical_id": "game_mlb_2026_20260814_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:15p", + "game_datetime_utc": "2026-08-14T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -101667,8 +96019,7 @@ "canonical_id": "game_wnba_2026_20260814_dal_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-14", - "time": "7:30p", + "game_datetime_utc": "2026-08-14T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Dallas Wings", "home_team_abbrev": "IND", @@ -101685,8 +96036,7 @@ "canonical_id": "game_nwsl_2026_20260815_kcc_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "8p", + "game_datetime_utc": "2026-08-15T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "NJY", @@ -101703,8 +96053,7 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T00:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -101721,8 +96070,7 @@ "canonical_id": "game_mlb_2026_20260815_kc_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:38p", + "game_datetime_utc": "2026-08-15T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -101739,8 +96087,7 @@ "canonical_id": "game_mlb_2026_20260815_tex_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -101757,8 +96104,7 @@ "canonical_id": "game_nwsl_2026_20260815_bay_uta", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "8p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "Utah Utah Royals", "away_team": "San Francisco Bay FC", "home_team_abbrev": "UTA", @@ -101775,8 +96121,7 @@ "canonical_id": "game_nwsl_2026_20260815_chi_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "7p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "SEA", @@ -101793,8 +96138,7 @@ "canonical_id": "game_nwsl_2026_20260815_den_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-14", - "time": "7p", + "game_datetime_utc": "2026-08-15T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "SDW", @@ -101811,8 +96155,7 @@ "canonical_id": "game_mlb_2026_20260815_mil_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -101829,8 +96172,7 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-14", - "time": "7:15p", + "game_datetime_utc": "2026-08-15T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -101847,8 +96189,7 @@ "canonical_id": "game_wnba_2026_20260815_ny_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "1p", + "game_datetime_utc": "2026-08-15T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "New York Liberty", "home_team_abbrev": "CON", @@ -101865,8 +96206,7 @@ "canonical_id": "game_mlb_2026_20260815_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:10p", + "game_datetime_utc": "2026-08-15T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -101883,8 +96223,7 @@ "canonical_id": "game_mlb_2026_20260815_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:20p", + "game_datetime_utc": "2026-08-15T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -101901,8 +96240,7 @@ "canonical_id": "game_mlb_2026_20260815_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "3:07p", + "game_datetime_utc": "2026-08-15T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -101919,8 +96257,7 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "1:05p", + "game_datetime_utc": "2026-08-15T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -101937,8 +96274,7 @@ "canonical_id": "game_mlb_2026_20260815_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "4:10p", + "game_datetime_utc": "2026-08-15T20:10:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -101955,8 +96291,7 @@ "canonical_id": "game_mlb_2026_20260815_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -101973,8 +96308,7 @@ "canonical_id": "game_nwsl_2026_20260815_bos_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-15", - "time": "6:30p", + "game_datetime_utc": "2026-08-15T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "RGN", @@ -101991,8 +96325,7 @@ "canonical_id": "game_mlb_2026_20260815_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -102009,8 +96342,7 @@ "canonical_id": "game_mlb_2026_20260815_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -102027,8 +96359,7 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -102045,8 +96376,7 @@ "canonical_id": "game_mlb_2026_20260815_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "7:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -102063,8 +96393,7 @@ "canonical_id": "game_mlb_2026_20260815_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:10p", + "game_datetime_utc": "2026-08-15T23:10:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -102081,8 +96410,7 @@ "canonical_id": "game_mlb_2026_20260815_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "7:15p", + "game_datetime_utc": "2026-08-15T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -102099,8 +96427,7 @@ "canonical_id": "game_mlb_2026_20260815_mil_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "4:15p", + "game_datetime_utc": "2026-08-15T23:15:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -102117,8 +96444,7 @@ "canonical_id": "game_mls_2026_20260815_cin_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "ORL", @@ -102135,8 +96461,7 @@ "canonical_id": "game_mls_2026_20260815_ne_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "New England New England Revolution", "home_team_abbrev": "TOR", @@ -102153,8 +96478,7 @@ "canonical_id": "game_mls_2026_20260815_clb_clt", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CLT", @@ -102171,8 +96495,7 @@ "canonical_id": "game_mls_2026_20260815_dc_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Washington D.C. United", "home_team_abbrev": "MTL", @@ -102189,8 +96512,7 @@ "canonical_id": "game_mls_2026_20260815_ny_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New York New York Red Bulls", "home_team_abbrev": "ATL", @@ -102207,8 +96529,7 @@ "canonical_id": "game_wnba_2026_20260815_la_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-15T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Los Angeles Sparks", "home_team_abbrev": "WAS", @@ -102225,8 +96546,7 @@ "canonical_id": "game_wnba_2026_20260816_min_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-15", - "time": "5p", + "game_datetime_utc": "2026-08-16T00:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Minnesota Lynx", "home_team_abbrev": "LV", @@ -102243,8 +96563,7 @@ "canonical_id": "game_mls_2026_20260816_mia_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Miami Inter Miami", "home_team_abbrev": "NSH", @@ -102261,8 +96580,7 @@ "canonical_id": "game_mls_2026_20260816_lag_hou", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "HOU", @@ -102279,8 +96597,7 @@ "canonical_id": "game_mls_2026_20260816_dal_aus", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "AUS", @@ -102297,8 +96614,7 @@ "canonical_id": "game_nwsl_2026_20260816_orl_por", "sport": "NWSL", "season": "2026", - "date": "2026-08-15", - "time": "5:45p", + "game_datetime_utc": "2026-08-16T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "POR", @@ -102315,8 +96631,7 @@ "canonical_id": "game_mls_2026_20260816_min_slc", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SLC", @@ -102333,8 +96648,7 @@ "canonical_id": "game_mls_2026_20260816_skc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "COL", @@ -102351,8 +96665,7 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:38p", + "game_datetime_utc": "2026-08-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -102369,8 +96682,7 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-15", - "time": "6:40p", + "game_datetime_utc": "2026-08-16T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -102387,8 +96699,7 @@ "canonical_id": "game_mls_2026_20260816_sd_lafc", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "LAFC", @@ -102405,8 +96716,7 @@ "canonical_id": "game_mls_2026_20260816_stl_sj", "sport": "MLS", "season": "2026", - "date": "2026-08-15", - "time": "7:30p", + "game_datetime_utc": "2026-08-16T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SJ", @@ -102423,8 +96733,7 @@ "canonical_id": "game_mlb_2026_20260816_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "12:10p", + "game_datetime_utc": "2026-08-16T16:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -102441,8 +96750,7 @@ "canonical_id": "game_mlb_2026_20260816_ari_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:35p", + "game_datetime_utc": "2026-08-16T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "ATL", @@ -102459,8 +96767,7 @@ "canonical_id": "game_mlb_2026_20260816_bos_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:35p", + "game_datetime_utc": "2026-08-16T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Boston Red Sox", "home_team_abbrev": "PIT", @@ -102477,8 +96784,7 @@ "canonical_id": "game_mlb_2026_20260816_nyy_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:37p", + "game_datetime_utc": "2026-08-16T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "New York Yankees", "home_team_abbrev": "TOR", @@ -102495,8 +96801,7 @@ "canonical_id": "game_mlb_2026_20260816_sd_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Diego Padres", "home_team_abbrev": "CLE", @@ -102513,8 +96818,7 @@ "canonical_id": "game_mlb_2026_20260816_wsn_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "New York Mets", "away_team": "Washington Nationals", "home_team_abbrev": "NYM", @@ -102531,8 +96835,7 @@ "canonical_id": "game_mlb_2026_20260816_chw_det", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Chicago White Sox", "home_team_abbrev": "DET", @@ -102549,8 +96852,7 @@ "canonical_id": "game_mlb_2026_20260816_mia_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:40p", + "game_datetime_utc": "2026-08-16T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Miami Marlins", "home_team_abbrev": "CIN", @@ -102567,8 +96869,7 @@ "canonical_id": "game_mlb_2026_20260816_phi_min", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:10p", + "game_datetime_utc": "2026-08-16T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Philadelphia Phillies", "home_team_abbrev": "MIN", @@ -102585,8 +96886,7 @@ "canonical_id": "game_mlb_2026_20260816_stl_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "2:10p", + "game_datetime_utc": "2026-08-16T19:10:00Z", "home_team": "Chicago Cubs", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CHC", @@ -102603,8 +96903,7 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:05p", + "game_datetime_utc": "2026-08-16T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Texas Rangers", "home_team_abbrev": "OAK", @@ -102621,8 +96920,7 @@ "canonical_id": "game_mlb_2026_20260816_col_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:05p", + "game_datetime_utc": "2026-08-16T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Colorado Rockies", "home_team_abbrev": "SF", @@ -102639,8 +96937,7 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:07p", + "game_datetime_utc": "2026-08-16T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Kansas City Royals", "home_team_abbrev": "LAA", @@ -102657,8 +96954,7 @@ "canonical_id": "game_mlb_2026_20260816_mil_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "1:10p", + "game_datetime_utc": "2026-08-16T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Milwaukee Brewers", "home_team_abbrev": "LAD", @@ -102675,8 +96971,7 @@ "canonical_id": "game_wnba_2026_20260816_chi_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-16", - "time": "2p", + "game_datetime_utc": "2026-08-16T21:00:00Z", "home_team": "Seattle Storm", "away_team": "Chicago Sky", "home_team_abbrev": "SEA", @@ -102693,8 +96988,7 @@ "canonical_id": "game_mls_2026_20260816_phi_nyc", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "6:30p", + "game_datetime_utc": "2026-08-16T22:30:00Z", "home_team": "New York New York City FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NYC", @@ -102711,8 +97005,7 @@ "canonical_id": "game_mls_2026_20260816_por_chi", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "5:30p", + "game_datetime_utc": "2026-08-16T22:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Portland Portland Timbers", "home_team_abbrev": "CHI", @@ -102729,8 +97022,7 @@ "canonical_id": "game_nwsl_2026_20260816_hou_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-16", - "time": "7p", + "game_datetime_utc": "2026-08-16T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Houston Houston Dash", "home_team_abbrev": "NCC", @@ -102747,8 +97039,7 @@ "canonical_id": "game_wnba_2026_20260816_ind_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-16", - "time": "7p", + "game_datetime_utc": "2026-08-16T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Indiana Fever", "home_team_abbrev": "ATL", @@ -102765,8 +97056,7 @@ "canonical_id": "game_mlb_2026_20260816_sea_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-16", - "time": "6:20p", + "game_datetime_utc": "2026-08-16T23:20:00Z", "home_team": "Houston Astros", "away_team": "Seattle Mariners", "home_team_abbrev": "HOU", @@ -102783,8 +97073,7 @@ "canonical_id": "game_mls_2026_20260817_van_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-16", - "time": "6p", + "game_datetime_utc": "2026-08-17T01:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SEA", @@ -102801,8 +97090,7 @@ "canonical_id": "game_nwsl_2026_20260817_wsh_ang", "sport": "NWSL", "season": "2026", - "date": "2026-08-16", - "time": "6p", + "game_datetime_utc": "2026-08-17T01:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Washington Washington Spirit", "home_team_abbrev": "ANG", @@ -102819,8 +97107,7 @@ "canonical_id": "game_mlb_2026_20260817_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -102837,8 +97124,7 @@ "canonical_id": "game_mlb_2026_20260817_bal_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TB", @@ -102855,8 +97141,7 @@ "canonical_id": "game_mlb_2026_20260817_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -102873,8 +97158,7 @@ "canonical_id": "game_mlb_2026_20260817_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:05p", + "game_datetime_utc": "2026-08-17T23:05:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -102891,8 +97175,7 @@ "canonical_id": "game_mlb_2026_20260817_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:10p", + "game_datetime_utc": "2026-08-17T23:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -102909,8 +97192,7 @@ "canonical_id": "game_mlb_2026_20260817_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:10p", + "game_datetime_utc": "2026-08-17T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -102927,8 +97209,7 @@ "canonical_id": "game_mlb_2026_20260817_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -102945,8 +97226,7 @@ "canonical_id": "game_mlb_2026_20260817_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-17T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -102963,8 +97243,7 @@ "canonical_id": "game_mlb_2026_20260818_chw_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "7:05p", + "game_datetime_utc": "2026-08-18T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -102981,8 +97260,7 @@ "canonical_id": "game_mlb_2026_20260818_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-17", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -102999,8 +97277,7 @@ "canonical_id": "game_wnba_2026_20260818_dal_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-17", - "time": "7p", + "game_datetime_utc": "2026-08-18T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Dallas Wings", "home_team_abbrev": "GSV", @@ -103017,8 +97294,7 @@ "canonical_id": "game_mlb_2026_20260818_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:35p", + "game_datetime_utc": "2026-08-18T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -103035,8 +97311,7 @@ "canonical_id": "game_mlb_2026_20260818_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103053,8 +97328,7 @@ "canonical_id": "game_mlb_2026_20260818_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -103071,8 +97345,7 @@ "canonical_id": "game_mlb_2026_20260818_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -103089,8 +97362,7 @@ "canonical_id": "game_mlb_2026_20260818_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103107,8 +97379,7 @@ "canonical_id": "game_mlb_2026_20260818_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103125,8 +97396,7 @@ "canonical_id": "game_wnba_2026_20260818_la_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "7p", + "game_datetime_utc": "2026-08-18T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Los Angeles Sparks", "home_team_abbrev": "CON", @@ -103143,8 +97413,7 @@ "canonical_id": "game_mlb_2026_20260818_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-18T23:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -103161,8 +97430,7 @@ "canonical_id": "game_mlb_2026_20260818_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-18T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -103179,8 +97447,7 @@ "canonical_id": "game_mlb_2026_20260818_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -103197,8 +97464,7 @@ "canonical_id": "game_mlb_2026_20260818_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -103215,8 +97481,7 @@ "canonical_id": "game_mlb_2026_20260818_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-18T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -103233,8 +97498,7 @@ "canonical_id": "game_mlb_2026_20260819_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:05p", + "game_datetime_utc": "2026-08-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -103251,8 +97515,7 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:05p", + "game_datetime_utc": "2026-08-19T00:05:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -103269,8 +97532,7 @@ "canonical_id": "game_mlb_2026_20260819_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "7:10p", + "game_datetime_utc": "2026-08-19T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -103287,8 +97549,7 @@ "canonical_id": "game_mlb_2026_20260819_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-18", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -103305,8 +97566,7 @@ "canonical_id": "game_wnba_2026_20260819_ny_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "8p", + "game_datetime_utc": "2026-08-19T01:00:00Z", "home_team": "Chicago Sky", "away_team": "New York Liberty", "home_team_abbrev": "CHI", @@ -103323,8 +97583,7 @@ "canonical_id": "game_wnba_2026_20260819_atl_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-18", - "time": "7p", + "game_datetime_utc": "2026-08-19T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Atlanta Dream", "home_team_abbrev": "LV", @@ -103341,8 +97600,7 @@ "canonical_id": "game_mlb_2026_20260819_det_pit", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "12:35p", + "game_datetime_utc": "2026-08-19T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Detroit Tigers", "home_team_abbrev": "PIT", @@ -103359,8 +97617,7 @@ "canonical_id": "game_mlb_2026_20260819_sd_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "1:10p", + "game_datetime_utc": "2026-08-19T17:10:00Z", "home_team": "New York Mets", "away_team": "San Diego Padres", "home_team_abbrev": "NYM", @@ -103377,8 +97634,7 @@ "canonical_id": "game_mlb_2026_20260819_atl_min", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "12:40p", + "game_datetime_utc": "2026-08-19T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIN", @@ -103395,8 +97651,7 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "1:20p", + "game_datetime_utc": "2026-08-19T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Chicago White Sox", "home_team_abbrev": "CHC", @@ -103413,8 +97668,7 @@ "canonical_id": "game_mlb_2026_20260819_ari_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "4:10p", + "game_datetime_utc": "2026-08-19T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "BOS", @@ -103431,8 +97685,7 @@ "canonical_id": "game_mlb_2026_20260819_mia_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:05p", + "game_datetime_utc": "2026-08-19T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Miami Marlins", "home_team_abbrev": "PHI", @@ -103449,8 +97702,7 @@ "canonical_id": "game_nwsl_2026_20260819_sea_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-08-19", - "time": "6:30p", + "game_datetime_utc": "2026-08-19T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "RGN", @@ -103467,8 +97719,7 @@ "canonical_id": "game_mlb_2026_20260819_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:35p", + "game_datetime_utc": "2026-08-19T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -103485,8 +97736,7 @@ "canonical_id": "game_mlb_2026_20260819_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103503,8 +97753,7 @@ "canonical_id": "game_mlb_2026_20260819_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103521,8 +97770,7 @@ "canonical_id": "game_mlb_2026_20260819_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103539,8 +97787,7 @@ "canonical_id": "game_mls_2026_20260819_ne_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "New England New England Revolution", "home_team_abbrev": "DC", @@ -103557,8 +97804,7 @@ "canonical_id": "game_mls_2026_20260819_mtl_clb", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CLB", @@ -103575,8 +97821,7 @@ "canonical_id": "game_mls_2026_20260819_clt_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "TOR", @@ -103593,8 +97838,7 @@ "canonical_id": "game_mls_2026_20260819_mia_phi", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Miami Inter Miami", "home_team_abbrev": "PHI", @@ -103611,8 +97855,7 @@ "canonical_id": "game_mls_2026_20260819_chi_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "ORL", @@ -103629,8 +97872,7 @@ "canonical_id": "game_mls_2026_20260819_nsh_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Nashville Nashville SC", "home_team_abbrev": "RB", @@ -103647,8 +97889,7 @@ "canonical_id": "game_mls_2026_20260819_nyc_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-19T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New York New York City FC", "home_team_abbrev": "CIN", @@ -103665,8 +97906,7 @@ "canonical_id": "game_mlb_2026_20260819_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -103683,8 +97923,7 @@ "canonical_id": "game_mlb_2026_20260819_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-19T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -103701,8 +97940,7 @@ "canonical_id": "game_mls_2026_20260820_stl_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T00:00:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SKC", @@ -103719,8 +97957,7 @@ "canonical_id": "game_nwsl_2026_20260820_chi_hou", "sport": "NWSL", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T00:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "HOU", @@ -103737,8 +97974,7 @@ "canonical_id": "game_mlb_2026_20260820_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "7:05p", + "game_datetime_utc": "2026-08-20T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -103755,8 +97991,7 @@ "canonical_id": "game_mlb_2026_20260820_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "7:10p", + "game_datetime_utc": "2026-08-20T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -103773,8 +98008,7 @@ "canonical_id": "game_mls_2026_20260820_atl_min", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MIN", @@ -103791,8 +98025,7 @@ "canonical_id": "game_mlb_2026_20260820_lad_col", "sport": "MLB", "season": "2026", - "date": "2026-08-19", - "time": "6:40p", + "game_datetime_utc": "2026-08-20T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "COL", @@ -103809,8 +98042,7 @@ "canonical_id": "game_mls_2026_20260820_lafc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "COL", @@ -103827,8 +98059,7 @@ "canonical_id": "game_mls_2026_20260820_aus_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "6:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Austin Austin FC", "home_team_abbrev": "SEA", @@ -103845,8 +98076,7 @@ "canonical_id": "game_mls_2026_20260820_dal_slc", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SLC", @@ -103863,8 +98093,7 @@ "canonical_id": "game_wnba_2026_20260820_min_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-08-19", - "time": "7p", + "game_datetime_utc": "2026-08-20T02:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Minnesota Lynx", "home_team_abbrev": "GSV", @@ -103881,8 +98110,7 @@ "canonical_id": "game_mls_2026_20260820_hou_van", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "VAN", @@ -103899,8 +98127,7 @@ "canonical_id": "game_mls_2026_20260820_sd_por", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "San Diego San Diego FC", "home_team_abbrev": "POR", @@ -103917,8 +98144,7 @@ "canonical_id": "game_mls_2026_20260820_sj_lag", "sport": "MLS", "season": "2026", - "date": "2026-08-19", - "time": "7:30p", + "game_datetime_utc": "2026-08-20T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "LAG", @@ -103935,8 +98161,7 @@ "canonical_id": "game_mlb_2026_20260820_stl_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "12:40p", + "game_datetime_utc": "2026-08-20T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "St. Louis Cardinals", "home_team_abbrev": "CIN", @@ -103953,8 +98178,7 @@ "canonical_id": "game_mlb_2026_20260820_sf_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "San Francisco Giants", "home_team_abbrev": "CLE", @@ -103971,8 +98195,7 @@ "canonical_id": "game_mlb_2026_20260820_tor_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TB", @@ -103989,8 +98212,7 @@ "canonical_id": "game_mlb_2026_20260820_oak_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Oakland Athletics", "home_team_abbrev": "KC", @@ -104007,8 +98229,7 @@ "canonical_id": "game_mlb_2026_20260820_sea_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "1:10p", + "game_datetime_utc": "2026-08-20T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Seattle Mariners", "home_team_abbrev": "MIL", @@ -104025,8 +98246,7 @@ "canonical_id": "game_mlb_2026_20260820_nyy_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "6:35p", + "game_datetime_utc": "2026-08-20T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "New York Yankees", "home_team_abbrev": "BAL", @@ -104043,8 +98263,7 @@ "canonical_id": "game_wnba_2026_20260821_ind_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Indiana Fever", "home_team_abbrev": "DAL", @@ -104061,8 +98280,7 @@ "canonical_id": "game_mlb_2026_20260821_wsn_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Washington Nationals", "home_team_abbrev": "TEX", @@ -104079,8 +98297,7 @@ "canonical_id": "game_mlb_2026_20260821_laa_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-20", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T00:10:00Z", "home_team": "Houston Astros", "away_team": "Los Angeles Angels", "home_team_abbrev": "HOU", @@ -104097,8 +98314,7 @@ "canonical_id": "game_wnba_2026_20260821_con_lv", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Connecticut Sun", "home_team_abbrev": "LV", @@ -104115,8 +98331,7 @@ "canonical_id": "game_wnba_2026_20260821_atl_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-20", - "time": "7p", + "game_datetime_utc": "2026-08-21T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Atlanta Dream", "home_team_abbrev": "LA", @@ -104133,8 +98348,7 @@ "canonical_id": "game_mlb_2026_20260821_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "3:10p", + "game_datetime_utc": "2026-08-21T20:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -104151,8 +98365,7 @@ "canonical_id": "game_mlb_2026_20260821_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-21T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -104169,8 +98382,7 @@ "canonical_id": "game_mlb_2026_20260821_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T23:05:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -104187,8 +98399,7 @@ "canonical_id": "game_mlb_2026_20260821_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-21T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -104205,8 +98416,7 @@ "canonical_id": "game_mlb_2026_20260821_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -104223,8 +98433,7 @@ "canonical_id": "game_mlb_2026_20260821_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-21T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -104241,8 +98450,7 @@ "canonical_id": "game_wnba_2026_20260821_gsv_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-21", - "time": "6:30p", + "game_datetime_utc": "2026-08-21T23:30:00Z", "home_team": "Chicago Sky", "away_team": "Golden State Valkyries", "home_team_abbrev": "CHI", @@ -104259,8 +98467,7 @@ "canonical_id": "game_wnba_2026_20260821_min_was", "sport": "WNBA", "season": "2026", - "date": "2026-08-21", - "time": "7:30p", + "game_datetime_utc": "2026-08-21T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Minnesota Lynx", "home_team_abbrev": "WAS", @@ -104277,8 +98484,7 @@ "canonical_id": "game_mlb_2026_20260821_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-21T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -104295,8 +98501,7 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:05p", + "game_datetime_utc": "2026-08-22T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -104313,8 +98518,7 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -104331,8 +98535,7 @@ "canonical_id": "game_mlb_2026_20260822_oak_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T00:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -104349,8 +98552,7 @@ "canonical_id": "game_mlb_2026_20260822_cle_col", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -104367,8 +98569,7 @@ "canonical_id": "game_mlb_2026_20260822_min_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -104385,8 +98586,7 @@ "canonical_id": "game_mlb_2026_20260822_cin_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "6:40p", + "game_datetime_utc": "2026-08-22T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -104403,8 +98603,7 @@ "canonical_id": "game_nwsl_2026_20260822_uta_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-21", - "time": "7p", + "game_datetime_utc": "2026-08-22T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Utah Utah Royals", "home_team_abbrev": "SDW", @@ -104421,8 +98620,7 @@ "canonical_id": "game_mlb_2026_20260822_pit_lad", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -104439,8 +98637,7 @@ "canonical_id": "game_mlb_2026_20260822_chc_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-21", - "time": "7:10p", + "game_datetime_utc": "2026-08-22T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -104457,8 +98654,7 @@ "canonical_id": "game_mlb_2026_20260822_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "1:35p", + "game_datetime_utc": "2026-08-22T17:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -104475,8 +98671,7 @@ "canonical_id": "game_mlb_2026_20260822_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "1:10p", + "game_datetime_utc": "2026-08-22T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -104493,8 +98688,7 @@ "canonical_id": "game_mlb_2026_20260822_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "4:10p", + "game_datetime_utc": "2026-08-22T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -104511,8 +98705,7 @@ "canonical_id": "game_mlb_2026_20260822_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:05p", + "game_datetime_utc": "2026-08-22T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -104529,8 +98722,7 @@ "canonical_id": "game_nwsl_2026_20260822_sea_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "5:30p", + "game_datetime_utc": "2026-08-22T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "KCC", @@ -104547,8 +98739,7 @@ "canonical_id": "game_wnba_2026_20260822_ind_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "7p", + "game_datetime_utc": "2026-08-22T23:00:00Z", "home_team": "New York Liberty", "away_team": "Indiana Fever", "home_team_abbrev": "NY", @@ -104565,8 +98756,7 @@ "canonical_id": "game_mlb_2026_20260822_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "7:05p", + "game_datetime_utc": "2026-08-22T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -104583,8 +98773,7 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:05p", + "game_datetime_utc": "2026-08-22T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -104601,8 +98790,7 @@ "canonical_id": "game_mlb_2026_20260822_oak_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-22T23:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -104619,8 +98807,7 @@ "canonical_id": "game_mlb_2026_20260822_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-22T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -104637,8 +98824,7 @@ "canonical_id": "game_mlb_2026_20260822_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "7:15p", + "game_datetime_utc": "2026-08-22T23:15:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -104655,8 +98841,7 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:15p", + "game_datetime_utc": "2026-08-22T23:15:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -104673,8 +98858,7 @@ "canonical_id": "game_mls_2026_20260822_slc_orl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "ORL", @@ -104691,8 +98875,7 @@ "canonical_id": "game_mls_2026_20260822_tor_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Toronto Toronto FC", "home_team_abbrev": "MIA", @@ -104709,8 +98892,7 @@ "canonical_id": "game_mls_2026_20260822_chi_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "RB", @@ -104727,8 +98909,7 @@ "canonical_id": "game_mls_2026_20260822_lag_mtl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "MTL", @@ -104745,8 +98926,7 @@ "canonical_id": "game_mls_2026_20260822_dc_clt", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Washington D.C. United", "home_team_abbrev": "CLT", @@ -104763,8 +98943,7 @@ "canonical_id": "game_mls_2026_20260822_sea_cin", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "CIN", @@ -104781,8 +98960,7 @@ "canonical_id": "game_nwsl_2026_20260822_bos_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-22T23:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "NCC", @@ -104799,8 +98977,7 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-23T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -104817,8 +98994,7 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "5:10p", + "game_datetime_utc": "2026-08-23T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -104835,8 +99011,7 @@ "canonical_id": "game_mls_2026_20260823_phi_aus", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "AUS", @@ -104853,8 +99028,7 @@ "canonical_id": "game_mls_2026_20260823_clb_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "NSH", @@ -104871,8 +99045,7 @@ "canonical_id": "game_mls_2026_20260823_hou_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "STL", @@ -104889,8 +99062,7 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "5:40p", + "game_datetime_utc": "2026-08-23T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -104907,8 +99079,7 @@ "canonical_id": "game_nwsl_2026_20260823_den_por", "sport": "NWSL", "season": "2026", - "date": "2026-08-22", - "time": "5:45p", + "game_datetime_utc": "2026-08-23T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "POR", @@ -104925,8 +99096,7 @@ "canonical_id": "game_wnba_2026_20260823_con_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "6p", + "game_datetime_utc": "2026-08-23T01:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Connecticut Sun", "home_team_abbrev": "LA", @@ -104943,8 +99113,7 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:10p", + "game_datetime_utc": "2026-08-23T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -104961,8 +99130,7 @@ "canonical_id": "game_mls_2026_20260823_dal_van", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "6:30p", + "game_datetime_utc": "2026-08-23T01:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Dallas FC Dallas", "home_team_abbrev": "VAN", @@ -104979,8 +99147,7 @@ "canonical_id": "game_mlb_2026_20260823_chc_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-22", - "time": "6:40p", + "game_datetime_utc": "2026-08-23T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -104997,8 +99164,7 @@ "canonical_id": "game_wnba_2026_20260823_atl_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-22", - "time": "10p", + "game_datetime_utc": "2026-08-23T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Atlanta Dream", "home_team_abbrev": "PHX", @@ -105015,8 +99181,7 @@ "canonical_id": "game_mls_2026_20260823_min_sj", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SJ", @@ -105033,8 +99198,7 @@ "canonical_id": "game_mls_2026_20260823_por_lafc", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "LAFC", @@ -105051,8 +99215,7 @@ "canonical_id": "game_mls_2026_20260823_col_sd", "sport": "MLS", "season": "2026", - "date": "2026-08-22", - "time": "7:30p", + "game_datetime_utc": "2026-08-23T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SD", @@ -105069,8 +99232,7 @@ "canonical_id": "game_mlb_2026_20260823_stl_phi", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "Philadelphia Phillies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PHI", @@ -105087,8 +99249,7 @@ "canonical_id": "game_mlb_2026_20260823_tor_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "New York Yankees", "away_team": "Toronto Blue Jays", "home_team_abbrev": "NYY", @@ -105105,8 +99266,7 @@ "canonical_id": "game_mlb_2026_20260823_tbr_bal", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Tampa Bay Rays", "home_team_abbrev": "BAL", @@ -105123,8 +99283,7 @@ "canonical_id": "game_mlb_2026_20260823_wsn_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:40p", + "game_datetime_utc": "2026-08-23T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Washington Nationals", "home_team_abbrev": "MIA", @@ -105141,8 +99300,7 @@ "canonical_id": "game_nwsl_2026_20260823_rgn_chi", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "1p", + "game_datetime_utc": "2026-08-23T18:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "CHI", @@ -105159,8 +99317,7 @@ "canonical_id": "game_mlb_2026_20260823_nym_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "New York Mets", "home_team_abbrev": "CHW", @@ -105177,8 +99334,7 @@ "canonical_id": "game_mlb_2026_20260823_det_kc", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Detroit Tigers", "home_team_abbrev": "KC", @@ -105195,8 +99351,7 @@ "canonical_id": "game_mlb_2026_20260823_oak_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T18:10:00Z", "home_team": "Houston Astros", "away_team": "Oakland Athletics", "home_team_abbrev": "HOU", @@ -105213,8 +99368,7 @@ "canonical_id": "game_mlb_2026_20260823_laa_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:35p", + "game_datetime_utc": "2026-08-23T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Los Angeles Angels", "home_team_abbrev": "TEX", @@ -105231,8 +99385,7 @@ "canonical_id": "game_mlb_2026_20260823_sf_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "3:10p", + "game_datetime_utc": "2026-08-23T19:10:00Z", "home_team": "Boston Red Sox", "away_team": "San Francisco Giants", "home_team_abbrev": "BOS", @@ -105249,8 +99402,7 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Cleveland Guardians", "home_team_abbrev": "COL", @@ -105267,8 +99419,7 @@ "canonical_id": "game_nwsl_2026_20260823_orl_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "4p", + "game_datetime_utc": "2026-08-23T20:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "WSH", @@ -105285,8 +99436,7 @@ "canonical_id": "game_wnba_2026_20260823_sea_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-23", - "time": "3p", + "game_datetime_utc": "2026-08-23T20:00:00Z", "home_team": "Dallas Wings", "away_team": "Seattle Storm", "home_team_abbrev": "DAL", @@ -105303,8 +99453,7 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "LAD", @@ -105321,8 +99470,7 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Minnesota Twins", "home_team_abbrev": "SD", @@ -105339,8 +99487,7 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Cincinnati Reds", "home_team_abbrev": "ARI", @@ -105357,8 +99504,7 @@ "canonical_id": "game_mlb_2026_20260823_chc_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "1:10p", + "game_datetime_utc": "2026-08-23T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Chicago Cubs", "home_team_abbrev": "SEA", @@ -105375,8 +99521,7 @@ "canonical_id": "game_mls_2026_20260823_nyc_ne", "sport": "MLS", "season": "2026", - "date": "2026-08-23", - "time": "4:30p", + "game_datetime_utc": "2026-08-23T20:30:00Z", "home_team": "New England New England Revolution", "away_team": "New York New York City FC", "home_team_abbrev": "NE", @@ -105393,8 +99538,7 @@ "canonical_id": "game_nwsl_2026_20260823_hou_bay", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "3p", + "game_datetime_utc": "2026-08-23T22:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "BAY", @@ -105411,8 +99555,7 @@ "canonical_id": "game_mls_2026_20260823_skc_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-23", - "time": "7p", + "game_datetime_utc": "2026-08-23T23:00:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "ATL", @@ -105429,8 +99572,7 @@ "canonical_id": "game_wnba_2026_20260823_ind_chi", "sport": "WNBA", "season": "2026", - "date": "2026-08-23", - "time": "6p", + "game_datetime_utc": "2026-08-23T23:00:00Z", "home_team": "Chicago Sky", "away_team": "Indiana Fever", "home_team_abbrev": "CHI", @@ -105447,8 +99589,7 @@ "canonical_id": "game_mlb_2026_20260823_atl_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-23", - "time": "7:10p", + "game_datetime_utc": "2026-08-23T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Atlanta Braves", "home_team_abbrev": "MIL", @@ -105465,8 +99606,7 @@ "canonical_id": "game_nwsl_2026_20260824_njy_ang", "sport": "NWSL", "season": "2026", - "date": "2026-08-23", - "time": "5p", + "game_datetime_utc": "2026-08-24T00:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "ANG", @@ -105483,8 +99623,7 @@ "canonical_id": "game_mlb_2026_20260824_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -105501,8 +99640,7 @@ "canonical_id": "game_mlb_2026_20260824_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -105519,8 +99657,7 @@ "canonical_id": "game_mlb_2026_20260824_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:45p", + "game_datetime_utc": "2026-08-24T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -105537,8 +99674,7 @@ "canonical_id": "game_mlb_2026_20260824_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-24T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -105555,8 +99691,7 @@ "canonical_id": "game_wnba_2026_20260825_gsv_min", "sport": "WNBA", "season": "2026", - "date": "2026-08-24", - "time": "7p", + "game_datetime_utc": "2026-08-25T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Golden State Valkyries", "home_team_abbrev": "MIN", @@ -105573,8 +99708,7 @@ "canonical_id": "game_mlb_2026_20260825_cle_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:38p", + "game_datetime_utc": "2026-08-25T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -105591,8 +99725,7 @@ "canonical_id": "game_mlb_2026_20260825_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -105609,8 +99742,7 @@ "canonical_id": "game_mlb_2026_20260825_chc_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -105627,8 +99759,7 @@ "canonical_id": "game_mlb_2026_20260825_pit_sd", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -105645,8 +99776,7 @@ "canonical_id": "game_mlb_2026_20260825_phi_sea", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -105663,8 +99793,7 @@ "canonical_id": "game_mlb_2026_20260825_cin_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-24", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -105681,8 +99810,7 @@ "canonical_id": "game_wnba_2026_20260825_atl_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-24", - "time": "7p", + "game_datetime_utc": "2026-08-25T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Atlanta Dream", "home_team_abbrev": "LA", @@ -105699,8 +99827,7 @@ "canonical_id": "game_mlb_2026_20260825_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -105717,8 +99844,7 @@ "canonical_id": "game_mlb_2026_20260825_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -105735,8 +99861,7 @@ "canonical_id": "game_mlb_2026_20260825_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -105753,8 +99878,7 @@ "canonical_id": "game_wnba_2026_20260825_chi_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-25", - "time": "7p", + "game_datetime_utc": "2026-08-25T23:00:00Z", "home_team": "Connecticut Sun", "away_team": "Chicago Sky", "home_team_abbrev": "CON", @@ -105771,8 +99895,7 @@ "canonical_id": "game_mlb_2026_20260825_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:05p", + "game_datetime_utc": "2026-08-25T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -105789,8 +99912,7 @@ "canonical_id": "game_mlb_2026_20260825_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:07p", + "game_datetime_utc": "2026-08-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -105807,8 +99929,7 @@ "canonical_id": "game_mlb_2026_20260825_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:10p", + "game_datetime_utc": "2026-08-25T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -105825,8 +99946,7 @@ "canonical_id": "game_mlb_2026_20260825_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "7:15p", + "game_datetime_utc": "2026-08-25T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -105843,8 +99963,7 @@ "canonical_id": "game_mlb_2026_20260825_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-25T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -105861,8 +99980,7 @@ "canonical_id": "game_mlb_2026_20260825_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-25T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -105879,8 +99997,7 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:38p", + "game_datetime_utc": "2026-08-26T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -105897,8 +100014,7 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -105915,8 +100031,7 @@ "canonical_id": "game_mlb_2026_20260826_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -105933,8 +100048,7 @@ "canonical_id": "game_mlb_2026_20260826_phi_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -105951,8 +100065,7 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -105969,8 +100082,7 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-25", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -105987,8 +100099,7 @@ "canonical_id": "game_wnba_2026_20260826_was_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-25", - "time": "10p", + "game_datetime_utc": "2026-08-26T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Washington Mystics", "home_team_abbrev": "PHX", @@ -106005,8 +100116,7 @@ "canonical_id": "game_mlb_2026_20260826_tbr_det", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "DET", @@ -106023,8 +100133,7 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "12:40p", + "game_datetime_utc": "2026-08-26T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Chicago Cubs", "home_team_abbrev": "ARI", @@ -106041,8 +100150,7 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "12:45p", + "game_datetime_utc": "2026-08-26T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Cincinnati Reds", "home_team_abbrev": "SF", @@ -106059,8 +100167,7 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:07p", + "game_datetime_utc": "2026-08-26T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Cleveland Guardians", "home_team_abbrev": "LAA", @@ -106077,8 +100184,7 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "SD", @@ -106095,8 +100201,7 @@ "canonical_id": "game_mlb_2026_20260826_phi_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "1:10p", + "game_datetime_utc": "2026-08-26T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Philadelphia Phillies", "home_team_abbrev": "SEA", @@ -106113,8 +100218,7 @@ "canonical_id": "game_mlb_2026_20260826_bos_mia", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T22:40:00Z", "home_team": "Miami Marlins", "away_team": "Boston Red Sox", "home_team_abbrev": "MIA", @@ -106131,8 +100235,7 @@ "canonical_id": "game_mlb_2026_20260826_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -106149,8 +100252,7 @@ "canonical_id": "game_mlb_2026_20260826_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:05p", + "game_datetime_utc": "2026-08-26T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -106167,8 +100269,7 @@ "canonical_id": "game_mlb_2026_20260826_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:07p", + "game_datetime_utc": "2026-08-26T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -106185,8 +100286,7 @@ "canonical_id": "game_mlb_2026_20260826_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:10p", + "game_datetime_utc": "2026-08-26T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -106203,8 +100303,7 @@ "canonical_id": "game_mlb_2026_20260826_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "7:15p", + "game_datetime_utc": "2026-08-26T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -106221,8 +100320,7 @@ "canonical_id": "game_mlb_2026_20260826_tex_chw", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:40p", + "game_datetime_utc": "2026-08-26T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Texas Rangers", "home_team_abbrev": "CHW", @@ -106239,8 +100337,7 @@ "canonical_id": "game_mlb_2026_20260826_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:45p", + "game_datetime_utc": "2026-08-26T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -106257,8 +100354,7 @@ "canonical_id": "game_nwsl_2026_20260827_ang_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-08-26", - "time": "8p", + "game_datetime_utc": "2026-08-27T00:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "NCC", @@ -106275,8 +100371,7 @@ "canonical_id": "game_wnba_2026_20260827_gsv_con", "sport": "WNBA", "season": "2026", - "date": "2026-08-26", - "time": "8p", + "game_datetime_utc": "2026-08-27T00:00:00Z", "home_team": "Connecticut Sun", "away_team": "Golden State Valkyries", "home_team_abbrev": "CON", @@ -106293,8 +100388,7 @@ "canonical_id": "game_mlb_2026_20260827_min_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-26", - "time": "6:05p", + "game_datetime_utc": "2026-08-27T01:05:00Z", "home_team": "Oakland Athletics", "away_team": "Minnesota Twins", "home_team_abbrev": "OAK", @@ -106311,8 +100405,7 @@ "canonical_id": "game_mlb_2026_20260827_col_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "1:05p", + "game_datetime_utc": "2026-08-27T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Colorado Rockies", "home_team_abbrev": "WSN", @@ -106329,8 +100422,7 @@ "canonical_id": "game_mlb_2026_20260827_bal_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "1:15p", + "game_datetime_utc": "2026-08-27T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Baltimore Orioles", "home_team_abbrev": "STL", @@ -106347,8 +100439,7 @@ "canonical_id": "game_mlb_2026_20260827_hou_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:05p", + "game_datetime_utc": "2026-08-27T23:05:00Z", "home_team": "New York Yankees", "away_team": "Houston Astros", "home_team_abbrev": "NYY", @@ -106365,8 +100456,7 @@ "canonical_id": "game_mlb_2026_20260827_kc_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:07p", + "game_datetime_utc": "2026-08-27T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Kansas City Royals", "home_team_abbrev": "TOR", @@ -106383,8 +100473,7 @@ "canonical_id": "game_mlb_2026_20260827_mil_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:10p", + "game_datetime_utc": "2026-08-27T23:10:00Z", "home_team": "New York Mets", "away_team": "Milwaukee Brewers", "home_team_abbrev": "NYM", @@ -106401,8 +100490,7 @@ "canonical_id": "game_mlb_2026_20260827_lad_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "7:15p", + "game_datetime_utc": "2026-08-27T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "ATL", @@ -106419,8 +100507,7 @@ "canonical_id": "game_wnba_2026_20260828_gsv_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-27", - "time": "8p", + "game_datetime_utc": "2026-08-28T00:00:00Z", "home_team": "New York Liberty", "away_team": "Golden State Valkyries", "home_team_abbrev": "NY", @@ -106437,8 +100524,7 @@ "canonical_id": "game_mlb_2026_20260828_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-27", - "time": "6:45p", + "game_datetime_utc": "2026-08-28T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -106455,8 +100541,7 @@ "canonical_id": "game_wnba_2026_20260828_was_phx", "sport": "WNBA", "season": "2026", - "date": "2026-08-27", - "time": "10p", + "game_datetime_utc": "2026-08-28T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Washington Mystics", "home_team_abbrev": "PHX", @@ -106473,8 +100558,7 @@ "canonical_id": "game_mlb_2026_20260828_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "1:20p", + "game_datetime_utc": "2026-08-28T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -106491,8 +100575,7 @@ "canonical_id": "game_mlb_2026_20260828_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-28T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -106509,8 +100592,7 @@ "canonical_id": "game_mlb_2026_20260828_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:45p", + "game_datetime_utc": "2026-08-28T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -106527,8 +100609,7 @@ "canonical_id": "game_mlb_2026_20260828_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:05p", + "game_datetime_utc": "2026-08-28T23:05:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -106545,8 +100626,7 @@ "canonical_id": "game_mlb_2026_20260828_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:07p", + "game_datetime_utc": "2026-08-28T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -106563,8 +100643,7 @@ "canonical_id": "game_mlb_2026_20260828_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -106581,8 +100660,7 @@ "canonical_id": "game_mlb_2026_20260828_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -106599,8 +100677,7 @@ "canonical_id": "game_mlb_2026_20260828_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-28T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -106617,8 +100694,7 @@ "canonical_id": "game_mlb_2026_20260828_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-28T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -106635,8 +100711,7 @@ "canonical_id": "game_wnba_2026_20260828_con_ind", "sport": "WNBA", "season": "2026", - "date": "2026-08-28", - "time": "7:30p", + "game_datetime_utc": "2026-08-28T23:30:00Z", "home_team": "Indiana Fever", "away_team": "Connecticut Sun", "home_team_abbrev": "IND", @@ -106653,8 +100728,7 @@ "canonical_id": "game_mlb_2026_20260828_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-28T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -106671,8 +100745,7 @@ "canonical_id": "game_nwsl_2026_20260829_por_njy", "sport": "NWSL", "season": "2026", - "date": "2026-08-28", - "time": "8p", + "game_datetime_utc": "2026-08-29T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "NJY", @@ -106689,8 +100762,7 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_1", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:10p", + "game_datetime_utc": "2026-08-29T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -106707,8 +100779,7 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -106725,8 +100796,7 @@ "canonical_id": "game_mlb_2026_20260829_phi_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:38p", + "game_datetime_utc": "2026-08-29T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -106743,8 +100813,7 @@ "canonical_id": "game_mlb_2026_20260829_bal_oak", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "6:40p", + "game_datetime_utc": "2026-08-29T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -106761,8 +100830,7 @@ "canonical_id": "game_nwsl_2026_20260829_rgn_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-08-28", - "time": "7p", + "game_datetime_utc": "2026-08-29T02:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "SDW", @@ -106779,8 +100847,7 @@ "canonical_id": "game_wnba_2026_20260829_was_la", "sport": "WNBA", "season": "2026", - "date": "2026-08-28", - "time": "7p", + "game_datetime_utc": "2026-08-29T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Washington Mystics", "home_team_abbrev": "LA", @@ -106797,8 +100864,7 @@ "canonical_id": "game_mlb_2026_20260829_ari_sf", "sport": "MLB", "season": "2026", - "date": "2026-08-28", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -106815,8 +100881,7 @@ "canonical_id": "game_wnba_2026_20260829_chi_ny", "sport": "WNBA", "season": "2026", - "date": "2026-08-29", - "time": "1p", + "game_datetime_utc": "2026-08-29T17:00:00Z", "home_team": "New York Liberty", "away_team": "Chicago Sky", "home_team_abbrev": "NY", @@ -106833,8 +100898,7 @@ "canonical_id": "game_mlb_2026_20260829_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:10p", + "game_datetime_utc": "2026-08-29T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -106851,8 +100915,7 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_2", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:10p", + "game_datetime_utc": "2026-08-29T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -106869,8 +100932,7 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:15p", + "game_datetime_utc": "2026-08-29T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -106887,8 +100949,7 @@ "canonical_id": "game_mlb_2026_20260829_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "1:20p", + "game_datetime_utc": "2026-08-29T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -106905,8 +100966,7 @@ "canonical_id": "game_mlb_2026_20260829_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "3:07p", + "game_datetime_utc": "2026-08-29T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -106923,8 +100983,7 @@ "canonical_id": "game_mlb_2026_20260829_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:05p", + "game_datetime_utc": "2026-08-29T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -106941,8 +101000,7 @@ "canonical_id": "game_mlb_2026_20260829_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -106959,8 +101017,7 @@ "canonical_id": "game_mlb_2026_20260829_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -106977,8 +101034,7 @@ "canonical_id": "game_mlb_2026_20260829_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -106995,8 +101051,7 @@ "canonical_id": "game_mlb_2026_20260829_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "4:10p", + "game_datetime_utc": "2026-08-29T20:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -107013,8 +101068,7 @@ "canonical_id": "game_mls_2026_20260829_chi_sea", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "1:30p", + "game_datetime_utc": "2026-08-29T20:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "SEA", @@ -107031,8 +101085,7 @@ "canonical_id": "game_nwsl_2026_20260829_ncc_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "5:30p", + "game_datetime_utc": "2026-08-29T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "KCC", @@ -107049,8 +101102,7 @@ "canonical_id": "game_nwsl_2026_20260829_uta_orl", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "7p", + "game_datetime_utc": "2026-08-29T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Utah Utah Royals", "home_team_abbrev": "ORL", @@ -107067,8 +101119,7 @@ "canonical_id": "game_mlb_2026_20260829_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:15p", + "game_datetime_utc": "2026-08-29T23:15:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -107085,8 +101136,7 @@ "canonical_id": "game_mlb_2026_20260829_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "6:15p", + "game_datetime_utc": "2026-08-29T23:15:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -107103,8 +101153,7 @@ "canonical_id": "game_mls_2026_20260829_phi_ny", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "RB", @@ -107121,8 +101170,7 @@ "canonical_id": "game_mls_2026_20260829_mtl_mia", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Montreal CF Montreal", "home_team_abbrev": "MIA", @@ -107139,8 +101187,7 @@ "canonical_id": "game_mls_2026_20260829_nyc_tor", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "New York New York City FC", "home_team_abbrev": "TOR", @@ -107157,8 +101204,7 @@ "canonical_id": "game_mls_2026_20260829_clt_atl", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "ATL", @@ -107175,8 +101221,7 @@ "canonical_id": "game_mls_2026_20260829_ne_clb", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New England New England Revolution", "home_team_abbrev": "CLB", @@ -107193,8 +101238,7 @@ "canonical_id": "game_mls_2026_20260829_lafc_dc", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-29T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "DC", @@ -107211,8 +101255,7 @@ "canonical_id": "game_mls_2026_20260830_sj_hou", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "HOU", @@ -107229,8 +101272,7 @@ "canonical_id": "game_mls_2026_20260830_orl_min", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Orlando Orlando City", "home_team_abbrev": "MIN", @@ -107247,8 +101289,7 @@ "canonical_id": "game_mls_2026_20260830_cin_nsh", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "NSH", @@ -107265,8 +101306,7 @@ "canonical_id": "game_mls_2026_20260830_van_skc", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SKC", @@ -107283,8 +101323,7 @@ "canonical_id": "game_nwsl_2026_20260830_chi_den", "sport": "NWSL", "season": "2026", - "date": "2026-08-29", - "time": "6:45p", + "game_datetime_utc": "2026-08-30T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "DEN", @@ -107301,8 +101340,7 @@ "canonical_id": "game_mls_2026_20260830_slc_col", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "COL", @@ -107319,8 +101357,7 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:05p", + "game_datetime_utc": "2026-08-30T02:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -107337,8 +101374,7 @@ "canonical_id": "game_mlb_2026_20260830_bal_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:05p", + "game_datetime_utc": "2026-08-30T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -107355,8 +101391,7 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-08-29", - "time": "7:07p", + "game_datetime_utc": "2026-08-30T02:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -107373,8 +101408,7 @@ "canonical_id": "game_mls_2026_20260830_aus_por", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Austin Austin FC", "home_team_abbrev": "POR", @@ -107391,8 +101425,7 @@ "canonical_id": "game_mls_2026_20260830_lag_sd", "sport": "MLS", "season": "2026", - "date": "2026-08-29", - "time": "7:30p", + "game_datetime_utc": "2026-08-30T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SD", @@ -107409,8 +101442,7 @@ "canonical_id": "game_mlb_2026_20260830_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "12:10p", + "game_datetime_utc": "2026-08-30T16:10:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -107427,8 +101459,7 @@ "canonical_id": "game_nwsl_2026_20260830_bay_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-08-30", - "time": "12:30p", + "game_datetime_utc": "2026-08-30T16:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "San Francisco Bay FC", "home_team_abbrev": "WSH", @@ -107445,8 +101476,7 @@ "canonical_id": "game_mlb_2026_20260830_bos_nyy", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:35p", + "game_datetime_utc": "2026-08-30T17:35:00Z", "home_team": "New York Yankees", "away_team": "Boston Red Sox", "home_team_abbrev": "NYY", @@ -107463,8 +101493,7 @@ "canonical_id": "game_mlb_2026_20260830_col_atl", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:35p", + "game_datetime_utc": "2026-08-30T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Colorado Rockies", "home_team_abbrev": "ATL", @@ -107481,8 +101510,7 @@ "canonical_id": "game_mlb_2026_20260830_sea_tor", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:37p", + "game_datetime_utc": "2026-08-30T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Seattle Mariners", "home_team_abbrev": "TOR", @@ -107499,8 +101527,7 @@ "canonical_id": "game_mlb_2026_20260830_lad_det", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "DET", @@ -107517,8 +101544,7 @@ "canonical_id": "game_mlb_2026_20260830_kc_cle", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Kansas City Royals", "home_team_abbrev": "CLE", @@ -107535,8 +101561,7 @@ "canonical_id": "game_mlb_2026_20260830_sd_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:40p", + "game_datetime_utc": "2026-08-30T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "San Diego Padres", "home_team_abbrev": "TB", @@ -107553,8 +101578,7 @@ "canonical_id": "game_mlb_2026_20260830_tex_mil", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:10p", + "game_datetime_utc": "2026-08-30T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Texas Rangers", "home_team_abbrev": "MIL", @@ -107571,8 +101595,7 @@ "canonical_id": "game_mlb_2026_20260830_chw_min", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:10p", + "game_datetime_utc": "2026-08-30T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Chicago White Sox", "home_team_abbrev": "MIN", @@ -107589,8 +101612,7 @@ "canonical_id": "game_mlb_2026_20260830_pit_stl", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:15p", + "game_datetime_utc": "2026-08-30T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "STL", @@ -107607,8 +101629,7 @@ "canonical_id": "game_wnba_2026_20260830_min_atl", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "3p", + "game_datetime_utc": "2026-08-30T19:00:00Z", "home_team": "Atlanta Dream", "away_team": "Minnesota Lynx", "home_team_abbrev": "ATL", @@ -107625,8 +101646,7 @@ "canonical_id": "game_mlb_2026_20260830_cin_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "2:10p", + "game_datetime_utc": "2026-08-30T19:10:00Z", "home_team": "Chicago Cubs", "away_team": "Cincinnati Reds", "home_team_abbrev": "CHC", @@ -107643,8 +101663,7 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:05p", + "game_datetime_utc": "2026-08-30T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SF", @@ -107661,8 +101680,7 @@ "canonical_id": "game_mlb_2026_20260830_bal_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:05p", + "game_datetime_utc": "2026-08-30T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Baltimore Orioles", "home_team_abbrev": "OAK", @@ -107679,8 +101697,7 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "1:07p", + "game_datetime_utc": "2026-08-30T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Philadelphia Phillies", "home_team_abbrev": "LAA", @@ -107697,8 +101714,7 @@ "canonical_id": "game_wnba_2026_20260830_la_sea", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "2p", + "game_datetime_utc": "2026-08-30T21:00:00Z", "home_team": "Seattle Storm", "away_team": "Los Angeles Sparks", "home_team_abbrev": "SEA", @@ -107715,8 +101731,7 @@ "canonical_id": "game_mls_2026_20260830_dal_stl", "sport": "MLS", "season": "2026", - "date": "2026-08-30", - "time": "6p", + "game_datetime_utc": "2026-08-30T23:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "STL", @@ -107733,8 +101748,7 @@ "canonical_id": "game_nwsl_2026_20260830_hou_sea", "sport": "NWSL", "season": "2026", - "date": "2026-08-30", - "time": "4p", + "game_datetime_utc": "2026-08-30T23:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Houston Houston Dash", "home_team_abbrev": "SEA", @@ -107751,8 +101765,7 @@ "canonical_id": "game_mlb_2026_20260830_hou_nym", "sport": "MLB", "season": "2026", - "date": "2026-08-30", - "time": "7:20p", + "game_datetime_utc": "2026-08-30T23:20:00Z", "home_team": "New York Mets", "away_team": "Houston Astros", "home_team_abbrev": "NYM", @@ -107769,8 +101782,7 @@ "canonical_id": "game_wnba_2026_20260831_con_dal", "sport": "WNBA", "season": "2026", - "date": "2026-08-30", - "time": "7p", + "game_datetime_utc": "2026-08-31T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Connecticut Sun", "home_team_abbrev": "DAL", @@ -107787,8 +101799,7 @@ "canonical_id": "game_mlb_2026_20260831_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -107805,8 +101816,7 @@ "canonical_id": "game_mlb_2026_20260831_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -107823,8 +101833,7 @@ "canonical_id": "game_mlb_2026_20260831_mia_wsn", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:45p", + "game_datetime_utc": "2026-08-31T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Miami Marlins", "home_team_abbrev": "WSN", @@ -107841,8 +101850,7 @@ "canonical_id": "game_mlb_2026_20260831_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:45p", + "game_datetime_utc": "2026-08-31T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -107859,8 +101867,7 @@ "canonical_id": "game_mlb_2026_20260831_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -107877,8 +101884,7 @@ "canonical_id": "game_mlb_2026_20260831_det_min", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-08-31T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -107895,8 +101901,7 @@ "canonical_id": "game_nwsl_2026_20260901_ang_bos", "sport": "NWSL", "season": "2026", - "date": "2026-08-31", - "time": "8p", + "game_datetime_utc": "2026-09-01T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "BOS", @@ -107913,8 +101918,7 @@ "canonical_id": "game_mlb_2026_20260901_oak_tex", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "7:05p", + "game_datetime_utc": "2026-09-01T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -107931,8 +101935,7 @@ "canonical_id": "game_mlb_2026_20260901_chw_hou", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "7:10p", + "game_datetime_utc": "2026-09-01T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -107949,8 +101952,7 @@ "canonical_id": "game_mlb_2026_20260901_bal_col", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -107967,8 +101969,7 @@ "canonical_id": "game_mlb_2026_20260901_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:38p", + "game_datetime_utc": "2026-09-01T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -107985,8 +101986,7 @@ "canonical_id": "game_mlb_2026_20260901_phi_ari", "sport": "MLB", "season": "2026", - "date": "2026-08-31", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108003,8 +102003,7 @@ "canonical_id": "game_mlb_2026_20260901_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -108021,8 +102020,7 @@ "canonical_id": "game_mlb_2026_20260901_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108039,8 +102037,7 @@ "canonical_id": "game_mlb_2026_20260901_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -108057,8 +102054,7 @@ "canonical_id": "game_mlb_2026_20260901_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108075,8 +102071,7 @@ "canonical_id": "game_mlb_2026_20260901_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:45p", + "game_datetime_utc": "2026-09-01T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -108093,8 +102088,7 @@ "canonical_id": "game_mlb_2026_20260901_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:45p", + "game_datetime_utc": "2026-09-01T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -108111,8 +102105,7 @@ "canonical_id": "game_mlb_2026_20260901_det_min", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -108129,8 +102122,7 @@ "canonical_id": "game_mlb_2026_20260901_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108147,8 +102139,7 @@ "canonical_id": "game_mlb_2026_20260901_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-01T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108165,8 +102156,7 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:05p", + "game_datetime_utc": "2026-09-02T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -108183,8 +102173,7 @@ "canonical_id": "game_mlb_2026_20260902_chw_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:10p", + "game_datetime_utc": "2026-09-02T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108201,8 +102190,7 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -108219,8 +102207,7 @@ "canonical_id": "game_mlb_2026_20260902_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:38p", + "game_datetime_utc": "2026-09-02T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -108237,8 +102224,7 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108255,8 +102241,7 @@ "canonical_id": "game_mlb_2026_20260902_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-01", - "time": "7:10p", + "game_datetime_utc": "2026-09-02T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108273,8 +102258,7 @@ "canonical_id": "game_mlb_2026_20260902_sd_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "12:40p", + "game_datetime_utc": "2026-09-02T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "San Diego Padres", "home_team_abbrev": "CIN", @@ -108291,8 +102275,7 @@ "canonical_id": "game_mlb_2026_20260902_atl_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:05p", + "game_datetime_utc": "2026-09-02T17:05:00Z", "home_team": "Washington Nationals", "away_team": "Atlanta Braves", "home_team_abbrev": "WSN", @@ -108309,8 +102292,7 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:35p", + "game_datetime_utc": "2026-09-02T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Oakland Athletics", "home_team_abbrev": "TEX", @@ -108327,8 +102309,7 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "1:10p", + "game_datetime_utc": "2026-09-02T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Baltimore Orioles", "home_team_abbrev": "COL", @@ -108345,8 +102326,7 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "12:40p", + "game_datetime_utc": "2026-09-02T19:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ARI", @@ -108363,8 +102343,7 @@ "canonical_id": "game_mlb_2026_20260902_sea_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "4:10p", + "game_datetime_utc": "2026-09-02T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Seattle Mariners", "home_team_abbrev": "BOS", @@ -108381,8 +102360,7 @@ "canonical_id": "game_mlb_2026_20260902_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108399,8 +102377,7 @@ "canonical_id": "game_mlb_2026_20260902_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108417,8 +102394,7 @@ "canonical_id": "game_mlb_2026_20260902_nym_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "New York Mets", "home_team_abbrev": "TB", @@ -108435,8 +102411,7 @@ "canonical_id": "game_mlb_2026_20260902_det_min", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "Detroit Tigers", "home_team_abbrev": "MIN", @@ -108453,8 +102428,7 @@ "canonical_id": "game_mlb_2026_20260902_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108471,8 +102445,7 @@ "canonical_id": "game_mlb_2026_20260902_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:40p", + "game_datetime_utc": "2026-09-02T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108489,8 +102462,7 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "7:10p", + "game_datetime_utc": "2026-09-03T00:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108507,8 +102479,7 @@ "canonical_id": "game_mlb_2026_20260903_nyy_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "6:38p", + "game_datetime_utc": "2026-09-03T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "New York Yankees", "home_team_abbrev": "LAA", @@ -108525,8 +102496,7 @@ "canonical_id": "game_mlb_2026_20260903_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-02", - "time": "7:10p", + "game_datetime_utc": "2026-09-03T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108543,8 +102513,7 @@ "canonical_id": "game_mlb_2026_20260903_sf_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "12:35p", + "game_datetime_utc": "2026-09-03T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "San Francisco Giants", "home_team_abbrev": "PIT", @@ -108561,8 +102530,7 @@ "canonical_id": "game_mlb_2026_20260903_tor_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "1:10p", + "game_datetime_utc": "2026-09-03T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Toronto Blue Jays", "home_team_abbrev": "CLE", @@ -108579,8 +102547,7 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "1:10p", + "game_datetime_utc": "2026-09-03T18:10:00Z", "home_team": "Houston Astros", "away_team": "Chicago White Sox", "home_team_abbrev": "HOU", @@ -108597,8 +102564,7 @@ "canonical_id": "game_mlb_2026_20260903_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:35p", + "game_datetime_utc": "2026-09-03T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -108615,8 +102581,7 @@ "canonical_id": "game_mlb_2026_20260903_mil_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-03T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CHC", @@ -108633,8 +102598,7 @@ "canonical_id": "game_mlb_2026_20260903_mia_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-03T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Miami Marlins", "home_team_abbrev": "KC", @@ -108651,8 +102615,7 @@ "canonical_id": "game_mlb_2026_20260904_tbr_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "7:05p", + "game_datetime_utc": "2026-09-04T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -108669,8 +102632,7 @@ "canonical_id": "game_mlb_2026_20260904_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -108687,8 +102649,7 @@ "canonical_id": "game_mlb_2026_20260904_stl_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-03", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "LAD", @@ -108705,8 +102666,7 @@ "canonical_id": "game_mlb_2026_20260904_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -108723,8 +102683,7 @@ "canonical_id": "game_mlb_2026_20260904_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -108741,8 +102700,7 @@ "canonical_id": "game_mlb_2026_20260904_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -108759,8 +102717,7 @@ "canonical_id": "game_mlb_2026_20260904_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:05p", + "game_datetime_utc": "2026-09-04T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -108777,8 +102734,7 @@ "canonical_id": "game_mlb_2026_20260904_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -108795,8 +102751,7 @@ "canonical_id": "game_mlb_2026_20260904_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -108813,8 +102768,7 @@ "canonical_id": "game_mlb_2026_20260904_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-04T23:10:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -108831,8 +102785,7 @@ "canonical_id": "game_mls_2026_20260904_nsh_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-04", - "time": "7:30p", + "game_datetime_utc": "2026-09-04T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "NYC", @@ -108849,8 +102802,7 @@ "canonical_id": "game_mlb_2026_20260904_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-04T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -108867,8 +102819,7 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:05p", + "game_datetime_utc": "2026-09-05T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -108885,8 +102836,7 @@ "canonical_id": "game_mlb_2026_20260905_tor_kc_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T00:10:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -108903,8 +102853,7 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T00:10:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -108921,8 +102870,7 @@ "canonical_id": "game_mlb_2026_20260905_stl_col", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -108939,8 +102887,7 @@ "canonical_id": "game_nwsl_2026_20260905_bos_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-04", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T01:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "UTA", @@ -108957,8 +102904,7 @@ "canonical_id": "game_mlb_2026_20260905_nyy_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T01:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -108975,8 +102921,7 @@ "canonical_id": "game_nwsl_2026_20260905_kcc_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-04", - "time": "7p", + "game_datetime_utc": "2026-09-05T02:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "BAY", @@ -108993,8 +102938,7 @@ "canonical_id": "game_mlb_2026_20260905_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109011,8 +102955,7 @@ "canonical_id": "game_mlb_2026_20260905_oak_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-04", - "time": "7:10p", + "game_datetime_utc": "2026-09-05T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109029,8 +102972,7 @@ "canonical_id": "game_mlb_2026_20260905_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "4:10p", + "game_datetime_utc": "2026-09-05T20:10:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -109047,8 +102989,7 @@ "canonical_id": "game_mlb_2026_20260905_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "4:10p", + "game_datetime_utc": "2026-09-05T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -109065,8 +103006,7 @@ "canonical_id": "game_mlb_2026_20260905_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:05p", + "game_datetime_utc": "2026-09-05T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109083,8 +103023,7 @@ "canonical_id": "game_nwsl_2026_20260905_ang_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-05", - "time": "6:30p", + "game_datetime_utc": "2026-09-05T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "RGN", @@ -109101,8 +103040,7 @@ "canonical_id": "game_mlb_2026_20260905_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -109119,8 +103057,7 @@ "canonical_id": "game_mlb_2026_20260905_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-05T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -109137,8 +103074,7 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:05p", + "game_datetime_utc": "2026-09-05T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -109155,8 +103091,7 @@ "canonical_id": "game_mlb_2026_20260905_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-05T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -109173,8 +103108,7 @@ "canonical_id": "game_mlb_2026_20260905_tor_kc_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-05T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -109191,8 +103125,7 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -109209,8 +103142,7 @@ "canonical_id": "game_mlb_2026_20260905_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "7:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -109227,8 +103159,7 @@ "canonical_id": "game_mlb_2026_20260905_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "7:15p", + "game_datetime_utc": "2026-09-05T23:15:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -109245,8 +103176,7 @@ "canonical_id": "game_mls_2026_20260905_hou_clt", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "CLT", @@ -109263,8 +103193,7 @@ "canonical_id": "game_mls_2026_20260905_chi_tor", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "TOR", @@ -109281,8 +103210,7 @@ "canonical_id": "game_mls_2026_20260905_col_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "CLB", @@ -109299,8 +103227,7 @@ "canonical_id": "game_mls_2026_20260905_dc_cin", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Washington D.C. United", "home_team_abbrev": "CIN", @@ -109317,8 +103244,7 @@ "canonical_id": "game_mls_2026_20260905_atl_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MIA", @@ -109335,8 +103261,7 @@ "canonical_id": "game_mls_2026_20260905_mtl_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Montreal CF Montreal", "home_team_abbrev": "PHI", @@ -109353,8 +103278,7 @@ "canonical_id": "game_mls_2026_20260905_sd_orl", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-05T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "San Diego San Diego FC", "home_team_abbrev": "ORL", @@ -109371,8 +103295,7 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-06T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -109389,8 +103312,7 @@ "canonical_id": "game_mls_2026_20260906_sj_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "AUS", @@ -109407,8 +103329,7 @@ "canonical_id": "game_mls_2026_20260906_skc_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "DAL", @@ -109425,8 +103346,7 @@ "canonical_id": "game_mls_2026_20260906_ny_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "5:30p", + "game_datetime_utc": "2026-09-06T00:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "New York New York Red Bulls", "home_team_abbrev": "SEA", @@ -109443,8 +103363,7 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "5:40p", + "game_datetime_utc": "2026-09-06T00:40:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -109461,8 +103380,7 @@ "canonical_id": "game_mlb_2026_20260906_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:10p", + "game_datetime_utc": "2026-09-06T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109479,8 +103397,7 @@ "canonical_id": "game_mls_2026_20260906_ne_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "6:30p", + "game_datetime_utc": "2026-09-06T01:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "New England New England Revolution", "home_team_abbrev": "LAG", @@ -109497,8 +103414,7 @@ "canonical_id": "game_mls_2026_20260906_lafc_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SLC", @@ -109515,8 +103431,7 @@ "canonical_id": "game_mlb_2026_20260906_oak_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-05", - "time": "6:40p", + "game_datetime_utc": "2026-09-06T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109533,8 +103448,7 @@ "canonical_id": "game_mls_2026_20260906_min_por", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "POR", @@ -109551,8 +103465,7 @@ "canonical_id": "game_mls_2026_20260906_stl_van", "sport": "MLS", "season": "2026", - "date": "2026-09-05", - "time": "7:30p", + "game_datetime_utc": "2026-09-06T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "VAN", @@ -109569,8 +103482,7 @@ "canonical_id": "game_mlb_2026_20260906_mil_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "12:10p", + "game_datetime_utc": "2026-09-06T16:10:00Z", "home_team": "Cincinnati Reds", "away_team": "Milwaukee Brewers", "home_team_abbrev": "CIN", @@ -109587,8 +103499,7 @@ "canonical_id": "game_mlb_2026_20260906_bos_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Boston Red Sox", "home_team_abbrev": "BAL", @@ -109605,8 +103516,7 @@ "canonical_id": "game_mlb_2026_20260906_laa_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Los Angeles Angels", "home_team_abbrev": "PIT", @@ -109623,8 +103533,7 @@ "canonical_id": "game_mlb_2026_20260906_det_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Detroit Tigers", "home_team_abbrev": "CLE", @@ -109641,8 +103550,7 @@ "canonical_id": "game_mlb_2026_20260906_chc_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Chicago Cubs", "home_team_abbrev": "MIA", @@ -109659,8 +103567,7 @@ "canonical_id": "game_mlb_2026_20260906_sf_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:40p", + "game_datetime_utc": "2026-09-06T17:40:00Z", "home_team": "New York Mets", "away_team": "San Francisco Giants", "home_team_abbrev": "NYM", @@ -109677,8 +103584,7 @@ "canonical_id": "game_nwsl_2026_20260906_njy_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "12p", + "game_datetime_utc": "2026-09-06T18:00:00Z", "home_team": "Denver Denver Summit FC", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "DEN", @@ -109695,8 +103601,7 @@ "canonical_id": "game_mlb_2026_20260906_min_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Minnesota Twins", "home_team_abbrev": "CHW", @@ -109713,8 +103618,7 @@ "canonical_id": "game_mlb_2026_20260906_ari_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T18:10:00Z", "home_team": "Houston Astros", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "HOU", @@ -109731,8 +103635,7 @@ "canonical_id": "game_mlb_2026_20260906_tbr_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:35p", + "game_datetime_utc": "2026-09-06T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Tampa Bay Rays", "home_team_abbrev": "TEX", @@ -109749,8 +103652,7 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "St. Louis Cardinals", "home_team_abbrev": "COL", @@ -109767,8 +103669,7 @@ "canonical_id": "game_mlb_2026_20260906_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "3:10p", + "game_datetime_utc": "2026-09-06T19:10:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109785,8 +103686,7 @@ "canonical_id": "game_nwsl_2026_20260906_wsh_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "1p", + "game_datetime_utc": "2026-09-06T20:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Washington Washington Spirit", "home_team_abbrev": "POR", @@ -109803,8 +103703,7 @@ "canonical_id": "game_nwsl_2026_20260906_ncc_chi", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "3p", + "game_datetime_utc": "2026-09-06T20:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "CHI", @@ -109821,8 +103720,7 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T20:10:00Z", "home_team": "San Diego Padres", "away_team": "New York Yankees", "home_team_abbrev": "SD", @@ -109839,8 +103737,7 @@ "canonical_id": "game_mlb_2026_20260906_oak_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "1:10p", + "game_datetime_utc": "2026-09-06T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Oakland Athletics", "home_team_abbrev": "SEA", @@ -109857,8 +103754,7 @@ "canonical_id": "game_nwsl_2026_20260906_hou_orl", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "7p", + "game_datetime_utc": "2026-09-06T23:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Houston Houston Dash", "home_team_abbrev": "ORL", @@ -109875,8 +103771,7 @@ "canonical_id": "game_mlb_2026_20260906_tor_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "6:20p", + "game_datetime_utc": "2026-09-06T23:20:00Z", "home_team": "Kansas City Royals", "away_team": "Toronto Blue Jays", "home_team_abbrev": "KC", @@ -109893,8 +103788,7 @@ "canonical_id": "game_nwsl_2026_20260907_sdw_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-06", - "time": "6p", + "game_datetime_utc": "2026-09-07T01:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "SEA", @@ -109911,8 +103805,7 @@ "canonical_id": "game_mlb_2026_20260907_wsn_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-06", - "time": "7:10p", + "game_datetime_utc": "2026-09-07T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Washington Nationals", "home_team_abbrev": "LAD", @@ -109929,8 +103822,7 @@ "canonical_id": "game_mlb_2026_20260907_atl_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:05p", + "game_datetime_utc": "2026-09-07T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Atlanta Braves", "home_team_abbrev": "PHI", @@ -109947,8 +103839,7 @@ "canonical_id": "game_mlb_2026_20260907_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T17:10:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -109965,8 +103856,7 @@ "canonical_id": "game_mlb_2026_20260907_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -109983,8 +103873,7 @@ "canonical_id": "game_mlb_2026_20260907_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:35p", + "game_datetime_utc": "2026-09-07T17:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110001,8 +103890,7 @@ "canonical_id": "game_mlb_2026_20260907_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:35p", + "game_datetime_utc": "2026-09-07T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110019,8 +103907,7 @@ "canonical_id": "game_mlb_2026_20260907_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110037,8 +103924,7 @@ "canonical_id": "game_mlb_2026_20260907_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "1:10p", + "game_datetime_utc": "2026-09-07T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110055,8 +103941,7 @@ "canonical_id": "game_mlb_2026_20260907_wsn_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "2:10p", + "game_datetime_utc": "2026-09-07T21:10:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110073,8 +103958,7 @@ "canonical_id": "game_mlb_2026_20260908_stl_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "5:10p", + "game_datetime_utc": "2026-09-08T00:10:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110091,8 +103975,7 @@ "canonical_id": "game_mlb_2026_20260908_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "6:10p", + "game_datetime_utc": "2026-09-08T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110109,8 +103992,7 @@ "canonical_id": "game_mlb_2026_20260908_tor_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-07", - "time": "7:05p", + "game_datetime_utc": "2026-09-08T02:05:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110127,8 +104009,7 @@ "canonical_id": "game_mlb_2026_20260908_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:35p", + "game_datetime_utc": "2026-09-08T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110145,8 +104026,7 @@ "canonical_id": "game_mlb_2026_20260908_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110163,8 +104043,7 @@ "canonical_id": "game_mlb_2026_20260908_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -110181,8 +104060,7 @@ "canonical_id": "game_mlb_2026_20260908_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T22:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -110199,8 +104077,7 @@ "canonical_id": "game_mlb_2026_20260908_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:45p", + "game_datetime_utc": "2026-09-08T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110217,8 +104094,7 @@ "canonical_id": "game_mlb_2026_20260908_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:05p", + "game_datetime_utc": "2026-09-08T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -110235,8 +104111,7 @@ "canonical_id": "game_mlb_2026_20260908_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:15p", + "game_datetime_utc": "2026-09-08T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110253,8 +104128,7 @@ "canonical_id": "game_mlb_2026_20260908_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110271,8 +104145,7 @@ "canonical_id": "game_mlb_2026_20260908_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110289,8 +104162,7 @@ "canonical_id": "game_mlb_2026_20260908_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-08T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -110307,8 +104179,7 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110325,8 +104196,7 @@ "canonical_id": "game_mlb_2026_20260909_tex_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110343,8 +104213,7 @@ "canonical_id": "game_mlb_2026_20260909_tor_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110361,8 +104230,7 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "6:45p", + "game_datetime_utc": "2026-09-09T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110379,8 +104247,7 @@ "canonical_id": "game_mlb_2026_20260909_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-08", - "time": "7:10p", + "game_datetime_utc": "2026-09-09T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110397,8 +104264,7 @@ "canonical_id": "game_mlb_2026_20260909_min_det", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "1:10p", + "game_datetime_utc": "2026-09-09T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Minnesota Twins", "home_team_abbrev": "DET", @@ -110415,8 +104281,7 @@ "canonical_id": "game_mlb_2026_20260909_tor_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "12:05p", + "game_datetime_utc": "2026-09-09T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Toronto Blue Jays", "home_team_abbrev": "OAK", @@ -110433,8 +104298,7 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "12:45p", + "game_datetime_utc": "2026-09-09T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "St. Louis Cardinals", "home_team_abbrev": "SF", @@ -110451,8 +104315,7 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "1:10p", + "game_datetime_utc": "2026-09-09T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Washington Nationals", "home_team_abbrev": "SD", @@ -110469,8 +104332,7 @@ "canonical_id": "game_mlb_2026_20260909_cle_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:35p", + "game_datetime_utc": "2026-09-09T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Cleveland Guardians", "home_team_abbrev": "BAL", @@ -110487,8 +104349,7 @@ "canonical_id": "game_mlb_2026_20260909_nym_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T22:40:00Z", "home_team": "Miami Marlins", "away_team": "New York Mets", "home_team_abbrev": "MIA", @@ -110505,8 +104366,7 @@ "canonical_id": "game_mlb_2026_20260909_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110523,8 +104383,7 @@ "canonical_id": "game_mlb_2026_20260909_laa_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:45p", + "game_datetime_utc": "2026-09-09T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Los Angeles Angels", "home_team_abbrev": "BOS", @@ -110541,8 +104400,7 @@ "canonical_id": "game_mlb_2026_20260909_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:05p", + "game_datetime_utc": "2026-09-09T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -110559,8 +104417,7 @@ "canonical_id": "game_mlb_2026_20260909_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:15p", + "game_datetime_utc": "2026-09-09T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110577,8 +104434,7 @@ "canonical_id": "game_mls_2026_20260909_orl_atl", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Orlando Orlando City", "home_team_abbrev": "ATL", @@ -110595,8 +104451,7 @@ "canonical_id": "game_mls_2026_20260909_nsh_tor", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "TOR", @@ -110613,8 +104468,7 @@ "canonical_id": "game_mls_2026_20260909_clt_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "MTL", @@ -110631,8 +104485,7 @@ "canonical_id": "game_mls_2026_20260909_clb_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "DC", @@ -110649,8 +104502,7 @@ "canonical_id": "game_mls_2026_20260909_ne_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "New York New York City FC", "away_team": "New England New England Revolution", "home_team_abbrev": "NYC", @@ -110667,8 +104519,7 @@ "canonical_id": "game_mls_2026_20260909_cin_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-09T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "PHI", @@ -110685,8 +104536,7 @@ "canonical_id": "game_mlb_2026_20260909_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -110703,8 +104553,7 @@ "canonical_id": "game_mlb_2026_20260909_ari_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "KC", @@ -110721,8 +104570,7 @@ "canonical_id": "game_mlb_2026_20260909_chc_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-09T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Chicago Cubs", "home_team_abbrev": "MIL", @@ -110739,8 +104587,7 @@ "canonical_id": "game_mls_2026_20260910_dal_min", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Dallas FC Dallas", "home_team_abbrev": "MIN", @@ -110757,8 +104604,7 @@ "canonical_id": "game_mls_2026_20260910_col_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "AUS", @@ -110775,8 +104621,7 @@ "canonical_id": "game_mls_2026_20260910_mia_chi", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Miami Inter Miami", "home_team_abbrev": "CHI", @@ -110793,8 +104638,7 @@ "canonical_id": "game_mls_2026_20260910_slc_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "HOU", @@ -110811,8 +104655,7 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "6:40p", + "game_datetime_utc": "2026-09-10T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110829,8 +104672,7 @@ "canonical_id": "game_mlb_2026_20260910_cin_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-09", - "time": "7:10p", + "game_datetime_utc": "2026-09-10T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "Cincinnati Reds", "home_team_abbrev": "LAD", @@ -110847,8 +104689,7 @@ "canonical_id": "game_mls_2026_20260910_ny_lafc", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "LAFC", @@ -110865,8 +104706,7 @@ "canonical_id": "game_mls_2026_20260910_stl_por", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "POR", @@ -110883,8 +104723,7 @@ "canonical_id": "game_mls_2026_20260910_sj_sd", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SD", @@ -110901,8 +104740,7 @@ "canonical_id": "game_mls_2026_20260910_skc_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SEA", @@ -110919,8 +104757,7 @@ "canonical_id": "game_mls_2026_20260910_lag_van", "sport": "MLS", "season": "2026", - "date": "2026-09-09", - "time": "7:30p", + "game_datetime_utc": "2026-09-10T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "VAN", @@ -110937,8 +104774,7 @@ "canonical_id": "game_mlb_2026_20260910_tbr_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "12:15p", + "game_datetime_utc": "2026-09-10T16:15:00Z", "home_team": "Atlanta Braves", "away_team": "Tampa Bay Rays", "home_team_abbrev": "ATL", @@ -110955,8 +104791,7 @@ "canonical_id": "game_mlb_2026_20260910_hou_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "1:05p", + "game_datetime_utc": "2026-09-10T17:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Houston Astros", "home_team_abbrev": "PHI", @@ -110973,8 +104808,7 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "1:10p", + "game_datetime_utc": "2026-09-10T20:10:00Z", "home_team": "Seattle Mariners", "away_team": "Texas Rangers", "home_team_abbrev": "SEA", @@ -110991,8 +104825,7 @@ "canonical_id": "game_mlb_2026_20260910_col_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "7:05p", + "game_datetime_utc": "2026-09-10T23:05:00Z", "home_team": "New York Yankees", "away_team": "Colorado Rockies", "home_team_abbrev": "NYY", @@ -111009,8 +104842,7 @@ "canonical_id": "game_mlb_2026_20260910_pit_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-10", - "time": "6:40p", + "game_datetime_utc": "2026-09-10T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHW", @@ -111027,8 +104859,7 @@ "canonical_id": "game_mlb_2026_20260911_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "1:20p", + "game_datetime_utc": "2026-09-11T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -111045,8 +104876,7 @@ "canonical_id": "game_nwsl_2026_20260911_njy_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "6:30p", + "game_datetime_utc": "2026-09-11T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "RGN", @@ -111063,8 +104893,7 @@ "canonical_id": "game_mlb_2026_20260911_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-11T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -111081,8 +104910,7 @@ "canonical_id": "game_mlb_2026_20260911_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:45p", + "game_datetime_utc": "2026-09-11T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111099,8 +104927,7 @@ "canonical_id": "game_mlb_2026_20260911_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:05p", + "game_datetime_utc": "2026-09-11T23:05:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111117,8 +104944,7 @@ "canonical_id": "game_mlb_2026_20260911_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:07p", + "game_datetime_utc": "2026-09-11T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111135,8 +104961,7 @@ "canonical_id": "game_mlb_2026_20260911_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -111153,8 +104978,7 @@ "canonical_id": "game_mlb_2026_20260911_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -111171,8 +104995,7 @@ "canonical_id": "game_mlb_2026_20260911_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-11T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111189,8 +105012,7 @@ "canonical_id": "game_mlb_2026_20260911_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-11T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111207,8 +105029,7 @@ "canonical_id": "game_mlb_2026_20260911_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-11T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -111225,8 +105046,7 @@ "canonical_id": "game_nwsl_2026_20260912_orl_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "7p", + "game_datetime_utc": "2026-09-12T00:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "KCC", @@ -111243,8 +105063,7 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:10p", + "game_datetime_utc": "2026-09-12T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -111261,8 +105080,7 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -111279,8 +105097,7 @@ "canonical_id": "game_nwsl_2026_20260912_bay_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "5:30p", + "game_datetime_utc": "2026-09-12T00:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "San Francisco Bay FC", "home_team_abbrev": "SEA", @@ -111297,8 +105114,7 @@ "canonical_id": "game_mlb_2026_20260912_sea_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-12T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -111315,8 +105131,7 @@ "canonical_id": "game_mlb_2026_20260912_tex_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "6:40p", + "game_datetime_utc": "2026-09-12T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -111333,8 +105148,7 @@ "canonical_id": "game_nwsl_2026_20260912_den_ang", "sport": "NWSL", "season": "2026", - "date": "2026-09-11", - "time": "7p", + "game_datetime_utc": "2026-09-12T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "ANG", @@ -111351,8 +105165,7 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-11", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -111369,8 +105182,7 @@ "canonical_id": "game_mlb_2026_20260912_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:10p", + "game_datetime_utc": "2026-09-12T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -111387,8 +105199,7 @@ "canonical_id": "game_mlb_2026_20260912_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:35p", + "game_datetime_utc": "2026-09-12T17:35:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111405,8 +105216,7 @@ "canonical_id": "game_mlb_2026_20260912_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:20p", + "game_datetime_utc": "2026-09-12T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -111423,8 +105233,7 @@ "canonical_id": "game_mlb_2026_20260912_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "3:07p", + "game_datetime_utc": "2026-09-12T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111441,8 +105250,7 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "1:05p", + "game_datetime_utc": "2026-09-12T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -111459,8 +105267,7 @@ "canonical_id": "game_mlb_2026_20260912_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:05p", + "game_datetime_utc": "2026-09-12T20:05:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111477,8 +105284,7 @@ "canonical_id": "game_mlb_2026_20260912_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -111495,8 +105301,7 @@ "canonical_id": "game_mlb_2026_20260912_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "4:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111513,8 +105318,7 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "3:10p", + "game_datetime_utc": "2026-09-12T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -111531,8 +105335,7 @@ "canonical_id": "game_mlb_2026_20260912_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:10p", + "game_datetime_utc": "2026-09-12T22:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -111549,8 +105352,7 @@ "canonical_id": "game_nwsl_2026_20260912_ncc_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-09-12", - "time": "3:30p", + "game_datetime_utc": "2026-09-12T22:30:00Z", "home_team": "San Diego San Diego Wave", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "SDW", @@ -111567,8 +105369,7 @@ "canonical_id": "game_mlb_2026_20260912_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:10p", + "game_datetime_utc": "2026-09-12T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -111585,8 +105386,7 @@ "canonical_id": "game_mlb_2026_20260912_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "7:15p", + "game_datetime_utc": "2026-09-12T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111603,8 +105403,7 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:15p", + "game_datetime_utc": "2026-09-12T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -111621,8 +105420,7 @@ "canonical_id": "game_mls_2026_20260912_ny_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "New York New York Red Bulls", "home_team_abbrev": "CLB", @@ -111639,8 +105437,7 @@ "canonical_id": "game_mls_2026_20260912_atl_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "DC", @@ -111657,8 +105454,7 @@ "canonical_id": "game_mls_2026_20260912_clt_cin", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CIN", @@ -111675,8 +105471,7 @@ "canonical_id": "game_mls_2026_20260912_nsh_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Nashville Nashville SC", "home_team_abbrev": "MIA", @@ -111693,8 +105488,7 @@ "canonical_id": "game_mls_2026_20260912_tor_orl", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-12T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Toronto Toronto FC", "home_team_abbrev": "ORL", @@ -111711,8 +105505,7 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "5:10p", + "game_datetime_utc": "2026-09-13T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -111729,8 +105522,7 @@ "canonical_id": "game_mls_2026_20260913_lafc_skc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SKC", @@ -111747,8 +105539,7 @@ "canonical_id": "game_mls_2026_20260913_por_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Portland Portland Timbers", "home_team_abbrev": "DAL", @@ -111765,8 +105556,7 @@ "canonical_id": "game_mls_2026_20260913_min_stl", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "STL", @@ -111783,8 +105573,7 @@ "canonical_id": "game_nwsl_2026_20260913_uta_hou", "sport": "NWSL", "season": "2026", - "date": "2026-09-12", - "time": "7:45p", + "game_datetime_utc": "2026-09-13T00:45:00Z", "home_team": "Houston Houston Dash", "away_team": "Utah Utah Royals", "home_team_abbrev": "HOU", @@ -111801,8 +105590,7 @@ "canonical_id": "game_mls_2026_20260913_mtl_col", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Montreal CF Montreal", "home_team_abbrev": "COL", @@ -111819,8 +105607,7 @@ "canonical_id": "game_mls_2026_20260913_nyc_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "New York New York City FC", "home_team_abbrev": "SLC", @@ -111837,8 +105624,7 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-12", - "time": "6:40p", + "game_datetime_utc": "2026-09-13T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -111855,8 +105641,7 @@ "canonical_id": "game_mls_2026_20260913_sea_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "LAG", @@ -111873,8 +105658,7 @@ "canonical_id": "game_mls_2026_20260913_hou_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-12", - "time": "7:30p", + "game_datetime_utc": "2026-09-13T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SJ", @@ -111891,8 +105675,7 @@ "canonical_id": "game_nwsl_2026_20260913_bos_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-09-13", - "time": "1p", + "game_datetime_utc": "2026-09-13T17:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "WSH", @@ -111909,8 +105692,7 @@ "canonical_id": "game_mlb_2026_20260913_laa_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Washington Nationals", "away_team": "Los Angeles Angels", "home_team_abbrev": "WSN", @@ -111927,8 +105709,7 @@ "canonical_id": "game_mlb_2026_20260913_phi_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Atlanta Braves", "away_team": "Philadelphia Phillies", "home_team_abbrev": "ATL", @@ -111945,8 +105726,7 @@ "canonical_id": "game_mlb_2026_20260913_nym_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "New York Yankees", "away_team": "New York Mets", "home_team_abbrev": "NYY", @@ -111963,8 +105743,7 @@ "canonical_id": "game_mlb_2026_20260913_kc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:35p", + "game_datetime_utc": "2026-09-13T17:35:00Z", "home_team": "Boston Red Sox", "away_team": "Kansas City Royals", "home_team_abbrev": "BOS", @@ -111981,8 +105760,7 @@ "canonical_id": "game_mlb_2026_20260913_bal_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:37p", + "game_datetime_utc": "2026-09-13T17:37:00Z", "home_team": "Toronto Blue Jays", "away_team": "Baltimore Orioles", "home_team_abbrev": "TOR", @@ -111999,8 +105777,7 @@ "canonical_id": "game_mlb_2026_20260913_hou_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Houston Astros", "home_team_abbrev": "TB", @@ -112017,8 +105794,7 @@ "canonical_id": "game_mlb_2026_20260913_col_det", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Detroit Tigers", "away_team": "Colorado Rockies", "home_team_abbrev": "DET", @@ -112035,8 +105811,7 @@ "canonical_id": "game_mlb_2026_20260913_lad_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:40p", + "game_datetime_utc": "2026-09-13T17:40:00Z", "home_team": "Miami Marlins", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "MIA", @@ -112053,8 +105828,7 @@ "canonical_id": "game_mlb_2026_20260913_cle_min", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T18:10:00Z", "home_team": "Minnesota Twins", "away_team": "Cleveland Guardians", "home_team_abbrev": "MIN", @@ -112071,8 +105845,7 @@ "canonical_id": "game_mlb_2026_20260913_cin_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T18:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "Cincinnati Reds", "home_team_abbrev": "MIL", @@ -112089,8 +105862,7 @@ "canonical_id": "game_mlb_2026_20260913_chw_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:15p", + "game_datetime_utc": "2026-09-13T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Chicago White Sox", "home_team_abbrev": "STL", @@ -112107,8 +105879,7 @@ "canonical_id": "game_mlb_2026_20260913_pit_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:20p", + "game_datetime_utc": "2026-09-13T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "CHC", @@ -112125,8 +105896,7 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:05p", + "game_datetime_utc": "2026-09-13T20:05:00Z", "home_team": "Oakland Athletics", "away_team": "Seattle Mariners", "home_team_abbrev": "OAK", @@ -112143,8 +105913,7 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "1:10p", + "game_datetime_utc": "2026-09-13T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Texas Rangers", "home_team_abbrev": "ARI", @@ -112161,8 +105930,7 @@ "canonical_id": "game_mls_2026_20260913_ne_chi", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "5:30p", + "game_datetime_utc": "2026-09-13T22:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New England New England Revolution", "home_team_abbrev": "CHI", @@ -112179,8 +105947,7 @@ "canonical_id": "game_mls_2026_20260913_aus_van", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "3:30p", + "game_datetime_utc": "2026-09-13T22:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Austin Austin FC", "home_team_abbrev": "VAN", @@ -112197,8 +105964,7 @@ "canonical_id": "game_nwsl_2026_20260913_chi_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-13", - "time": "4p", + "game_datetime_utc": "2026-09-13T23:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "POR", @@ -112215,8 +105981,7 @@ "canonical_id": "game_mlb_2026_20260913_sd_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-13", - "time": "4:20p", + "game_datetime_utc": "2026-09-13T23:20:00Z", "home_team": "San Francisco Giants", "away_team": "San Diego Padres", "home_team_abbrev": "SF", @@ -112233,8 +105998,7 @@ "canonical_id": "game_mls_2026_20260914_phi_sd", "sport": "MLS", "season": "2026", - "date": "2026-09-13", - "time": "6p", + "game_datetime_utc": "2026-09-14T01:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "SD", @@ -112251,8 +106015,7 @@ "canonical_id": "game_mlb_2026_20260914_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112269,8 +106032,7 @@ "canonical_id": "game_mlb_2026_20260914_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112287,8 +106049,7 @@ "canonical_id": "game_mlb_2026_20260914_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "7:07p", + "game_datetime_utc": "2026-09-14T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112305,8 +106066,7 @@ "canonical_id": "game_mlb_2026_20260914_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "7:10p", + "game_datetime_utc": "2026-09-14T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112323,8 +106083,7 @@ "canonical_id": "game_mlb_2026_20260914_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112341,8 +106100,7 @@ "canonical_id": "game_mlb_2026_20260914_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-14T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112359,8 +106117,7 @@ "canonical_id": "game_mlb_2026_20260914_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:45p", + "game_datetime_utc": "2026-09-14T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112377,8 +106134,7 @@ "canonical_id": "game_mlb_2026_20260915_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112395,8 +106151,7 @@ "canonical_id": "game_mlb_2026_20260915_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:38p", + "game_datetime_utc": "2026-09-15T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112413,8 +106168,7 @@ "canonical_id": "game_mlb_2026_20260915_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-14", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112431,8 +106185,7 @@ "canonical_id": "game_mlb_2026_20260915_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -112449,8 +106202,7 @@ "canonical_id": "game_mlb_2026_20260915_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112467,8 +106219,7 @@ "canonical_id": "game_mlb_2026_20260915_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -112485,8 +106236,7 @@ "canonical_id": "game_mlb_2026_20260915_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112503,8 +106253,7 @@ "canonical_id": "game_mlb_2026_20260915_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:45p", + "game_datetime_utc": "2026-09-15T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -112521,8 +106270,7 @@ "canonical_id": "game_mlb_2026_20260915_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:07p", + "game_datetime_utc": "2026-09-15T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112539,8 +106287,7 @@ "canonical_id": "game_mlb_2026_20260915_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:10p", + "game_datetime_utc": "2026-09-15T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112557,8 +106304,7 @@ "canonical_id": "game_mlb_2026_20260915_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T23:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112575,8 +106321,7 @@ "canonical_id": "game_mlb_2026_20260915_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-15T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112593,8 +106338,7 @@ "canonical_id": "game_mlb_2026_20260915_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:45p", + "game_datetime_utc": "2026-09-15T23:45:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112611,8 +106355,7 @@ "canonical_id": "game_mlb_2026_20260916_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:05p", + "game_datetime_utc": "2026-09-16T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -112629,8 +106372,7 @@ "canonical_id": "game_mlb_2026_20260916_kc_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "7:10p", + "game_datetime_utc": "2026-09-16T00:10:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -112647,8 +106389,7 @@ "canonical_id": "game_mlb_2026_20260916_sd_col", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112665,8 +106406,7 @@ "canonical_id": "game_mlb_2026_20260916_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:38p", + "game_datetime_utc": "2026-09-16T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112683,8 +106423,7 @@ "canonical_id": "game_mlb_2026_20260916_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-15", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112701,8 +106440,7 @@ "canonical_id": "game_mlb_2026_20260916_chw_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "1:10p", + "game_datetime_utc": "2026-09-16T17:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Chicago White Sox", "home_team_abbrev": "CLE", @@ -112719,8 +106457,7 @@ "canonical_id": "game_mlb_2026_20260916_sf_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "12:15p", + "game_datetime_utc": "2026-09-16T17:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "San Francisco Giants", "home_team_abbrev": "STL", @@ -112737,8 +106474,7 @@ "canonical_id": "game_mlb_2026_20260916_nyy_min", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "12:40p", + "game_datetime_utc": "2026-09-16T17:40:00Z", "home_team": "Minnesota Twins", "away_team": "New York Yankees", "home_team_abbrev": "MIN", @@ -112755,8 +106491,7 @@ "canonical_id": "game_mlb_2026_20260916_det_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "3:07p", + "game_datetime_utc": "2026-09-16T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Detroit Tigers", "home_team_abbrev": "TOR", @@ -112773,8 +106508,7 @@ "canonical_id": "game_mlb_2026_20260916_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -112791,8 +106525,7 @@ "canonical_id": "game_mlb_2026_20260916_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -112809,8 +106542,7 @@ "canonical_id": "game_mlb_2026_20260916_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T22:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -112827,8 +106559,7 @@ "canonical_id": "game_mlb_2026_20260916_phi_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:45p", + "game_datetime_utc": "2026-09-16T22:45:00Z", "home_team": "Washington Nationals", "away_team": "Philadelphia Phillies", "home_team_abbrev": "WSN", @@ -112845,8 +106576,7 @@ "canonical_id": "game_mlb_2026_20260916_bal_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:10p", + "game_datetime_utc": "2026-09-16T23:10:00Z", "home_team": "New York Mets", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYM", @@ -112863,8 +106593,7 @@ "canonical_id": "game_mlb_2026_20260916_atl_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-16T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Atlanta Braves", "home_team_abbrev": "CHC", @@ -112881,8 +106610,7 @@ "canonical_id": "game_mlb_2026_20260917_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:05p", + "game_datetime_utc": "2026-09-17T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -112899,8 +106627,7 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "7:10p", + "game_datetime_utc": "2026-09-17T00:10:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -112917,8 +106644,7 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -112935,8 +106661,7 @@ "canonical_id": "game_nwsl_2026_20260917_bay_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-16", - "time": "7:30p", + "game_datetime_utc": "2026-09-17T01:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "DEN", @@ -112953,8 +106678,7 @@ "canonical_id": "game_mlb_2026_20260917_sea_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:38p", + "game_datetime_utc": "2026-09-17T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Seattle Mariners", "home_team_abbrev": "LAA", @@ -112971,8 +106695,7 @@ "canonical_id": "game_mlb_2026_20260917_mia_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-16", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "Miami Marlins", "home_team_abbrev": "ARI", @@ -112989,8 +106712,7 @@ "canonical_id": "game_nwsl_2026_20260917_sea_ang", "sport": "NWSL", "season": "2026", - "date": "2026-09-16", - "time": "7p", + "game_datetime_utc": "2026-09-17T02:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "ANG", @@ -113007,8 +106729,7 @@ "canonical_id": "game_mlb_2026_20260917_mil_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "12:35p", + "game_datetime_utc": "2026-09-17T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PIT", @@ -113025,8 +106746,7 @@ "canonical_id": "game_mlb_2026_20260917_lad_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "12:40p", + "game_datetime_utc": "2026-09-17T16:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "CIN", @@ -113043,8 +106763,7 @@ "canonical_id": "game_mlb_2026_20260917_oak_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "1:10p", + "game_datetime_utc": "2026-09-17T17:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Oakland Athletics", "home_team_abbrev": "TB", @@ -113061,8 +106780,7 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "1:10p", + "game_datetime_utc": "2026-09-17T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "San Diego Padres", "home_team_abbrev": "COL", @@ -113079,8 +106797,7 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:15p", + "game_datetime_utc": "2026-09-17T23:15:00Z", "home_team": "Houston Astros", "away_team": "Kansas City Royals", "home_team_abbrev": "HOU", @@ -113097,8 +106814,7 @@ "canonical_id": "game_mlb_2026_20260917_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "7:15p", + "game_datetime_utc": "2026-09-17T23:15:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113115,8 +106831,7 @@ "canonical_id": "game_wnba_2026_20260917_con_atl", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7:30p", + "game_datetime_utc": "2026-09-17T23:30:00Z", "home_team": "Atlanta Dream", "away_team": "Connecticut Sun", "home_team_abbrev": "ATL", @@ -113133,8 +106848,7 @@ "canonical_id": "game_mlb_2026_20260917_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:40p", + "game_datetime_utc": "2026-09-17T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113151,8 +106865,7 @@ "canonical_id": "game_wnba_2026_20260918_la_dal", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T00:00:00Z", "home_team": "Dallas Wings", "away_team": "Los Angeles Sparks", "home_team_abbrev": "DAL", @@ -113169,8 +106882,7 @@ "canonical_id": "game_wnba_2026_20260918_was_chi", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T00:00:00Z", "home_team": "Chicago Sky", "away_team": "Washington Mystics", "home_team_abbrev": "CHI", @@ -113187,8 +106899,7 @@ "canonical_id": "game_mlb_2026_20260918_bos_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "7:05p", + "game_datetime_utc": "2026-09-18T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Boston Red Sox", "home_team_abbrev": "TEX", @@ -113205,8 +106916,7 @@ "canonical_id": "game_mlb_2026_20260918_min_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-17", - "time": "6:38p", + "game_datetime_utc": "2026-09-18T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -113223,8 +106933,7 @@ "canonical_id": "game_wnba_2026_20260918_lv_sea", "sport": "WNBA", "season": "2026", - "date": "2026-09-17", - "time": "7p", + "game_datetime_utc": "2026-09-18T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Las Vegas Aces", "home_team_abbrev": "SEA", @@ -113241,8 +106950,7 @@ "canonical_id": "game_mlb_2026_20260918_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -113259,8 +106967,7 @@ "canonical_id": "game_mlb_2026_20260918_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -113277,8 +106984,7 @@ "canonical_id": "game_mlb_2026_20260918_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:05p", + "game_datetime_utc": "2026-09-18T23:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -113295,8 +107001,7 @@ "canonical_id": "game_mlb_2026_20260918_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -113313,8 +107018,7 @@ "canonical_id": "game_mlb_2026_20260918_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -113331,8 +107035,7 @@ "canonical_id": "game_mlb_2026_20260918_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-18T23:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113349,8 +107052,7 @@ "canonical_id": "game_mls_2026_20260918_ny_nyc", "sport": "MLS", "season": "2026", - "date": "2026-09-18", - "time": "7:30p", + "game_datetime_utc": "2026-09-18T23:30:00Z", "home_team": "New York New York City FC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NYC", @@ -113367,8 +107069,7 @@ "canonical_id": "game_wnba_2026_20260918_ny_min", "sport": "WNBA", "season": "2026", - "date": "2026-09-18", - "time": "6:30p", + "game_datetime_utc": "2026-09-18T23:30:00Z", "home_team": "Minnesota Lynx", "away_team": "New York Liberty", "home_team_abbrev": "MIN", @@ -113385,8 +107086,7 @@ "canonical_id": "game_mlb_2026_20260918_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-18T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113403,8 +107103,7 @@ "canonical_id": "game_nwsl_2026_20260919_kcc_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-09-18", - "time": "5p", + "game_datetime_utc": "2026-09-19T00:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "SDW", @@ -113421,8 +107120,7 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:05p", + "game_datetime_utc": "2026-09-19T00:05:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -113439,8 +107137,7 @@ "canonical_id": "game_mlb_2026_20260919_sea_col", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -113457,8 +107154,7 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-19T00:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -113475,8 +107171,7 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_1", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:15p", + "game_datetime_utc": "2026-09-19T00:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -113493,8 +107188,7 @@ "canonical_id": "game_mlb_2026_20260919_min_laa", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:38p", + "game_datetime_utc": "2026-09-19T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -113511,8 +107205,7 @@ "canonical_id": "game_mlb_2026_20260919_mia_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -113529,8 +107222,7 @@ "canonical_id": "game_mlb_2026_20260919_nyy_ari", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T01:40:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -113547,8 +107239,7 @@ "canonical_id": "game_mlb_2026_20260919_sf_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-18", - "time": "7:10p", + "game_datetime_utc": "2026-09-19T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -113565,8 +107256,7 @@ "canonical_id": "game_wnba_2026_20260919_phx_dal", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "12p", + "game_datetime_utc": "2026-09-19T17:00:00Z", "home_team": "Dallas Wings", "away_team": "Phoenix Mercury", "home_team_abbrev": "DAL", @@ -113583,8 +107273,7 @@ "canonical_id": "game_nwsl_2026_20260919_por_orl", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "4p", + "game_datetime_utc": "2026-09-19T20:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "Portland Portland Thorns", "home_team_abbrev": "ORL", @@ -113601,8 +107290,7 @@ "canonical_id": "game_mlb_2026_20260919_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:05p", + "game_datetime_utc": "2026-09-19T20:05:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -113619,8 +107307,7 @@ "canonical_id": "game_mlb_2026_20260919_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:10p", + "game_datetime_utc": "2026-09-19T20:10:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -113637,8 +107324,7 @@ "canonical_id": "game_mlb_2026_20260919_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "4:10p", + "game_datetime_utc": "2026-09-19T20:10:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -113655,8 +107341,7 @@ "canonical_id": "game_mlb_2026_20260919_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T22:10:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -113673,8 +107358,7 @@ "canonical_id": "game_nwsl_2026_20260919_njy_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "6:30p", + "game_datetime_utc": "2026-09-19T22:30:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "NCC", @@ -113691,8 +107375,7 @@ "canonical_id": "game_mlb_2026_20260919_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -113709,8 +107392,7 @@ "canonical_id": "game_mlb_2026_20260919_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:40p", + "game_datetime_utc": "2026-09-19T22:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -113727,8 +107409,7 @@ "canonical_id": "game_wnba_2026_20260919_chi_atl", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "7p", + "game_datetime_utc": "2026-09-19T23:00:00Z", "home_team": "Atlanta Dream", "away_team": "Chicago Sky", "home_team_abbrev": "ATL", @@ -113745,8 +107426,7 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:05p", + "game_datetime_utc": "2026-09-19T23:05:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -113763,8 +107443,7 @@ "canonical_id": "game_mlb_2026_20260919_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -113781,8 +107460,7 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-19T23:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -113799,8 +107477,7 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_2", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:15p", + "game_datetime_utc": "2026-09-19T23:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -113817,8 +107494,7 @@ "canonical_id": "game_mls_2026_20260919_orl_ne", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Orlando Orlando City", "home_team_abbrev": "NE", @@ -113835,8 +107511,7 @@ "canonical_id": "game_mls_2026_20260919_lafc_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "11:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SJ", @@ -113853,8 +107528,7 @@ "canonical_id": "game_mls_2026_20260919_clb_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "MTL", @@ -113871,8 +107545,7 @@ "canonical_id": "game_mls_2026_20260919_clt_dc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-19T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "DC", @@ -113889,8 +107562,7 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "5:10p", + "game_datetime_utc": "2026-09-20T00:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -113907,8 +107579,7 @@ "canonical_id": "game_mlb_2026_20260920_sea_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-20T00:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -113925,8 +107596,7 @@ "canonical_id": "game_mls_2026_20260920_cin_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "HOU", @@ -113943,8 +107613,7 @@ "canonical_id": "game_mls_2026_20260920_phi_skc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "SKC", @@ -113961,8 +107630,7 @@ "canonical_id": "game_mls_2026_20260920_tor_stl", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "STL", @@ -113979,8 +107647,7 @@ "canonical_id": "game_mls_2026_20260920_lag_min", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "MIN", @@ -113997,8 +107664,7 @@ "canonical_id": "game_mls_2026_20260920_aus_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Austin Austin FC", "home_team_abbrev": "DAL", @@ -114015,8 +107681,7 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "5:40p", + "game_datetime_utc": "2026-09-20T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -114033,8 +107698,7 @@ "canonical_id": "game_nwsl_2026_20260920_sea_den", "sport": "NWSL", "season": "2026", - "date": "2026-09-19", - "time": "6:45p", + "game_datetime_utc": "2026-09-20T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "DEN", @@ -114051,8 +107715,7 @@ "canonical_id": "game_wnba_2026_20260920_sea_gsv", "sport": "WNBA", "season": "2026", - "date": "2026-09-19", - "time": "6p", + "game_datetime_utc": "2026-09-20T01:00:00Z", "home_team": "Golden State Valkyries", "away_team": "Seattle Storm", "home_team_abbrev": "GSV", @@ -114069,8 +107732,7 @@ "canonical_id": "game_mlb_2026_20260920_sf_lad_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:10p", + "game_datetime_utc": "2026-09-20T01:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -114087,8 +107749,7 @@ "canonical_id": "game_mls_2026_20260920_van_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "SLC", @@ -114105,8 +107766,7 @@ "canonical_id": "game_mls_2026_20260920_chi_nsh", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "8:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NSH", @@ -114123,8 +107783,7 @@ "canonical_id": "game_mls_2026_20260920_sea_col", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "COL", @@ -114141,8 +107800,7 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_1", "sport": "MLB", "season": "2026", - "date": "2026-09-19", - "time": "6:38p", + "game_datetime_utc": "2026-09-20T01:38:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -114159,8 +107817,7 @@ "canonical_id": "game_mls_2026_20260920_atl_por", "sport": "MLS", "season": "2026", - "date": "2026-09-19", - "time": "7:30p", + "game_datetime_utc": "2026-09-20T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "POR", @@ -114177,8 +107834,7 @@ "canonical_id": "game_wnba_2026_20260920_min_con", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "1p", + "game_datetime_utc": "2026-09-20T17:00:00Z", "home_team": "Connecticut Sun", "away_team": "Minnesota Lynx", "home_team_abbrev": "CON", @@ -114195,8 +107851,7 @@ "canonical_id": "game_mlb_2026_20260920_kc_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:35p", + "game_datetime_utc": "2026-09-20T17:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "Kansas City Royals", "home_team_abbrev": "PIT", @@ -114213,8 +107868,7 @@ "canonical_id": "game_mlb_2026_20260920_bos_tbr", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Tampa Bay Rays", "away_team": "Boston Red Sox", "home_team_abbrev": "TB", @@ -114231,8 +107885,7 @@ "canonical_id": "game_mlb_2026_20260920_oak_cle", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Cleveland Guardians", "away_team": "Oakland Athletics", "home_team_abbrev": "CLE", @@ -114249,8 +107902,7 @@ "canonical_id": "game_mlb_2026_20260920_phi_nym", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "New York Mets", "away_team": "Philadelphia Phillies", "home_team_abbrev": "NYM", @@ -114267,8 +107919,7 @@ "canonical_id": "game_mlb_2026_20260920_chc_cin", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:40p", + "game_datetime_utc": "2026-09-20T17:40:00Z", "home_team": "Cincinnati Reds", "away_team": "Chicago Cubs", "home_team_abbrev": "CIN", @@ -114285,8 +107936,7 @@ "canonical_id": "game_nwsl_2026_20260920_hou_bos", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "2p", + "game_datetime_utc": "2026-09-20T18:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Houston Houston Dash", "home_team_abbrev": "BOS", @@ -114303,8 +107953,7 @@ "canonical_id": "game_mlb_2026_20260920_det_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T18:10:00Z", "home_team": "Chicago White Sox", "away_team": "Detroit Tigers", "home_team_abbrev": "CHW", @@ -114321,8 +107970,7 @@ "canonical_id": "game_mlb_2026_20260920_atl_hou", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T18:10:00Z", "home_team": "Houston Astros", "away_team": "Atlanta Braves", "home_team_abbrev": "HOU", @@ -114339,8 +107987,7 @@ "canonical_id": "game_mlb_2026_20260920_wsn_stl", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:15p", + "game_datetime_utc": "2026-09-20T18:15:00Z", "home_team": "St. Louis Cardinals", "away_team": "Washington Nationals", "home_team_abbrev": "STL", @@ -114357,8 +108004,7 @@ "canonical_id": "game_mlb_2026_20260920_tor_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:35p", + "game_datetime_utc": "2026-09-20T18:35:00Z", "home_team": "Texas Rangers", "away_team": "Toronto Blue Jays", "home_team_abbrev": "TEX", @@ -114375,8 +108021,7 @@ "canonical_id": "game_mlb_2026_20260920_sea_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Seattle Mariners", "home_team_abbrev": "COL", @@ -114393,8 +108038,7 @@ "canonical_id": "game_wnba_2026_20260920_was_ind", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T20:00:00Z", "home_team": "Indiana Fever", "away_team": "Washington Mystics", "home_team_abbrev": "IND", @@ -114411,8 +108055,7 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:07p", + "game_datetime_utc": "2026-09-20T20:07:00Z", "home_team": "Los Angeles Angels", "away_team": "Minnesota Twins", "home_team_abbrev": "LAA", @@ -114429,8 +108072,7 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "Arizona Diamondbacks", "away_team": "New York Yankees", "home_team_abbrev": "ARI", @@ -114447,8 +108089,7 @@ "canonical_id": "game_mlb_2026_20260920_sf_lad_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Francisco Giants", "home_team_abbrev": "LAD", @@ -114465,8 +108106,7 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "1:10p", + "game_datetime_utc": "2026-09-20T20:10:00Z", "home_team": "San Diego Padres", "away_team": "Miami Marlins", "home_team_abbrev": "SD", @@ -114483,8 +108123,7 @@ "canonical_id": "game_nwsl_2026_20260920_wsh_chi", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T21:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Washington Washington Spirit", "home_team_abbrev": "CHI", @@ -114501,8 +108140,7 @@ "canonical_id": "game_mls_2026_20260920_sd_mia", "sport": "MLS", "season": "2026", - "date": "2026-09-20", - "time": "7p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "Miami Inter Miami", "away_team": "San Diego San Diego FC", "home_team_abbrev": "MIA", @@ -114519,8 +108157,7 @@ "canonical_id": "game_nwsl_2026_20260920_rgn_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "4p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "BAY", @@ -114537,8 +108174,7 @@ "canonical_id": "game_nwsl_2026_20260920_ang_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-20", - "time": "5p", + "game_datetime_utc": "2026-09-20T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "UTA", @@ -114555,8 +108191,7 @@ "canonical_id": "game_mlb_2026_20260920_mil_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-20", - "time": "7:20p", + "game_datetime_utc": "2026-09-20T23:20:00Z", "home_team": "Baltimore Orioles", "away_team": "Milwaukee Brewers", "home_team_abbrev": "BAL", @@ -114573,8 +108208,7 @@ "canonical_id": "game_wnba_2026_20260921_sea_lv", "sport": "WNBA", "season": "2026", - "date": "2026-09-20", - "time": "6p", + "game_datetime_utc": "2026-09-21T01:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Seattle Storm", "home_team_abbrev": "LV", @@ -114591,8 +108225,7 @@ "canonical_id": "game_mlb_2026_20260921_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:35p", + "game_datetime_utc": "2026-09-21T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -114609,8 +108242,7 @@ "canonical_id": "game_mlb_2026_20260921_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:40p", + "game_datetime_utc": "2026-09-21T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -114627,8 +108259,7 @@ "canonical_id": "game_wnba_2026_20260922_atl_ny", "sport": "WNBA", "season": "2026", - "date": "2026-09-21", - "time": "8p", + "game_datetime_utc": "2026-09-22T00:00:00Z", "home_team": "New York Liberty", "away_team": "Atlanta Dream", "home_team_abbrev": "NY", @@ -114645,8 +108276,7 @@ "canonical_id": "game_mlb_2026_20260922_min_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-21", - "time": "6:45p", + "game_datetime_utc": "2026-09-22T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -114663,8 +108293,7 @@ "canonical_id": "game_wnba_2026_20260922_dal_phx", "sport": "WNBA", "season": "2026", - "date": "2026-09-21", - "time": "10p", + "game_datetime_utc": "2026-09-22T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Dallas Wings", "home_team_abbrev": "PHX", @@ -114681,8 +108310,7 @@ "canonical_id": "game_mlb_2026_20260922_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:35p", + "game_datetime_utc": "2026-09-22T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -114699,8 +108327,7 @@ "canonical_id": "game_mlb_2026_20260922_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -114717,8 +108344,7 @@ "canonical_id": "game_mlb_2026_20260922_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -114735,8 +108361,7 @@ "canonical_id": "game_mlb_2026_20260922_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -114753,8 +108378,7 @@ "canonical_id": "game_mlb_2026_20260922_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:45p", + "game_datetime_utc": "2026-09-22T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -114771,8 +108395,7 @@ "canonical_id": "game_mlb_2026_20260922_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:05p", + "game_datetime_utc": "2026-09-22T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -114789,8 +108412,7 @@ "canonical_id": "game_mlb_2026_20260922_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:15p", + "game_datetime_utc": "2026-09-22T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -114807,8 +108429,7 @@ "canonical_id": "game_wnba_2026_20260922_con_was", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "7:30p", + "game_datetime_utc": "2026-09-22T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Connecticut Sun", "home_team_abbrev": "WAS", @@ -114825,8 +108446,7 @@ "canonical_id": "game_mlb_2026_20260922_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -114843,8 +108463,7 @@ "canonical_id": "game_mlb_2026_20260922_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-22T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -114861,8 +108480,7 @@ "canonical_id": "game_wnba_2026_20260923_min_ind", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "8p", + "game_datetime_utc": "2026-09-23T00:00:00Z", "home_team": "Indiana Fever", "away_team": "Minnesota Lynx", "home_team_abbrev": "IND", @@ -114879,8 +108497,7 @@ "canonical_id": "game_mlb_2026_20260923_nym_tex", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:05p", + "game_datetime_utc": "2026-09-23T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -114897,8 +108514,7 @@ "canonical_id": "game_mlb_2026_20260923_ari_col", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -114915,8 +108531,7 @@ "canonical_id": "game_mlb_2026_20260923_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -114933,8 +108548,7 @@ "canonical_id": "game_mlb_2026_20260923_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -114951,8 +108565,7 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "6:45p", + "game_datetime_utc": "2026-09-23T01:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -114969,8 +108582,7 @@ "canonical_id": "game_wnba_2026_20260923_la_lv", "sport": "WNBA", "season": "2026", - "date": "2026-09-22", - "time": "7p", + "game_datetime_utc": "2026-09-23T02:00:00Z", "home_team": "Las Vegas Aces", "away_team": "Los Angeles Sparks", "home_team_abbrev": "LV", @@ -114987,8 +108599,7 @@ "canonical_id": "game_mlb_2026_20260923_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-22", - "time": "7:10p", + "game_datetime_utc": "2026-09-23T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115005,8 +108616,7 @@ "canonical_id": "game_mlb_2026_20260923_wsn_det", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "1:10p", + "game_datetime_utc": "2026-09-23T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Washington Nationals", "home_team_abbrev": "DET", @@ -115023,8 +108633,7 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "12:45p", + "game_datetime_utc": "2026-09-23T19:45:00Z", "home_team": "San Francisco Giants", "away_team": "Minnesota Twins", "home_team_abbrev": "SF", @@ -115041,8 +108650,7 @@ "canonical_id": "game_mlb_2026_20260923_tor_bal", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:35p", + "game_datetime_utc": "2026-09-23T22:35:00Z", "home_team": "Baltimore Orioles", "away_team": "Toronto Blue Jays", "home_team_abbrev": "BAL", @@ -115059,8 +108667,7 @@ "canonical_id": "game_mlb_2026_20260923_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T22:40:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -115077,8 +108684,7 @@ "canonical_id": "game_mlb_2026_20260923_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -115095,8 +108701,7 @@ "canonical_id": "game_mlb_2026_20260923_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:05p", + "game_datetime_utc": "2026-09-23T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -115113,8 +108718,7 @@ "canonical_id": "game_mlb_2026_20260923_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-23T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -115131,8 +108735,7 @@ "canonical_id": "game_mlb_2026_20260923_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:15p", + "game_datetime_utc": "2026-09-23T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -115149,8 +108752,7 @@ "canonical_id": "game_mlb_2026_20260923_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T23:40:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -115167,8 +108769,7 @@ "canonical_id": "game_mlb_2026_20260923_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-23T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -115185,8 +108786,7 @@ "canonical_id": "game_wnba_2026_20260924_atl_ny", "sport": "WNBA", "season": "2026", - "date": "2026-09-23", - "time": "8p", + "game_datetime_utc": "2026-09-24T00:00:00Z", "home_team": "New York Liberty", "away_team": "Atlanta Dream", "home_team_abbrev": "NY", @@ -115203,8 +108803,7 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_1", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:05p", + "game_datetime_utc": "2026-09-24T00:05:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -115221,8 +108820,7 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_1", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-24T00:40:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -115239,8 +108837,7 @@ "canonical_id": "game_mlb_2026_20260924_laa_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "6:40p", + "game_datetime_utc": "2026-09-24T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Los Angeles Angels", "home_team_abbrev": "OAK", @@ -115257,8 +108854,7 @@ "canonical_id": "game_wnba_2026_20260924_dal_sea", "sport": "WNBA", "season": "2026", - "date": "2026-09-23", - "time": "7p", + "game_datetime_utc": "2026-09-24T02:00:00Z", "home_team": "Seattle Storm", "away_team": "Dallas Wings", "home_team_abbrev": "SEA", @@ -115275,8 +108871,7 @@ "canonical_id": "game_mlb_2026_20260924_hou_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-24T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Houston Astros", "home_team_abbrev": "SEA", @@ -115293,8 +108888,7 @@ "canonical_id": "game_mlb_2026_20260924_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-23", - "time": "7:10p", + "game_datetime_utc": "2026-09-24T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115311,8 +108905,7 @@ "canonical_id": "game_mlb_2026_20260924_stl_pit", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "12:35p", + "game_datetime_utc": "2026-09-24T16:35:00Z", "home_team": "Pittsburgh Pirates", "away_team": "St. Louis Cardinals", "home_team_abbrev": "PIT", @@ -115329,8 +108922,7 @@ "canonical_id": "game_mlb_2026_20260924_chw_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:10p", + "game_datetime_utc": "2026-09-24T18:10:00Z", "home_team": "Kansas City Royals", "away_team": "Chicago White Sox", "home_team_abbrev": "KC", @@ -115347,8 +108939,7 @@ "canonical_id": "game_mlb_2026_20260924_mia_chc", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:20p", + "game_datetime_utc": "2026-09-24T18:20:00Z", "home_team": "Chicago Cubs", "away_team": "Miami Marlins", "home_team_abbrev": "CHC", @@ -115365,8 +108956,7 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_2", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:35p", + "game_datetime_utc": "2026-09-24T18:35:00Z", "home_team": "Texas Rangers", "away_team": "New York Mets", "home_team_abbrev": "TEX", @@ -115383,8 +108973,7 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_2", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "1:10p", + "game_datetime_utc": "2026-09-24T19:10:00Z", "home_team": "Colorado Rockies", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "COL", @@ -115401,8 +108990,7 @@ "canonical_id": "game_mlb_2026_20260924_mil_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:05p", + "game_datetime_utc": "2026-09-24T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Milwaukee Brewers", "home_team_abbrev": "PHI", @@ -115419,8 +109007,7 @@ "canonical_id": "game_mlb_2026_20260924_cle_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:45p", + "game_datetime_utc": "2026-09-24T22:45:00Z", "home_team": "Boston Red Sox", "away_team": "Cleveland Guardians", "home_team_abbrev": "BOS", @@ -115437,8 +109024,7 @@ "canonical_id": "game_mlb_2026_20260924_tbr_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:05p", + "game_datetime_utc": "2026-09-24T23:05:00Z", "home_team": "New York Yankees", "away_team": "Tampa Bay Rays", "home_team_abbrev": "NYY", @@ -115455,8 +109041,7 @@ "canonical_id": "game_mlb_2026_20260924_cin_atl", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:15p", + "game_datetime_utc": "2026-09-24T23:15:00Z", "home_team": "Atlanta Braves", "away_team": "Cincinnati Reds", "home_team_abbrev": "ATL", @@ -115473,8 +109058,7 @@ "canonical_id": "game_wnba_2026_20260924_chi_was", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7:30p", + "game_datetime_utc": "2026-09-24T23:30:00Z", "home_team": "Washington Mystics", "away_team": "Chicago Sky", "home_team_abbrev": "WAS", @@ -115491,8 +109075,7 @@ "canonical_id": "game_wnba_2026_20260925_ind_min", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7p", + "game_datetime_utc": "2026-09-25T00:00:00Z", "home_team": "Minnesota Lynx", "away_team": "Indiana Fever", "home_team_abbrev": "MIN", @@ -115509,8 +109092,7 @@ "canonical_id": "game_mlb_2026_20260925_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -115527,8 +109109,7 @@ "canonical_id": "game_mlb_2026_20260925_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -115545,8 +109126,7 @@ "canonical_id": "game_wnba_2026_20260925_lv_phx", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "10p", + "game_datetime_utc": "2026-09-25T02:00:00Z", "home_team": "Phoenix Mercury", "away_team": "Las Vegas Aces", "home_team_abbrev": "PHX", @@ -115563,8 +109143,7 @@ "canonical_id": "game_wnba_2026_20260925_gsv_la", "sport": "WNBA", "season": "2026", - "date": "2026-09-24", - "time": "7p", + "game_datetime_utc": "2026-09-25T02:00:00Z", "home_team": "Los Angeles Sparks", "away_team": "Golden State Valkyries", "home_team_abbrev": "LA", @@ -115581,8 +109160,7 @@ "canonical_id": "game_mlb_2026_20260925_sd_lad", "sport": "MLB", "season": "2026", - "date": "2026-09-24", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T02:10:00Z", "home_team": "Los Angeles Dodgers", "away_team": "San Diego Padres", "home_team_abbrev": "LAD", @@ -115599,8 +109177,7 @@ "canonical_id": "game_nwsl_2026_20260925_sdw_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "6:30p", + "game_datetime_utc": "2026-09-25T22:30:00Z", "home_team": "Louisville Racing Louisville", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "RGN", @@ -115617,8 +109194,7 @@ "canonical_id": "game_mlb_2026_20260925_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T22:40:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -115635,8 +109211,7 @@ "canonical_id": "game_mlb_2026_20260925_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T22:40:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -115653,8 +109228,7 @@ "canonical_id": "game_mlb_2026_20260925_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:45p", + "game_datetime_utc": "2026-09-25T22:45:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -115671,8 +109245,7 @@ "canonical_id": "game_mlb_2026_20260925_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:05p", + "game_datetime_utc": "2026-09-25T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -115689,8 +109262,7 @@ "canonical_id": "game_mlb_2026_20260925_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:07p", + "game_datetime_utc": "2026-09-25T23:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -115707,8 +109279,7 @@ "canonical_id": "game_mlb_2026_20260925_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T23:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -115725,8 +109296,7 @@ "canonical_id": "game_mlb_2026_20260925_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-25T23:10:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -115743,8 +109313,7 @@ "canonical_id": "game_mlb_2026_20260925_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -115761,8 +109330,7 @@ "canonical_id": "game_mlb_2026_20260925_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -115779,8 +109347,7 @@ "canonical_id": "game_mlb_2026_20260925_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-25T23:40:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -115797,8 +109364,7 @@ "canonical_id": "game_nwsl_2026_20260926_chi_njy", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "8p", + "game_datetime_utc": "2026-09-26T00:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "NJY", @@ -115815,8 +109381,7 @@ "canonical_id": "game_mlb_2026_20260926_tex_min_1", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-26T00:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -115833,8 +109398,7 @@ "canonical_id": "game_nwsl_2026_20260926_bos_sea", "sport": "NWSL", "season": "2026", - "date": "2026-09-25", - "time": "5:30p", + "game_datetime_utc": "2026-09-26T00:30:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "SEA", @@ -115851,8 +109415,7 @@ "canonical_id": "game_mlb_2026_20260926_ari_sd", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-26T01:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -115869,8 +109432,7 @@ "canonical_id": "game_mlb_2026_20260926_hou_oak", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "6:40p", + "game_datetime_utc": "2026-09-26T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -115887,8 +109449,7 @@ "canonical_id": "game_mlb_2026_20260926_laa_sea", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:10p", + "game_datetime_utc": "2026-09-26T02:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -115905,8 +109466,7 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_1", "sport": "MLB", "season": "2026", - "date": "2026-09-25", - "time": "7:15p", + "game_datetime_utc": "2026-09-26T02:15:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -115923,8 +109483,7 @@ "canonical_id": "game_nwsl_2026_20260926_den_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "11:30a", + "game_datetime_utc": "2026-09-26T16:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "KCC", @@ -115941,8 +109500,7 @@ "canonical_id": "game_mlb_2026_20260926_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "1:10p", + "game_datetime_utc": "2026-09-26T17:10:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -115959,8 +109517,7 @@ "canonical_id": "game_mlb_2026_20260926_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "3:07p", + "game_datetime_utc": "2026-09-26T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -115977,8 +109534,7 @@ "canonical_id": "game_mlb_2026_20260926_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "4:05p", + "game_datetime_utc": "2026-09-26T20:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -115995,8 +109551,7 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_2", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "1:05p", + "game_datetime_utc": "2026-09-26T20:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -116013,8 +109568,7 @@ "canonical_id": "game_mlb_2026_20260926_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "4:10p", + "game_datetime_utc": "2026-09-26T20:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -116031,8 +109585,7 @@ "canonical_id": "game_mlb_2026_20260926_tex_min_2", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "3:10p", + "game_datetime_utc": "2026-09-26T20:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -116049,8 +109602,7 @@ "canonical_id": "game_mlb_2026_20260926_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:05p", + "game_datetime_utc": "2026-09-26T22:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -116067,8 +109619,7 @@ "canonical_id": "game_nwsl_2026_20260926_ang_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "6:30p", + "game_datetime_utc": "2026-09-26T22:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "WSH", @@ -116085,8 +109636,7 @@ "canonical_id": "game_mlb_2026_20260926_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "7:05p", + "game_datetime_utc": "2026-09-26T23:05:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -116103,8 +109653,7 @@ "canonical_id": "game_mlb_2026_20260926_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -116121,8 +109670,7 @@ "canonical_id": "game_mlb_2026_20260926_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -116139,8 +109687,7 @@ "canonical_id": "game_mlb_2026_20260926_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:10p", + "game_datetime_utc": "2026-09-26T23:10:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -116157,8 +109704,7 @@ "canonical_id": "game_mlb_2026_20260926_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "7:15p", + "game_datetime_utc": "2026-09-26T23:15:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -116175,8 +109721,7 @@ "canonical_id": "game_mls_2026_20260926_stl_ny", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "RB", @@ -116193,8 +109738,7 @@ "canonical_id": "game_mls_2026_20260926_orl_phi", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Orlando Orlando City", "home_team_abbrev": "PHI", @@ -116211,8 +109755,7 @@ "canonical_id": "game_mls_2026_20260926_nyc_atl", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "New York New York City FC", "home_team_abbrev": "ATL", @@ -116229,8 +109772,7 @@ "canonical_id": "game_mls_2026_20260926_cin_mtl", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MTL", @@ -116247,8 +109789,7 @@ "canonical_id": "game_mls_2026_20260926_chi_clt", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-26T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "CLT", @@ -116265,8 +109806,7 @@ "canonical_id": "game_mls_2026_20260927_skc_hou", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "HOU", @@ -116283,8 +109823,7 @@ "canonical_id": "game_mls_2026_20260927_lafc_dal", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "DAL", @@ -116301,8 +109840,7 @@ "canonical_id": "game_mls_2026_20260927_sd_aus", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "AUS", @@ -116319,8 +109857,7 @@ "canonical_id": "game_mls_2026_20260927_tor_nsh", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Toronto Toronto FC", "home_team_abbrev": "NSH", @@ -116337,8 +109874,7 @@ "canonical_id": "game_mls_2026_20260927_min_sea", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "5:30p", + "game_datetime_utc": "2026-09-27T00:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "SEA", @@ -116355,8 +109891,7 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "5:40p", + "game_datetime_utc": "2026-09-27T00:40:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -116373,8 +109908,7 @@ "canonical_id": "game_nwsl_2026_20260927_hou_por", "sport": "NWSL", "season": "2026", - "date": "2026-09-26", - "time": "5:45p", + "game_datetime_utc": "2026-09-27T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Houston Houston Dash", "home_team_abbrev": "POR", @@ -116391,8 +109925,7 @@ "canonical_id": "game_mls_2026_20260927_ne_slc", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "New England New England Revolution", "home_team_abbrev": "SLC", @@ -116409,8 +109942,7 @@ "canonical_id": "game_mlb_2026_20260927_hou_oak_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:40p", + "game_datetime_utc": "2026-09-27T01:40:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -116427,8 +109959,7 @@ "canonical_id": "game_mlb_2026_20260927_laa_sea_1", "sport": "MLB", "season": "2026", - "date": "2026-09-26", - "time": "6:40p", + "game_datetime_utc": "2026-09-27T01:40:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -116445,8 +109976,7 @@ "canonical_id": "game_mls_2026_20260927_col_lag", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "LAG", @@ -116463,8 +109993,7 @@ "canonical_id": "game_mls_2026_20260927_por_sj", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SJ", @@ -116481,8 +110010,7 @@ "canonical_id": "game_mls_2026_20260927_dc_van", "sport": "MLS", "season": "2026", - "date": "2026-09-26", - "time": "7:30p", + "game_datetime_utc": "2026-09-27T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Washington D.C. United", "home_team_abbrev": "VAN", @@ -116499,8 +110027,7 @@ "canonical_id": "game_mlb_2026_20260927_tbr_phi", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Philadelphia Phillies", "away_team": "Tampa Bay Rays", "home_team_abbrev": "PHI", @@ -116517,8 +110044,7 @@ "canonical_id": "game_mlb_2026_20260927_lad_sf", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "San Francisco Giants", "away_team": "Los Angeles Dodgers", "home_team_abbrev": "SF", @@ -116535,8 +110061,7 @@ "canonical_id": "game_mlb_2026_20260927_nym_wsn", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Washington Nationals", "away_team": "New York Mets", "home_team_abbrev": "WSN", @@ -116553,8 +110078,7 @@ "canonical_id": "game_mlb_2026_20260927_chc_bos", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Boston Red Sox", "away_team": "Chicago Cubs", "home_team_abbrev": "BOS", @@ -116571,8 +110095,7 @@ "canonical_id": "game_mlb_2026_20260927_hou_oak_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:05p", + "game_datetime_utc": "2026-09-27T19:05:00Z", "home_team": "Oakland Athletics", "away_team": "Houston Astros", "home_team_abbrev": "OAK", @@ -116589,8 +110112,7 @@ "canonical_id": "game_mlb_2026_20260927_cin_tor", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:07p", + "game_datetime_utc": "2026-09-27T19:07:00Z", "home_team": "Toronto Blue Jays", "away_team": "Cincinnati Reds", "home_team_abbrev": "TOR", @@ -116607,8 +110129,7 @@ "canonical_id": "game_mlb_2026_20260927_laa_sea_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Seattle Mariners", "away_team": "Los Angeles Angels", "home_team_abbrev": "SEA", @@ -116625,8 +110146,7 @@ "canonical_id": "game_mlb_2026_20260927_tex_min", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Minnesota Twins", "away_team": "Texas Rangers", "home_team_abbrev": "MIN", @@ -116643,8 +110163,7 @@ "canonical_id": "game_mlb_2026_20260927_pit_det", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Detroit Tigers", "away_team": "Pittsburgh Pirates", "home_team_abbrev": "DET", @@ -116661,8 +110180,7 @@ "canonical_id": "game_mlb_2026_20260927_cle_kc", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Kansas City Royals", "away_team": "Cleveland Guardians", "home_team_abbrev": "KC", @@ -116679,8 +110197,7 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_2", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "12:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "San Diego Padres", "away_team": "Arizona Diamondbacks", "home_team_abbrev": "SD", @@ -116697,8 +110214,7 @@ "canonical_id": "game_mlb_2026_20260927_col_chw", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Chicago White Sox", "away_team": "Colorado Rockies", "home_team_abbrev": "CHW", @@ -116715,8 +110231,7 @@ "canonical_id": "game_mlb_2026_20260927_atl_mia", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Miami Marlins", "away_team": "Atlanta Braves", "home_team_abbrev": "MIA", @@ -116733,8 +110248,7 @@ "canonical_id": "game_mlb_2026_20260927_stl_mil", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "2:10p", + "game_datetime_utc": "2026-09-27T19:10:00Z", "home_team": "Milwaukee Brewers", "away_team": "St. Louis Cardinals", "home_team_abbrev": "MIL", @@ -116751,8 +110265,7 @@ "canonical_id": "game_mlb_2026_20260927_bal_nyy", "sport": "MLB", "season": "2026", - "date": "2026-09-27", - "time": "3:20p", + "game_datetime_utc": "2026-09-27T19:20:00Z", "home_team": "New York Yankees", "away_team": "Baltimore Orioles", "home_team_abbrev": "NYY", @@ -116769,8 +110282,7 @@ "canonical_id": "game_nwsl_2026_20260927_orl_bay", "sport": "NWSL", "season": "2026", - "date": "2026-09-27", - "time": "2p", + "game_datetime_utc": "2026-09-27T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "BAY", @@ -116787,8 +110299,7 @@ "canonical_id": "game_mls_2026_20260927_mia_clb", "sport": "MLS", "season": "2026", - "date": "2026-09-27", - "time": "7p", + "game_datetime_utc": "2026-09-27T23:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Miami Inter Miami", "home_team_abbrev": "CLB", @@ -116805,8 +110316,7 @@ "canonical_id": "game_nwsl_2026_20260927_ncc_uta", "sport": "NWSL", "season": "2026", - "date": "2026-09-27", - "time": "5p", + "game_datetime_utc": "2026-09-27T23:00:00Z", "home_team": "Utah Utah Royals", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "UTA", @@ -116823,8 +110333,7 @@ "canonical_id": "game_nwsl_2026_20261003_sdw_orl", "sport": "NWSL", "season": "2026", - "date": "2026-10-02", - "time": "8p", + "game_datetime_utc": "2026-10-03T00:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "ORL", @@ -116841,8 +110350,7 @@ "canonical_id": "game_nwsl_2026_20261003_ncc_sea", "sport": "NWSL", "season": "2026", - "date": "2026-10-02", - "time": "7p", + "game_datetime_utc": "2026-10-03T02:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "SEA", @@ -116859,8 +110367,7 @@ "canonical_id": "game_nwsl_2026_20261003_uta_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "4p", + "game_datetime_utc": "2026-10-03T20:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Utah Utah Royals", "home_team_abbrev": "RGN", @@ -116877,8 +110384,7 @@ "canonical_id": "game_nwsl_2026_20261003_bay_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "5:30p", + "game_datetime_utc": "2026-10-03T22:30:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "San Francisco Bay FC", "home_team_abbrev": "KCC", @@ -116895,8 +110401,7 @@ "canonical_id": "game_nwsl_2026_20261004_bos_por", "sport": "NWSL", "season": "2026", - "date": "2026-10-03", - "time": "5:45p", + "game_datetime_utc": "2026-10-04T00:45:00Z", "home_team": "Portland Portland Thorns", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "POR", @@ -116913,8 +110418,7 @@ "canonical_id": "game_nwsl_2026_20261004_ang_njy", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "12p", + "game_datetime_utc": "2026-10-04T16:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "NJY", @@ -116931,8 +110435,7 @@ "canonical_id": "game_nwsl_2026_20261004_den_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "3p", + "game_datetime_utc": "2026-10-04T20:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "CHI", @@ -116949,8 +110452,7 @@ "canonical_id": "game_nwsl_2026_20261004_wsh_hou", "sport": "NWSL", "season": "2026", - "date": "2026-10-04", - "time": "6p", + "game_datetime_utc": "2026-10-04T23:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Washington Washington Spirit", "home_team_abbrev": "HOU", @@ -116967,8 +110469,7 @@ "canonical_id": "game_mls_2026_20261010_mtl_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "1p", + "game_datetime_utc": "2026-10-10T17:00:00Z", "home_team": "Toronto Toronto FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "TOR", @@ -116985,8 +110486,7 @@ "canonical_id": "game_mls_2026_20261010_nyc_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "1:30p", + "game_datetime_utc": "2026-10-10T18:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "New York New York City FC", "home_team_abbrev": "CHI", @@ -117003,8 +110503,7 @@ "canonical_id": "game_mls_2026_20261010_sea_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "NE", @@ -117021,8 +110520,7 @@ "canonical_id": "game_mls_2026_20261010_cin_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "ATL", @@ -117039,8 +110537,7 @@ "canonical_id": "game_mls_2026_20261010_dal_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Dallas FC Dallas", "home_team_abbrev": "CLT", @@ -117057,8 +110554,7 @@ "canonical_id": "game_mls_2026_20261010_dc_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Washington D.C. United", "home_team_abbrev": "MIA", @@ -117075,8 +110571,7 @@ "canonical_id": "game_mls_2026_20261010_sd_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "San Diego San Diego FC", "home_team_abbrev": "RB", @@ -117093,8 +110588,7 @@ "canonical_id": "game_mls_2026_20261010_clb_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "ORL", @@ -117111,8 +110605,7 @@ "canonical_id": "game_mls_2026_20261010_slc_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-10T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "PHI", @@ -117129,8 +110622,7 @@ "canonical_id": "game_mls_2026_20261011_nsh_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Nashville Nashville SC", "home_team_abbrev": "AUS", @@ -117147,8 +110639,7 @@ "canonical_id": "game_mls_2026_20261011_hou_min", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "MIN", @@ -117165,8 +110656,7 @@ "canonical_id": "game_mls_2026_20261011_por_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Portland Portland Timbers", "home_team_abbrev": "SKC", @@ -117183,8 +110673,7 @@ "canonical_id": "game_mls_2026_20261011_sj_col", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "COL", @@ -117201,8 +110690,7 @@ "canonical_id": "game_mls_2026_20261011_van_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-10", - "time": "7:30p", + "game_datetime_utc": "2026-10-11T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "LAFC", @@ -117219,8 +110707,7 @@ "canonical_id": "game_mls_2026_20261011_lag_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-11", - "time": "6p", + "game_datetime_utc": "2026-10-11T23:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "STL", @@ -117237,8 +110724,7 @@ "canonical_id": "game_mls_2026_20261014_orl_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "TOR", @@ -117255,8 +110741,7 @@ "canonical_id": "game_mls_2026_20261014_nyc_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "New York New York City FC", "home_team_abbrev": "MIA", @@ -117273,8 +110758,7 @@ "canonical_id": "game_mls_2026_20261014_ne_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "New England New England Revolution", "home_team_abbrev": "CIN", @@ -117291,8 +110775,7 @@ "canonical_id": "game_mls_2026_20261014_ny_dc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "New York New York Red Bulls", "home_team_abbrev": "DC", @@ -117309,8 +110792,7 @@ "canonical_id": "game_mls_2026_20261014_clt_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "CLB", @@ -117327,8 +110809,7 @@ "canonical_id": "game_mls_2026_20261014_atl_mtl", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-14T23:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "MTL", @@ -117345,8 +110826,7 @@ "canonical_id": "game_mls_2026_20261015_skc_nsh", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "NSH", @@ -117363,8 +110843,7 @@ "canonical_id": "game_mls_2026_20261015_van_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "STL", @@ -117381,8 +110860,7 @@ "canonical_id": "game_mls_2026_20261015_phi_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CHI", @@ -117399,8 +110877,7 @@ "canonical_id": "game_mls_2026_20261015_sea_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "DAL", @@ -117417,8 +110894,7 @@ "canonical_id": "game_mls_2026_20261015_min_col", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "COL", @@ -117435,8 +110911,7 @@ "canonical_id": "game_mls_2026_20261015_sj_slc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T01:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "SLC", @@ -117453,8 +110928,7 @@ "canonical_id": "game_mls_2026_20261015_hou_sd", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SD", @@ -117471,8 +110945,7 @@ "canonical_id": "game_mls_2026_20261015_aus_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Austin Austin FC", "home_team_abbrev": "LAFC", @@ -117489,8 +110962,7 @@ "canonical_id": "game_mls_2026_20261015_por_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-14", - "time": "7:30p", + "game_datetime_utc": "2026-10-15T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Portland Portland Timbers", "home_team_abbrev": "LAG", @@ -117507,8 +110979,7 @@ "canonical_id": "game_nwsl_2026_20261017_rgn_bos", "sport": "NWSL", "season": "2026", - "date": "2026-10-16", - "time": "8p", + "game_datetime_utc": "2026-10-17T00:00:00Z", "home_team": "Boston Boston Legacy FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "BOS", @@ -117525,8 +110996,7 @@ "canonical_id": "game_nwsl_2026_20261017_njy_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "12:30p", + "game_datetime_utc": "2026-10-17T16:30:00Z", "home_team": "Washington Washington Spirit", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "WSH", @@ -117543,8 +111013,7 @@ "canonical_id": "game_mls_2026_20261017_clt_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "2:30p", + "game_datetime_utc": "2026-10-17T18:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "PHI", @@ -117561,8 +111030,7 @@ "canonical_id": "game_mls_2026_20261017_stl_min", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "3:30p", + "game_datetime_utc": "2026-10-17T20:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "MIN", @@ -117579,8 +111047,7 @@ "canonical_id": "game_nwsl_2026_20261017_kcc_uta", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "4:30p", + "game_datetime_utc": "2026-10-17T22:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "UTA", @@ -117597,8 +111064,7 @@ "canonical_id": "game_nwsl_2026_20261017_sdw_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "7p", + "game_datetime_utc": "2026-10-17T23:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "NCC", @@ -117615,8 +111081,7 @@ "canonical_id": "game_mls_2026_20261017_dc_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "Washington D.C. United", "home_team_abbrev": "ORL", @@ -117633,8 +111098,7 @@ "canonical_id": "game_mls_2026_20261017_mia_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Miami Inter Miami", "home_team_abbrev": "ATL", @@ -117651,8 +111115,7 @@ "canonical_id": "game_mls_2026_20261017_tor_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Toronto Toronto FC", "home_team_abbrev": "RB", @@ -117669,8 +111132,7 @@ "canonical_id": "game_mls_2026_20261017_chi_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-17T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "NE", @@ -117687,8 +111149,7 @@ "canonical_id": "game_mls_2026_20261018_slc_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SKC", @@ -117705,8 +111166,7 @@ "canonical_id": "game_mls_2026_20261018_dal_hou", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Dallas FC Dallas", "home_team_abbrev": "HOU", @@ -117723,8 +111183,7 @@ "canonical_id": "game_mls_2026_20261018_van_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "AUS", @@ -117741,8 +111200,7 @@ "canonical_id": "game_nwsl_2026_20261018_ang_den", "sport": "NWSL", "season": "2026", - "date": "2026-10-17", - "time": "6:45p", + "game_datetime_utc": "2026-10-18T00:45:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Los Angeles Angel City FC", "home_team_abbrev": "DEN", @@ -117759,8 +111217,7 @@ "canonical_id": "game_mls_2026_20261018_mtl_sea", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Montreal CF Montreal", "home_team_abbrev": "SEA", @@ -117777,8 +111234,7 @@ "canonical_id": "game_mls_2026_20261018_col_por", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "POR", @@ -117795,8 +111251,7 @@ "canonical_id": "game_mls_2026_20261018_nsh_sj", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Nashville Nashville SC", "home_team_abbrev": "SJ", @@ -117813,8 +111268,7 @@ "canonical_id": "game_mls_2026_20261018_sd_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-17", - "time": "7:30p", + "game_datetime_utc": "2026-10-18T02:30:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "San Diego San Diego FC", "home_team_abbrev": "LAG", @@ -117831,8 +111285,7 @@ "canonical_id": "game_nwsl_2026_20261018_orl_hou", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "12p", + "game_datetime_utc": "2026-10-18T17:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "HOU", @@ -117849,8 +111302,7 @@ "canonical_id": "game_nwsl_2026_20261018_por_bay", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "2p", + "game_datetime_utc": "2026-10-18T21:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "Portland Portland Thorns", "home_team_abbrev": "BAY", @@ -117867,8 +111319,7 @@ "canonical_id": "game_mls_2026_20261018_clb_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-18", - "time": "7p", + "game_datetime_utc": "2026-10-18T23:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CIN", @@ -117885,8 +111336,7 @@ "canonical_id": "game_nwsl_2026_20261018_sea_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-18", - "time": "6p", + "game_datetime_utc": "2026-10-18T23:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "CHI", @@ -117903,8 +111353,7 @@ "canonical_id": "game_nwsl_2026_20261024_hou_chi", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7p", + "game_datetime_utc": "2026-10-24T00:00:00Z", "home_team": "Chicago Chicago Red Stars", "away_team": "Houston Houston Dash", "home_team_abbrev": "CHI", @@ -117921,8 +111370,7 @@ "canonical_id": "game_nwsl_2026_20261024_sea_uta", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T01:30:00Z", "home_team": "Utah Utah Royals", "away_team": "Seattle Seattle Reign", "home_team_abbrev": "UTA", @@ -117939,8 +111387,7 @@ "canonical_id": "game_nwsl_2026_20261024_ncc_por", "sport": "NWSL", "season": "2026", - "date": "2026-10-23", - "time": "7p", + "game_datetime_utc": "2026-10-24T02:00:00Z", "home_team": "Portland Portland Thorns", "away_team": "North Carolina North Carolina Courage", "home_team_abbrev": "POR", @@ -117957,8 +111404,7 @@ "canonical_id": "game_mls_2026_20261024_nsh_mtl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "1:30p", + "game_datetime_utc": "2026-10-24T17:30:00Z", "home_team": "Montreal CF Montreal", "away_team": "Nashville Nashville SC", "home_team_abbrev": "MTL", @@ -117975,8 +111421,7 @@ "canonical_id": "game_mls_2026_20261024_tor_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "2:30p", + "game_datetime_utc": "2026-10-24T18:30:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Toronto Toronto FC", "home_team_abbrev": "CLB", @@ -117993,8 +111438,7 @@ "canonical_id": "game_mls_2026_20261024_mia_ny", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "4:30p", + "game_datetime_utc": "2026-10-24T20:30:00Z", "home_team": "New York New York Red Bulls", "away_team": "Miami Inter Miami", "home_team_abbrev": "RB", @@ -118011,8 +111455,7 @@ "canonical_id": "game_nwsl_2026_20261024_rgn_den", "sport": "NWSL", "season": "2026", - "date": "2026-10-24", - "time": "4:30p", + "game_datetime_utc": "2026-10-24T22:30:00Z", "home_team": "Denver Denver Summit FC", "away_team": "Louisville Racing Louisville", "home_team_abbrev": "DEN", @@ -118029,8 +111472,7 @@ "canonical_id": "game_mls_2026_20261024_nyc_orl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Orlando Orlando City", "away_team": "New York New York City FC", "home_team_abbrev": "ORL", @@ -118047,8 +111489,7 @@ "canonical_id": "game_mls_2026_20261024_cin_dc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Washington D.C. United", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "DC", @@ -118065,8 +111506,7 @@ "canonical_id": "game_mls_2026_20261024_ne_phi", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "New England New England Revolution", "home_team_abbrev": "PHI", @@ -118083,8 +111523,7 @@ "canonical_id": "game_mls_2026_20261024_chi_atl", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-24T23:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "ATL", @@ -118101,8 +111540,7 @@ "canonical_id": "game_mls_2026_20261025_stl_slc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "6:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "SLC", @@ -118119,8 +111557,7 @@ "canonical_id": "game_mls_2026_20261025_sj_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "DAL", @@ -118137,8 +111574,7 @@ "canonical_id": "game_mls_2026_20261025_aus_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Austin Austin FC", "home_team_abbrev": "SKC", @@ -118155,8 +111591,7 @@ "canonical_id": "game_mls_2026_20261025_van_col", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "6:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "COL", @@ -118173,8 +111608,7 @@ "canonical_id": "game_mls_2026_20261025_min_hou", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T00:30:00Z", "home_team": "Houston Houston Dynamo", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "HOU", @@ -118191,8 +111625,7 @@ "canonical_id": "game_nwsl_2026_20261025_bay_ang", "sport": "NWSL", "season": "2026", - "date": "2026-10-24", - "time": "6:45p", + "game_datetime_utc": "2026-10-25T01:45:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "San Francisco Bay FC", "home_team_abbrev": "ANG", @@ -118209,8 +111642,7 @@ "canonical_id": "game_mls_2026_20261025_clt_por", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T02:30:00Z", "home_team": "Portland Portland Timbers", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "POR", @@ -118227,8 +111659,7 @@ "canonical_id": "game_mls_2026_20261025_sea_sd", "sport": "MLS", "season": "2026", - "date": "2026-10-24", - "time": "7:30p", + "game_datetime_utc": "2026-10-25T02:30:00Z", "home_team": "San Diego San Diego FC", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "SD", @@ -118245,8 +111676,7 @@ "canonical_id": "game_nwsl_2026_20261025_njy_orl", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "3p", + "game_datetime_utc": "2026-10-25T19:00:00Z", "home_team": "Orlando Orlando Pride", "away_team": "New Jersey NJ/NY Gotham FC", "home_team_abbrev": "ORL", @@ -118263,8 +111693,7 @@ "canonical_id": "game_nwsl_2026_20261025_wsh_kcc", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "4p", + "game_datetime_utc": "2026-10-25T21:00:00Z", "home_team": "Kansas City Kansas City Current", "away_team": "Washington Washington Spirit", "home_team_abbrev": "KCC", @@ -118281,8 +111710,7 @@ "canonical_id": "game_nwsl_2026_20261025_bos_sdw", "sport": "NWSL", "season": "2026", - "date": "2026-10-25", - "time": "4p", + "game_datetime_utc": "2026-10-25T23:00:00Z", "home_team": "San Diego San Diego Wave", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "SDW", @@ -118299,8 +111727,7 @@ "canonical_id": "game_mls_2026_20261026_lag_lafc", "sport": "MLS", "season": "2026", - "date": "2026-10-25", - "time": "6p", + "game_datetime_utc": "2026-10-26T01:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "LAFC", @@ -118317,8 +111744,7 @@ "canonical_id": "game_mls_2026_20261028_dc_tor", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Toronto Toronto FC", "away_team": "Washington D.C. United", "home_team_abbrev": "TOR", @@ -118335,8 +111761,7 @@ "canonical_id": "game_mls_2026_20261028_atl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "11:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "New York New York City FC", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "NYC", @@ -118353,8 +111778,7 @@ "canonical_id": "game_mls_2026_20261028_ny_ne", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "New England New England Revolution", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NE", @@ -118371,8 +111795,7 @@ "canonical_id": "game_mls_2026_20261028_cin_mia", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Miami Inter Miami", "away_team": "Cincinnati FC Cincinnati", "home_team_abbrev": "MIA", @@ -118389,8 +111812,7 @@ "canonical_id": "game_mls_2026_20261028_mtl_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-28T23:30:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "CLT", @@ -118407,8 +111829,7 @@ "canonical_id": "game_mls_2026_20261029_por_stl", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "STL", @@ -118425,8 +111846,7 @@ "canonical_id": "game_mls_2026_20261029_skc_min", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Minnesota Minnesota United", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "MIN", @@ -118443,8 +111863,7 @@ "canonical_id": "game_mls_2026_20261029_clb_dal", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Dallas FC Dallas", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "DAL", @@ -118461,8 +111880,7 @@ "canonical_id": "game_mls_2026_20261029_slc_aus", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Austin Austin FC", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "AUS", @@ -118479,8 +111897,7 @@ "canonical_id": "game_mls_2026_20261029_orl_chi", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Orlando Orlando City", "home_team_abbrev": "CHI", @@ -118497,8 +111914,7 @@ "canonical_id": "game_mls_2026_20261029_phi_nsh", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T00:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "NSH", @@ -118515,8 +111931,7 @@ "canonical_id": "game_mls_2026_20261029_hou_sea", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "SEA", @@ -118533,8 +111948,7 @@ "canonical_id": "game_mls_2026_20261029_sd_van", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "San Diego San Diego FC", "home_team_abbrev": "VAN", @@ -118551,8 +111965,7 @@ "canonical_id": "game_mls_2026_20261029_col_sj", "sport": "MLS", "season": "2026", - "date": "2026-10-28", - "time": "7:30p", + "game_datetime_utc": "2026-10-29T02:30:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "SJ", @@ -118569,8 +111982,7 @@ "canonical_id": "game_mls_2026_20261031_orl_clt", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "1p", + "game_datetime_utc": "2026-10-31T17:00:00Z", "home_team": "Charlotte Charlotte FC", "away_team": "Orlando Orlando City", "home_team_abbrev": "CLT", @@ -118587,8 +111999,7 @@ "canonical_id": "game_mls_2026_20261031_dc_clb", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T18:00:00Z", "home_team": "Columbus Columbus Crew", "away_team": "Washington D.C. United", "home_team_abbrev": "CLB", @@ -118605,8 +112016,7 @@ "canonical_id": "game_mls_2026_20261031_phi_cin", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T18:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Philadelphia Philadelphia Union", "home_team_abbrev": "CIN", @@ -118623,8 +112033,7 @@ "canonical_id": "game_mls_2026_20261031_dal_skc", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T19:00:00Z", "home_team": "Kansas City Sporting Kansas City", "away_team": "Dallas FC Dallas", "home_team_abbrev": "SKC", @@ -118641,8 +112050,7 @@ "canonical_id": "game_mls_2026_20261031_aus_lag", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "2p", + "game_datetime_utc": "2026-10-31T21:00:00Z", "home_team": "Los Angeles LA Galaxy", "away_team": "Austin Austin FC", "home_team_abbrev": "LAG", @@ -118659,8 +112067,7 @@ "canonical_id": "game_mls_2026_20261101_chi_col", "sport": "MLS", "season": "2026", - "date": "2026-10-31", - "time": "7:30p", + "game_datetime_utc": "2026-11-01T01:30:00Z", "home_team": "Colorado Colorado Rapids", "away_team": "Chicago Chicago Fire", "home_team_abbrev": "COL", @@ -118677,8 +112084,7 @@ "canonical_id": "game_mls_2026_20261101_sd_stl", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "St. Louis St. Louis City SC", "away_team": "San Diego San Diego FC", "home_team_abbrev": "STL", @@ -118695,8 +112101,7 @@ "canonical_id": "game_mls_2026_20261101_slc_sj", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "12p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "San Jose San Jose Earthquakes", "away_team": "Salt Lake Real Salt Lake", "home_team_abbrev": "SJ", @@ -118713,8 +112118,7 @@ "canonical_id": "game_mls_2026_20261101_min_lafc", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "12p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "Los Angeles Los Angeles FC", "away_team": "Minnesota Minnesota United", "home_team_abbrev": "LAFC", @@ -118731,8 +112135,7 @@ "canonical_id": "game_mls_2026_20261101_mtl_nyc", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "8p", + "game_datetime_utc": "2026-11-01T20:00:00Z", "home_team": "New York New York City FC", "away_team": "Montreal CF Montreal", "home_team_abbrev": "NYC", @@ -118749,8 +112152,7 @@ "canonical_id": "game_mls_2026_20261101_ny_nsh", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "3:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Nashville Nashville SC", "away_team": "New York New York Red Bulls", "home_team_abbrev": "NSH", @@ -118767,8 +112169,7 @@ "canonical_id": "game_mls_2026_20261101_tor_atl", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "4:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Atlanta Atlanta United", "away_team": "Toronto Toronto FC", "home_team_abbrev": "ATL", @@ -118785,8 +112186,7 @@ "canonical_id": "game_mls_2026_20261101_sea_van", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "1:30p", + "game_datetime_utc": "2026-11-01T21:30:00Z", "home_team": "Vancouver Vancouver Whitecaps", "away_team": "Seattle Seattle Sounders", "home_team_abbrev": "VAN", @@ -118803,8 +112203,7 @@ "canonical_id": "game_nwsl_2026_20261101_uta_njy", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "New Jersey NJ/NY Gotham FC", "away_team": "Utah Utah Royals", "home_team_abbrev": "NJY", @@ -118821,8 +112220,7 @@ "canonical_id": "game_nwsl_2026_20261101_por_hou", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "4p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Houston Houston Dash", "away_team": "Portland Portland Thorns", "home_team_abbrev": "HOU", @@ -118839,8 +112237,7 @@ "canonical_id": "game_nwsl_2026_20261101_chi_wsh", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Washington Washington Spirit", "away_team": "Chicago Chicago Red Stars", "home_team_abbrev": "WSH", @@ -118857,8 +112254,7 @@ "canonical_id": "game_nwsl_2026_20261101_bos_ang", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Los Angeles Angel City FC", "away_team": "Boston Boston Legacy FC", "home_team_abbrev": "ANG", @@ -118875,8 +112271,7 @@ "canonical_id": "game_nwsl_2026_20261101_sdw_bay", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "San Francisco Bay FC", "away_team": "San Diego San Diego Wave", "home_team_abbrev": "BAY", @@ -118893,8 +112288,7 @@ "canonical_id": "game_nwsl_2026_20261101_orl_sea", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "2p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Seattle Seattle Reign", "away_team": "Orlando Orlando Pride", "home_team_abbrev": "SEA", @@ -118911,8 +112305,7 @@ "canonical_id": "game_nwsl_2026_20261101_den_ncc", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "North Carolina North Carolina Courage", "away_team": "Denver Denver Summit FC", "home_team_abbrev": "NCC", @@ -118929,8 +112322,7 @@ "canonical_id": "game_nwsl_2026_20261101_kcc_rgn", "sport": "NWSL", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-01T22:00:00Z", "home_team": "Louisville Racing Louisville", "away_team": "Kansas City Kansas City Current", "home_team_abbrev": "RGN", @@ -118947,8 +112339,7 @@ "canonical_id": "game_mls_2026_20261101_mia_ne", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "6p", + "game_datetime_utc": "2026-11-01T23:00:00Z", "home_team": "New England New England Revolution", "away_team": "Miami Inter Miami", "home_team_abbrev": "NE", @@ -118965,8 +112356,7 @@ "canonical_id": "game_mls_2026_20261102_hou_por", "sport": "MLS", "season": "2026", - "date": "2026-11-01", - "time": "5p", + "game_datetime_utc": "2026-11-02T01:00:00Z", "home_team": "Portland Portland Timbers", "away_team": "Houston Houston Dynamo", "home_team_abbrev": "POR", @@ -118983,8 +112373,7 @@ "canonical_id": "game_mls_2026_20261107_atl_ny", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "New York New York Red Bulls", "away_team": "Atlanta Atlanta United", "home_team_abbrev": "RB", @@ -119001,8 +112390,7 @@ "canonical_id": "game_mls_2026_20261107_clt_mia", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Miami Inter Miami", "away_team": "Charlotte Charlotte FC", "home_team_abbrev": "MIA", @@ -119019,8 +112407,7 @@ "canonical_id": "game_mls_2026_20261107_nsh_cin", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Cincinnati FC Cincinnati", "away_team": "Nashville Nashville SC", "home_team_abbrev": "CIN", @@ -119037,8 +112424,7 @@ "canonical_id": "game_mls_2026_20261107_nyc_dc", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Washington D.C. United", "away_team": "New York New York City FC", "home_team_abbrev": "DC", @@ -119055,8 +112441,7 @@ "canonical_id": "game_mls_2026_20261107_clb_chi", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "3p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Chicago Chicago Fire", "away_team": "Columbus Columbus Crew", "home_team_abbrev": "CHI", @@ -119073,8 +112458,7 @@ "canonical_id": "game_mls_2026_20261107_van_mtl", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Montreal CF Montreal", "away_team": "Vancouver Vancouver Whitecaps", "home_team_abbrev": "MTL", @@ -119091,8 +112475,7 @@ "canonical_id": "game_mls_2026_20261107_ne_orl", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Orlando Orlando City", "away_team": "New England New England Revolution", "home_team_abbrev": "ORL", @@ -119109,8 +112492,7 @@ "canonical_id": "game_mls_2026_20261107_tor_phi", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-07T21:00:00Z", "home_team": "Philadelphia Philadelphia Union", "away_team": "Toronto Toronto FC", "home_team_abbrev": "PHI", @@ -119127,8 +112509,7 @@ "canonical_id": "game_mls_2026_20261108_lafc_sea", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Seattle Seattle Sounders", "away_team": "Los Angeles Los Angeles FC", "home_team_abbrev": "SEA", @@ -119145,8 +112526,7 @@ "canonical_id": "game_mls_2026_20261108_lag_slc", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "5p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Salt Lake Real Salt Lake", "away_team": "Los Angeles LA Galaxy", "home_team_abbrev": "SLC", @@ -119163,8 +112543,7 @@ "canonical_id": "game_mls_2026_20261108_sj_min", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Minnesota Minnesota United", "away_team": "San Jose San Jose Earthquakes", "home_team_abbrev": "MIN", @@ -119181,8 +112560,7 @@ "canonical_id": "game_mls_2026_20261108_stl_hou", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Houston Houston Dynamo", "away_team": "St. Louis St. Louis City SC", "home_team_abbrev": "HOU", @@ -119199,8 +112577,7 @@ "canonical_id": "game_mls_2026_20261108_col_dal", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Dallas FC Dallas", "away_team": "Colorado Colorado Rapids", "home_team_abbrev": "DAL", @@ -119217,8 +112594,7 @@ "canonical_id": "game_mls_2026_20261108_por_aus", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "6p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "Austin Austin FC", "away_team": "Portland Portland Timbers", "home_team_abbrev": "AUS", @@ -119235,8 +112611,7 @@ "canonical_id": "game_mls_2026_20261108_skc_sd", "sport": "MLS", "season": "2026", - "date": "2026-11-07", - "time": "4p", + "game_datetime_utc": "2026-11-08T00:00:00Z", "home_team": "San Diego San Diego FC", "away_team": "Kansas City Sporting Kansas City", "home_team_abbrev": "SD",