The Rundown · Schema

PlayerStats

SportsBettingOddsNFLNBAMLBNHLSoccerReal-TimeSports DataSportsbook

Properties

Name Type Description
player_id integer
player object
stat_id integer
stat object
season_year integer
season_type integer
season_type_name string
value number
display_value string
per_game_value number
per_game_display_value string
rank integer
rank_display_value string
updated_at string
View JSON Schema on GitHub

JSON Schema

therundown-playerstats-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://therundown.io/schemas/PlayerStats",
  "title": "PlayerStats",
  "type": "object",
  "properties": {
    "player_id": {
      "type": "integer",
      "nullable": true
    },
    "player": {
      "$ref": "#/components/schemas/PlayerNormalized"
    },
    "stat_id": {
      "type": "integer",
      "nullable": true
    },
    "stat": {
      "$ref": "#/components/schemas/StatDefinition"
    },
    "season_year": {
      "type": "integer"
    },
    "season_type": {
      "type": "integer"
    },
    "season_type_name": {
      "type": "string"
    },
    "value": {
      "type": "number"
    },
    "display_value": {
      "type": "string"
    },
    "per_game_value": {
      "type": "number"
    },
    "per_game_display_value": {
      "type": "string"
    },
    "rank": {
      "type": "integer"
    },
    "rank_display_value": {
      "type": "string"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}