The Rundown · Schema

TeamGameStats

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
team_id integer
team object
stat_id integer
stat object
event_id string
value string
View JSON Schema on GitHub

JSON Schema

therundown-teamgamestats-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/TeamGameStats",
  "title": "TeamGameStats",
  "type": "object",
  "properties": {
    "team_id": {
      "type": "integer",
      "nullable": true
    },
    "team": {
      "$ref": "#/components/schemas/TeamNormalized"
    },
    "stat_id": {
      "type": "integer",
      "nullable": true
    },
    "stat": {
      "$ref": "#/components/schemas/StatDefinition"
    },
    "event_id": {
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  }
}