The Rundown · Schema

PlayerGameStats

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
event_id string
player_id integer
player object
stat_id integer
stat object
value string
updated_at string
View JSON Schema on GitHub

JSON Schema

therundown-playergamestats-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/PlayerGameStats",
  "title": "PlayerGameStats",
  "type": "object",
  "properties": {
    "event_id": {
      "type": "string"
    },
    "player_id": {
      "type": "integer",
      "nullable": true
    },
    "player": {
      "$ref": "#/components/schemas/PlayerNormalized"
    },
    "stat_id": {
      "type": "integer",
      "nullable": true
    },
    "stat": {
      "$ref": "#/components/schemas/StatDefinition"
    },
    "value": {
      "type": "string"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}