BoxScore - basketballrelativity/py_ball GitHub Wiki
This section details all endpoints accessible via the BoxScore
class in boxscore.py. Endpoints available include:
Endpoint | Description | Tables |
---|---|---|
boxscoreadvancedv2 | Game boxscore containing several advanced statistics | PlayerStats, TeamStats |
boxscorefourfactorsv2 | Game boxscore containing statistics related to the Four Factors, for team and opponent | sqlPlayersFourFactors, sqlTeamsFourFactors |
boxscoremiscv2 | Game boxscore containing points scored by type of change (paint, fastbreak, etc.) for team and opponent | sqlPlayersMisc, sqlTeamsMisc |
boxscoreplayertrackv2 | Game boxscore containing aggregated player tracking statistics | PlayerStats, TeamStats |
boxscorescoringv2 | Game boxscore containing percentage scoring statistics broken down by shot type | sqlPlayersScoring, sqlTeamsScoring |
boxscoresummaryv2 | Game boxscore containing a summary of a particular matchup (including game metadata and results) | GameSummary, OtherStats, Officials, InactivePlayers, GameInfo, LineScore, LastMeeting, SeasonSeries, AvailableVideo |
boxscoretraditionalv2 | Game boxscore containing basic statistics | PlayerStats, TeamStats, TeamStarterBenchStats |
boxscoreusagev2 | Game boxscore containing usage statistics and percentage | sqlPlayersUsage, sqlTeamsUsage |
Parameters
The BoxScore
endpoints all share the same parameters:
API Param | Class Param | Definition | Valid Values | Required |
---|---|---|---|---|
GameID | game_id | 10-digit string that represents a unique game. The format is two leading zeroes, followed by a season indicator number ('1' for preseason, '2' for regular season, '4' for the post-season), then the trailing digits of the season in which the game took place (e.g. '17' for the 2017-18 season). The following 5 digits increment from '00001' in order as the season progresses. For example, '0021600001' is the game_id of the first game of the 2016-17 NBA regular season. | All | |
EndPeriod | end_period | String of an integer that corresponds to the period for which the boxscore ends (Overtime increments logically, e.g. '5' is the first overtime period). | String of positive integer | All |
EndRange | end_range | String of an integer that corresponds to the tenths of seconds that have elapsed in the game for which the boxscore begins. Valid when range_type ='2'. | String of 0 or positive integer | All |
StartPeriod | start_period | String of an integer that corresponds to the period for which the boxscore begins. | String of positive integer | All |
StartRange | start_range | String of an integer that corresponds to the tenths of seconds that have elapsed in the game for which the boxscore begins. Valid when range_type ='2'. | String of 0 or positive integer | All |
RangeType | range_type | range_type controls the type of boxscore that is returned. If using the start_period and end_period parameters, range_type should have a value of '0' (DNP players included) or '1' (DNP players excluded). With a range_type value of '2', the start_range and end_range values can be used to return a boxscore from a customized subset of the given game. | '0', '1', '2' | All |
Features
The following table contains features returned in each table from all endpoints:
Column | Definition | Endpoint/Table |
---|---|---|
AST | Assists | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
AST_PCT | Ratio of player assists to teammate field goals made | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
AST_RATIO | Assists per 100 possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
AST_TOV | Ratio of assists to turnovers | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
ATTENDANCE | Official game attendance | boxscoresummaryv2/GameInfo |
BLK | Blocks | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
BLKA | Blocks against | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
CFGA | Contested field goal attempts | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
CFGM | Contested field goals made | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
CFG_PCT | Contested field goal percentage | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
COMMENT | Free text field for notes | boxscoreadvanced2/PlayerStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoreplayertrackv2/PlayerStats, boxscorescoringv2/sqlPlayersScoring, boxscoretraditionalv2/PlayerStats, boxscoreusagev2/sqlPlayersUsage |
DEF_RATING | Points allowed per 100 possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
DFGA | Defended field goal attempts at rim | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
DFGM | Defended field goals made at rim | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
DFG_PCT | Defended field goal percentage at rim | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
DIST | Distance traveled in miles | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
DRBC | Defensive rebound chances | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
DREB | Defensive rebounds | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
DREB_PCT | Ratio of defensive rebounds to available defensive rebounds | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
EFG_PCT | Weighted field goal percentage with 3-point field goals weighted 1.5 times 2-point field goals | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
E_DEF_RATING | boxscoreadvancedv2/PlayerStats, boxscoreadvancedv2/TeamStats | |
E_NET_RATING | boxscoreadvancedv2/PlayerStats, boxscoreadvancedv2/TeamStats | |
E_OFF_RATING | boxscoreadvancedv2/PlayerStats, boxscoreadvancedv2/TeamStats | |
E_PACE | boxscoreadvancedv2/PlayerStats, boxscoreadvancedv2/TeamStats | |
E_USG_PCT | boxscoreadvancedv2/PlayerStats, boxscoreadvancedv2/TeamStats | |
FIRST_NAME | First name | boxscoresummaryv2/Officials, boxscoresummaryv2/InactivePlayers |
FG_PCT | Field goal percentage | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
FG3A | Attempted three-point field goals | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FG3M | Made three-point field goals | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FG3_PCT | Three-point field goal percentage | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FGA | Attempted field goals | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FGM | Made field goals | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FG_PCT | Field goal percentage | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FTA | Attempted free throws | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FTM | Made free throws | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FT_PCT | Free throw percentage | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
FTA_RATE | Ratio of free throw attempts to field goal attempts | boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
FTAST | Free throw assists | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
GAME_DATE | Game date in [day of week], [month] [day], [year] format | boxscoresummaryv2/GameInfo |
GAME_DATE_EST | Game date in YYYY-MM-DD format | boxscoresummaryv2/GameSummary, boxscoresummaryv2/LineScore, boxscoresummaryv2/SeasonSeries |
GAME_ID | Unique game identifier | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring, boxscoresummaryv2/GameSummary, boxscoresummaryv2/LineScore, boxscoresummaryv2/LastMeeting, boxscoresummaryv2/SeasonSeries, boxscoresummaryv2/AvailableVideo, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
GAME_SEQUENCE | boxscoresummaryv2/GameSummary, boxscoresummaryv2/LineScore | |
GAME_STATUS_ID | Unique game status identifier | boxscoresummaryv2/GameSummary |
GAME_STATUS_TEXT | Unique game status text | boxscoresummaryv2/GameSummary |
GAME_TIME | Game time | boxscoresummaryv2/GameInfo |
GAMECODE | Unique game identifier | boxscoresummaryv2/GameSummary |
HISTORICAL_STATUS | boxscoresummaryv2/AvailableVideo | |
HOME_TEAM_ID | Unique identifier of the home team | boxscoresummaryv2/GameSummary, boxscoresummaryv2/SeasonSeries |
HOME_TEAM_LOSSES | Number of home team losses | boxscoresummaryv2/SeasonSeries |
HOME_TEAM_WINS | Number of home team wins | boxscoresummaryv2/SeasonSeries |
HUSTLE_STATUS | boxscoresummaryv2/AvailableVideo | |
JERSEY_NUM | Jersey number | boxscoresummaryv2/Officials, boxscoresummaryv2/InactivePlayers |
LARGEST_LEAD | Largest lead in a game | boxscoresummaryv2/OtherStats |
LAST_GAME_DATE_EST | Last game date in YYYY-MM-DD format | boxscoresummaryv2/LastMeeting |
LAST_GAME_HOME_TEAM_ABBREVIATION | Abbreviated previous home team identifier | boxscoresummaryv2/LastMeeting |
LAST_GAME_HOME_TEAM_CITY | Previous home team city | boxscoresummaryv2/LastMeeting |
LAST_GAME_HOME_TEAM_ID | Previous unique home team identifier | boxscoresummaryv2/LastMeeting |
LAST_GAME_HOME_TEAM_NAME | Previous home team name | boxscoresummaryv2/LastMeeting |
LAST_GAME_HOME_TEAM_POINTS | Previous home team points | boxscoresummaryv2/LastMeeting |
LAST_GAME_ID | Previous unique game identifier | boxscoresummaryv2/LastMeeting |
LAST_GAME_VISITOR_TEAM_CITY | Previous visiting team city | boxscoresummaryv2/LastMeeting |
LAST_GAME_VISITOR_TEAM_CITY1 | Previous visiting team city | boxscoresummaryv2/LastMeeting |
LAST_GAME_VISITOR_TEAM_ID | Previous unique visiting team identifier | boxscoresummaryv2/LastMeeting |
LAST_GAME_VISITOR_TEAM_NAME | Previous visiting team name | boxscoresummaryv2/LastMeeting |
LAST_GAME_VISITOR_TEAM_POINTS | Previous visiting team points | boxscoresummaryv2/LastMeeting |
LAST_NAME | Last name | boxscoresummaryv2/Officials, boxscoresummaryv2/InactivePlayers |
LEAD_CHANGES | Number of lead changes in a game | boxscoresummaryv2/OtherStats |
LEAGUE_ID | Unique league identifier | boxscoresummaryv2/OtherStats |
LIVE_PC_TIME | Current game time | boxscoresummaryv2/GameSummary |
LIVE_PERIOD | Current game period | boxscoresummaryv2/GameSummary |
LIVE_PERIOD_TIME_BCAST | Current game period, time, and broadcast | boxscoresummaryv2/GameSummary |
MIN | Minutes played | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
NATL_TV_BROADCASTER_ABBREVIATION | TV broadcaster abbreviation | boxscoresummaryv2/GameSummary |
NET_RATING | Point differential per 100 possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
OFFICIAL_ID | Unique official identifier | boxscoresummaryv2/Officials |
OFF_RATING | Points scored per 100 possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
OPP_EFG_PCT | Opponent weighted field goal percentage with 3-point field goals weighted 1.5 times 2-point field goals | boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
OPP_FTA_RATE | Opponent ratio of free throw attempts to field goal attempts | boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
OPP_OREB_PCT | Opponent ratio of offensive rebounds to available offensive rebounds | boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
OPP_PTS_2ND_CHANCE | Opponent second chance points | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
OPP_PTS_FB | Opponent fast break points | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
OPP_PTS_OFF_TOV | Opponent points off turnovers | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
OPP_PTS_PT | Opponent points in the paint | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
OPP_TOV_PCT | Opponent ratio of turnovers to possessions | boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
ORBC | Offensive rebound chances | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
OREB | Offensive rebounds | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
OREB_PCT | Ratio of offensive rebounds to available offensive rebounds | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
PACE | Possessions per 48 minutes | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
PASS | Passes made or received | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
PCT_AST | % of team's assists while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_AST_2PM | % of two-point field goals made that are assisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_AST_3PM | % of three-point field goals made that are assisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_AST_FGM | % of field goals made that are assisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_BLK | % of team's blocks while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_BLKA | % of team's own blocked attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_DREB | % of team's defensive rebounds while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FG3A | % of team's three-point field goal attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FG3M | % of team's made three-point field goal attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FGA | % of team's field goal attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FGA_2PT | % of field goals attempted that are two-point field goal attempts | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_FGA_3PT | % of field goals attempted that are three-point field goal attempts | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_FGM | % of team's made field goal attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FTA | % of team's free throw attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_FTM | % of team's made free throw attempts while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_OREB | % of team's offensive rebounds while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_PF | % of team's personal fouls while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_PFD | % of team's personal fouls drawn while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_PTS | % of team's points while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_PTS_2PT | % of points that are from two-point field goals | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_2PT_MR | % of points that are from mid-range field goals | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_3PT | % of points that are from three-point field goals | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_FB | % of points that are from fast break opportunities | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_FT | % of points that are from free throws | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_OFF_TOV | % of points that are off turnovers | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_PTS_PAINT | % of points that are from the paint | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_REB | % of team's rebounds while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_STL | % of team's steals while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_TOV | % of team's turnovers while on court | boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
PCT_UAST_2PM | % of two-point field goals made that are unassisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_UAST_3PM | % of three-point field goals made that are unassisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PCT_UAST_FGM | % of field goals made that are unassisted | boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring |
PF | Personal fouls | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
PFD | Personal fouls drawn | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
PIE | Player Impact Estimate | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
PLAYER_ID | Unique player identifier | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoreplayertrackv2/PlayerStats, boxscorescoringv2/sqlPlayersScoring, boxscoresummaryv2/InactivePlayers, boxscoretraditionalv2/PlayerStats, boxscoreusagev2/sqlPlayersUsage |
PLAYER_NAME | Player first and last name | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoreplayertrackv2/PlayerStats, boxscorescoringv2/sqlPlayersScoring, boxscoretraditionalv2/PlayerStats, boxscoreusagev2/sqlPlayersUsage |
PLUS_MINUS | Point differential while on court | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats |
PT_AVAILABLE | boxscoresummaryv2/AvailableVideo | |
PT_XYZ_AVAILABLE | boxscoresummaryv2/AvailableVideo | |
PTS | Points scored | boxscoresummaryv2/LineScore, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
PTS_2ND_CHANCE | Second chance points | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoresummaryv2/OtherStats |
PTS_FB | Fast break points | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoresummaryv2/OtherStats |
PTS_OFF_TO | Points off turnovers | boxscoresummaryv2/OtherStats |
PTS_OFF_TOV | Points off turnovers | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc |
PTS_OT1 | Points scored in the first overtime period | boxscoresummaryv2/LineScore |
PTS_OT10 | Points scored in the tenth overtime period | boxscoresummaryv2/LineScore |
PTS_OT2 | Points scored in the second overtime period | boxscoresummaryv2/LineScore |
PTS_OT3 | Points scored in the third overtime period | boxscoresummaryv2/LineScore |
PTS_OT4 | Points scored in the fourth overtime period | boxscoresummaryv2/LineScore |
PTS_OT5 | Points scored in the fifth overtime period | boxscoresummaryv2/LineScore |
PTS_OT6 | Points scored in the sixth overtime period | boxscoresummaryv2/LineScore |
PTS_OT7 | Points scored in the seventh overtime period | boxscoresummaryv2/LineScore |
PTS_OT8 | Points scored in the eighth overtime period | boxscoresummaryv2/LineScore |
PTS_OT9 | Points scored in the ninth overtime period | boxscoresummaryv2/LineScore |
PTS_PAINT | Points in the paint | boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoresummaryv2/OtherStats |
PTS_QTR1 | Points scored in the first quarter | boxscoresummaryv2/LineScore |
PTS_QTR2 | Points scored in the second quarter | boxscoresummaryv2/LineScore |
PTS_QTR3 | Points scored in the third quarter | boxscoresummaryv2/LineScore |
PTS_QTR4 | Points scored in the fourth quarter | boxscoresummaryv2/LineScore |
RBC | Rebound chances | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
REB | Rebounds | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
REB_PCT | Ratio of rebounds to available rebounds | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
SAST | Screen assists | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
SEASON | Current season | boxscoresummaryv2/GameSummary |
SERIES_LEADER | Team city of series leader | boxscoresummaryv2/SeasonSeries |
SPD | Speed in MPH of all movement | boxscoreplayertrackv2/PlayerStats |
START_POSITION | Starting position of player | boxscoreadvanced2/PlayerStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoreplayertrackv2/PlayerStats, boxscorescoringv2/sqlPlayersScoring, boxscoretraditionalv2/PlayerStats, boxscoreusagev2/sqlPlayersUsage |
STARTERS_BENCH | Text designating a player as starter or bench | boxscoretraditionalv2/TeamStarterBenchStats |
STL | Steals | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
TCHS | Touches | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
TEAM_ABBREVIATION | Abbreviated team identifier | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring, boxscoresummaryv2/OtherStats, boxscoresummaryv2/InactivePlayers, boxscoresummaryv2/LineScore, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
TEAM_CITY | Team city | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring, boxscoresummaryv2/OtherStats, boxscoresummaryv2/InactivePlayers, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
TEAM_CITY_NAME | Team city | boxscoresummaryv2/LineScore |
TEAM_ID | Unique team identifier | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlPlayersMisc, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlPlayersScoring, boxscorescoringv2/sqlTeamsScoring, boxscoresummaryv2/OtherStats, boxscoresummaryv2/InactivePlayers, boxscoresummaryv2/LineScore, boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
TEAM_NAME | Team name | boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlTeamsFourFactors, boxscoremiscv2.sqlTeamsMisc, boxscoreplayertrackv2/TeamStats, boxscorescoringv2/sqlTeamsScoring, boxscoresummaryv2/InactivePlayers, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats, boxscoreusagev2/sqlTeamsUsage |
TEAM_NICKNAME | Team name | boxscoresummaryv2/LineScore |
TEAM_REBOUNDS | Team rebounds | boxscoresummaryv2/OtherStats |
TEAM_TURNOVERS | Turnovers attributed to the team | boxscoresummaryv2/OtherStats |
TEAM_WINS_LOSSES | Team W-L record | boxscoresummaryv2/LineScore |
TIMES_TIED | Number of times the game is tied | boxscoresummaryv2/OtherStats |
TO | Turnovers | boxscoretraditionalv2/PlayerStats, boxscoretraditionalv2/TeamStats, boxscoretraditionalv2/TeamStarterBenchStats |
TOTAL_TURNOVERS | Total turnovers of the team | boxscoresummaryv2/OtherStats |
TM_TOV_PCT | Ratio of turnovers to possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscorefourfactorsv2/sqlPlayersFourFactors, boxscorefourfactorsv2/sqlTeamsFourFactors |
TS_PCT | Shooting percentage accounting for free throws and three-point field goals | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats |
UFGA | Uncontested field goal attempts | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
UFGM | Uncontested field goals made | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
UFG_PCT | Uncontested field goal percentage | boxscoreplayertrackv2/PlayerStats, boxscoreplayertrackv2/TeamStats |
USG_PCT | Ratio of plays used to possessions | boxscoreadvanced2/PlayerStats, boxscoreadvanced2/TeamStats, boxscoreusagev2/sqlPlayersUsage, boxscoreusagev2/sqlTeamsUsage |
VIDEO_AVAILABLE_FLAG | Boolean indicating video availability | boxscoresummaryv2/AvailableVideo |
VISITOR_TEAM_ID | Unique identifier of the visiting team | boxscoresummaryv2/GameSummary, boxscoresummaryv2/SeasonSeries |
WH_STATUS | boxscoresummaryv2/GameSummary, boxscoresummaryv2/AvailableVideo |