The Rundown · Schema

TeamGameStatResponse

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
team object
meta object
stats array
View JSON Schema on GitHub

JSON Schema

therundown-teamgamestatresponse-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/TeamGameStatResponse",
  "title": "TeamGameStatResponse",
  "type": "object",
  "properties": {
    "team": {
      "$ref": "#/components/schemas/TeamNormalized"
    },
    "meta": {
      "$ref": "#/components/schemas/StatsMeta"
    },
    "stats": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TeamGameStats"
      }
    }
  }
}