Sportradar · Schema

ScheduledGame

Basic information about a scheduled game.

DataEsportsFantasy SportsHTTP ChunkedMediaPushReal-TimeSportsSports DataStatisticsStreaming

Properties

Name Type Description
id string Unique Sportradar game identifier.
status string Game status.
scheduled string Scheduled tip-off or kickoff time.
home object
away object
venue object
View JSON Schema on GitHub

JSON Schema

sportradar-scheduledgame-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduledGame",
  "title": "ScheduledGame",
  "type": "object",
  "description": "Basic information about a scheduled game.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique Sportradar game identifier."
    },
    "status": {
      "type": "string",
      "description": "Game status."
    },
    "scheduled": {
      "type": "string",
      "format": "date-time",
      "description": "Scheduled tip-off or kickoff time."
    },
    "home": {
      "$ref": "#/components/schemas/TeamRef"
    },
    "away": {
      "$ref": "#/components/schemas/TeamRef"
    },
    "venue": {
      "$ref": "#/components/schemas/Venue"
    }
  }
}